/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #F5A48C; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral); }
* { scrollbar-color: #F5A48C transparent; scrollbar-width: thin; }

:root {
  --coral:        #E0573A;
  --coral-dark:   #C4432A;
  --coral-mid:    #F07855;
  --coral-light:  #F5A48C;
  --coral-pale:   #FEF0EC;

  --warm-white:   #FFFBF9;
  --cream:        #FDF5F1;
  --cream-dark:   #F7EDE7;
  --charcoal:     #2D1E18;
  --muted:        #7A6860;
  --border:       #EDD8D0;
  --white:        #ffffff;
  --error:        #b92b2b;
  --error-bg:     #fdf0ef;

  --serif:  'Libre Baskerville', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(224,87,58,0.07);
  --shadow:    0 8px 32px rgba(224,87,58,0.10);
  --shadow-lg: 0 20px 60px rgba(224,87,58,0.14);
  --max-w:     1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,245,241,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.navbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}

.navbar__contact-number {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  white-space: nowrap;
}

.navbar__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  text-decoration: none;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
}

.navbar__contact-icon svg {
  width: 18px;
  height: 18px;
}

.navbar__contact-icon:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(224,87,58,0.28);
}

.navbar__contact-icon:focus-visible {
  outline: 3px solid rgba(224,87,58,0.22);
  outline-offset: 2px;
}

.navbar__contact-icon--whatsapp {
  background: #25d366;
}

.navbar__contact-icon--whatsapp:hover {
  background: #1faa52;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.1s, box-shadow 0.22s;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-top: 10px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-mid) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
  box-shadow: 0 6px 22px rgba(224,87,58,0.38);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline:hover {
  background: var(--coral);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--small { padding: 5px 14px; font-size: 0.8rem; font-weight: 500; border-width: 1.5px; margin-top: 0; }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(140deg, #2D1208 0%, #4A1F0F 40%, #5C2A14 100%);
  overflow: hidden;
  padding: 100px 32px 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,85,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero__photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(240,120,85,0.2);
}

.hero__photo {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

.hero__content { padding-bottom: 80px; }

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.75;
}

.hero__price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
}

.hero__wave { margin-top: 72px; line-height: 0; }
.hero__wave svg { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 88px 32px;
}

.about__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.about__leaf--l,
.about__leaf--r {
  flex-shrink: 0;
  width: 52px;
  opacity: 0.85;
}
.about__leaf--r { transform: scaleX(-1); }
.about__leaf svg { width: 100%; height: auto; }

.about__body { flex: 1; }

.about__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 auto 14px;
  max-width: 620px;
}

.about__intro {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 560px;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.about__item {
  min-height: 132px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(79, 60, 52, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 244, 0.92)),
    var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 30px rgba(79, 60, 52, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about__item--wide {
  grid-column: 1 / -1;
}

.about__item:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 14px 34px rgba(79, 60, 52, 0.08);
  border-color: rgba(224, 87, 58, 0.18);
}

.about__item-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.about__item-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(224, 87, 58, 0.35);
}

.about__item-copy {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 30ch;
}

.about__item-copy strong {
  font-weight: 600;
  color: #3f2f29;
}

/* ═══════════════════════════════════════
   WHAT TO EXPECT
═══════════════════════════════════════ */
.expect {
  background: var(--cream-dark);
  padding: 88px 32px;
}

.expect__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.expect__title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 56px;
}

.expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.expect__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}

.expect__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.expect__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  opacity: 0.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.expect__card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.expect__card-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   REGISTER
═══════════════════════════════════════ */
.register {
  background: var(--coral-pale);
  padding: 88px 32px;
}

.register__inner {
  max-width: 520px;
  margin: 0 auto;
}

.register__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow);
}

.register__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.register__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.register__note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

.register__note--left {
  text-align: left;
  margin-top: 10px;
  font-style: normal;
}

.slot-picker {
  display: grid;
  gap: 10px;
}

.slot-picker__group {
  display: grid;
  gap: 10px;
}

.slot-picker__option {
  width: 100%;
  text-align: left;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.slot-picker__option:hover {
  border-color: var(--coral);
  transform: translateY(-1px);
}

.slot-picker__option--selected {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,87,58,0.15);
  background: #fff7f4;
}

.slot-picker__option--full,
.slot-picker__option:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.slot-picker__date {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.slot-picker__meta,
.slot-picker__empty {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}

.paypal-divider {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

#paypal-payment-wrap {
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   FIELDS
═══════════════════════════════════════ */
.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--charcoal);
}

.req { color: var(--coral); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
}

.country-select-wrap {
  position: relative;
}

.country-select-wrap select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.country-select-display {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 48px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  pointer-events: none;
}

.country-select-wrap::after {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  pointer-events: none;
}

.country-select-wrap:focus-within .country-select-display {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,87,58,0.15);
}

.country-flag-indicator {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: 18px;
  text-align: center;
  user-select: none;
  flex: 0 0 auto;
}

.country-flag-indicator--img {
  font-size: 0;
  line-height: 0;
}

.country-flag-indicator img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-select-label {
  font-size: 0.97rem;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,87,58,0.15);
}

/* Phone with auto-prefix */
.phone-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.phone-wrap:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,87,58,0.15);
}

.phone-prefix {
  padding: 12px 12px 12px 16px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--coral);
  background: var(--coral-pale);
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
  user-select: none;
}

.phone-wrap input[type="tel"] {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
}

.phone-wrap input[type="tel"]:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none;
}

/* Checkbox */
.field--checkbox { margin-bottom: 28px; }

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--coral);
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Error */
.form-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #f5c6c2;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  padding: 56px 32px 0;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__logo img {
  height: 30px;
  width: auto;
  opacity: 0.75;
  mix-blend-mode: lighten;
  margin-bottom: 12px;
}

.site-footer__tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}

.site-footer__links ul { list-style: none; }
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.18s;
}
.site-footer__links a:hover { color: var(--coral-light); }

.site-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #F5A48C;
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--coral);
  color: #fff;
}

.site-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   THANK-YOU PAGE
═══════════════════════════════════════ */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream);
}

.thankyou__card {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 64px 48px;
  text-align: center;
  border: 1px solid var(--border);
}

.thankyou__icon { font-size: 3.5rem; margin-bottom: 20px; }

.thankyou__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.thankyou__inner {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 64px 48px;
  text-align: center;
  border: 1px solid var(--border);
}

.thankyou__details {
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: left;
}

.thankyou__details h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.thankyou__details p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 8px 0;
}

.thankyou__check {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Prevent any section from causing horizontal scroll */
body { overflow-x: hidden; }

@media (max-width: 900px) {
  .hero { padding: 64px 24px 0; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .hero__photo-wrap {
    max-width: 280px;
    width: 72%;
    margin: 0 auto;
  }
  .hero__photo { aspect-ratio: 3 / 4; }
  .hero__content { padding-bottom: 60px; }
  .hero__sub { margin: 0 auto 36px; max-width: 100%; }
  .hero__headline { font-size: 2.4rem; }
  .hero__content .btn { display: block; margin: 0 auto; max-width: 100%; white-space: normal; text-align: center; }

  .about__inner { gap: 20px; }
  .about__leaf--l, .about__leaf--r { width: 36px; }

  .expect__grid { grid-template-columns: 1fr; gap: 20px; }

  .site-footer__inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 0; }
  .hero__inner { gap: 32px; }
  .hero__photo-wrap { max-width: 220px; width: 65%; }
  .hero__headline { font-size: 2rem; }
  .hero__sub { font-size: 0.97rem; }
  .hero__content { padding-bottom: 48px; }

  .about { padding: 64px 20px; }
  .about__title { font-size: 1.25rem; }
  .about__intro { font-size: 0.95rem; }
  .about__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about__item {
    min-height: auto;
    padding: 20px 20px 22px;
    border-radius: 18px;
    transition: none;
  }
  .about__item:hover { transform: none; }
  .about__item--wide { grid-column: auto; }
  .about__item-copy { font-size: 0.97rem; max-width: none; }
  .about__leaf--l, .about__leaf--r { display: none; }

  .expect { padding: 64px 20px; }
  .expect__title { font-size: 1.8rem; margin-bottom: 36px; }
  .expect__card { padding: 28px 24px; }

  .register { padding: 64px 20px; }
  .register__card { padding: 36px 24px; }
  .register__title { font-size: 1.7rem; }

  .navbar__inner { padding: 12px 20px; }
  .navbar__logo img { height: 28px; }
  .navbar__actions {
    gap: 12px;
    justify-content: flex-end;
  }
  .navbar__contact {
    padding: 7px 8px 7px 11px;
    gap: 8px;
  }
  .navbar__contact-number { font-size: 0.82rem; }
  .navbar__contact-icon {
    width: 30px;
    height: 30px;
  }
  .navbar__contact-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .hero__headline { font-size: 1.75rem; }
  .hero__photo-wrap { max-width: 190px; width: 60%; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .navbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar__actions {
    width: 100%;
    justify-content: center;
  }
  .navbar__contact {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navbar__btn {
    padding: 9px 18px;
    font-size: 0.82rem;
  }
}
