/* ============================================================
   TOKENS & RESET
============================================================ */
:root {
  --beige:       #f5f1ea;
  --beige-dark:  #ece6da;
  --olive:       #6b705c;
  --olive-dark:  #4e5241;
  --olive-light: #8c9178;
  --brown:       #a07855;
  --brown-light: #c4a882;
  --dark:        #2c2c28;
  --mid:         #5a5a52;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --shadow-sm:   0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 12px 40px rgba(0,0,0,.13);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.18);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

html { scroll-behavior: smooth; }


body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--beige);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

img { display: block; width: 100%; }

section { overflow: hidden; }

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#mainNav.scrolled {
  background: rgba(245,241,234,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive-dark);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  width: 28px; height: 28px;
  background: var(--olive);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo span svg { width: 14px; height: 14px; fill: var(--white); }

.navbar-nav .nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--mid) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px !important;
  transition: color var(--transition);
}

.navbar-nav .nav-link:hover { color: var(--olive-dark) !important; }

.btn-book {
  background: var(--olive);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}

.btn-book:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,112,92,.35);
}

.navbar-toggler {
  border: none;
  color: var(--olive-dark);
}

.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO
============================================================ */
#hero {
  background: var(--beige);
  padding: 160px 0 80px;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70%;
  background: var(--beige);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-primary-spa {
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-spa:hover {
  background: var(--olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(107,112,92,.4);
  color: var(--white);
}

.btn-secondary-spa {
  background: transparent;
  color: var(--olive-dark);
  border: 1.5px solid var(--olive);
  border-radius: 50px;
  padding: 13px 32px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-spa:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero Image Grid */
.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-top: 60px;
  max-height: 420px;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hg-1 { grid-row: 1 / 3; border-radius: var(--radius-lg); }
.hg-2 { grid-column: 2; grid-row: 1 / 3; border-radius: var(--radius-lg); }
.hg-3 { grid-column: 3; grid-row: 1; border-radius: var(--radius-md); }
.hg-4 { grid-column: 3; grid-row: 2; border-radius: var(--radius-md); }

/* ============================================================
   ABOUT / WELLNESS
============================================================ */
#wellness {
  background: var(--beige-dark);
  padding: 100px 0;
}

.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--mid);
  line-height: 1.8;
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  color: var(--mid);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: var(--brown-light);
  opacity: .4;
  align-self: stretch;
  margin: 10px 0;
}

/* ============================================================
   SERVICES
============================================================ */
#services {
  background: var(--beige);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,20,.85) 0%, rgba(30,28,20,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(30,28,20,.92) 0%, rgba(30,28,20,.2) 60%);
}

.service-num {
  font-size: .7rem;
  color: var(--brown-light);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.service-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: 8px 18px;
  transition: all var(--transition);
}

.btn-read-more:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.sc-featured { grid-row: 1 / 3; }

.sc-small .service-name { font-size: 1.1rem; }

/* ============================================================
   FEATURES
============================================================ */
#features {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,20,15,.7) 0%, rgba(20,20,15,.3) 100%);
}

.features-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.features-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.features-sub {
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  font-size: .9rem;
  margin-bottom: 28px;
  max-width: 360px;
}

.features-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-item:first-child { padding-top: 0; }

.feature-icon {
  width: 40px; height: 40px;
  background: var(--beige);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--olive);
  font-size: 1.1rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-text {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  background: var(--beige-dark);
  padding: 100px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars { color: #d4a847; font-size: .9rem; margin-bottom: 16px; }

.testi-text {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
}

.testi-role {
  font-size: .75rem;
  color: var(--olive-light);
  letter-spacing: .04em;
}

/* ============================================================
   CTA
============================================================ */
#cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,15,.78) 0%, rgba(40,38,28,.65) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn-cta {
  background: var(--white);
  color: var(--olive-dark);
  border-radius: 50px;
  padding: 16px 40px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.btn-cta:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 72px 0 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brown-light); }

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}

.footer-info i { color: var(--olive-light); margin-top: 2px; flex-shrink: 0; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 40px 0 24px;
}

.footer-bottom {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   UTILITIES
============================================================ */
.decorative-line {
  width: 50px;
  height: 2px;
  background: var(--brown);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.gap-btn { gap: 14px; display: flex; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 220px 220px;
  }
  .sc-featured { grid-row: 1; }

  .features-sub { max-width: 100%; }
  .hero-gallery { display: none; }
  .hg-1 { grid-row: 1/3; }
  .hg-2 { grid-row: 1; grid-column: 2; }
  .hg-3 { grid-row: 2; grid-column: 2; }
  .hg-4 { display: none; }
}

@media (max-width: 767px) {
  #hero { padding: 130px 0 60px; }
  .hero-gallery { display: none; }
  .services-grid { grid-template-rows: 260px 200px 200px; }
  .features-card { margin-top: 40px; }
  .stat-divider { display: none; }
  #footer { padding: 56px 0 20px; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 575px) {
  .hero-gallery { display: none; }
  .features-content { padding: 40px 40px; }
  .hg-1 { grid-row: 1; }
  .hg-2 { grid-row: 2; }
  .hg-3, .hg-4 { display: none; }
}



/* style for booking form */
/* ===========================
       CSS VARIABLES & RESET
    =========================== */
    :root {
      --beige: #f5f1ea;
      --beige-dark: #ece6da;
      --olive: #6b705c;
      --olive-dark: #4e5241;
      --olive-light: #8c9178;
      --brown: #a07855;
      --brown-light: #c4a882;
      --dark: #2c2c28;
      --mid: #5a5a52;
      --white: #ffffff;

      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --shadow: 0 4px 24px rgba(44,44,40,0.08);
      --shadow-lg: 0 12px 48px rgba(44,44,40,0.13);
      --transition: 0.28s cubic-bezier(.4,0,.2,1);
    }

    

    /* ===========================
       BACKGROUND DECORATION
    =========================== */
    body::before {
      content: '';
      position: fixed;
      top: -120px; right: -120px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(160,120,85,.13) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: '';
      position: fixed;
      bottom: -80px; left: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(107,112,92,.10) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ===========================
       HEADER / HERO
    =========================== */
    .hero {
      position: relative;
      text-align: center;
      padding: 56px 24px 40px;
      overflow: hidden;
    }

    .hero-images {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .hero-img-wrap {
      width: 130px;
      height: 88px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      flex-shrink: 0;
      border: 3px solid var(--white);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .hero-img-wrap:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 48px rgba(44,44,40,0.18); }
    .hero-img-wrap:nth-child(2) { transform: translateY(10px); }
    .hero-img-wrap:nth-child(2):hover { transform: translateY(6px) scale(1.03); }

    .hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Placeholder images via gradient */
    .img-spa   { background: linear-gradient(135deg, #c9b99a 0%, #a07855 100%); }
    .img-massage { background: linear-gradient(135deg, #b8bfaa 0%, #6b705c 100%); }
    .img-facial  { background: linear-gradient(135deg, #d6cfc4 0%, #c4a882 100%); }

    .img-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      opacity: .85;
    }

    .hero-badge {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--brown);
      background: rgba(160,120,85,.10);
      padding: 5px 16px;
      border-radius: 99px;
      margin-bottom: 16px;
      border: 1px solid rgba(160,120,85,.20);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 8vw, 58px);
      font-weight: 300;
      color: var(--olive-dark);
      line-height: 1.1;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--brown);
    }

    .hero-sub {
      font-size: 14px;
      color: var(--olive-light);
      font-weight: 300;
      letter-spacing: 0.3px;
      margin-bottom: 0;
    }

    /* ===========================
       DIVIDER
    =========================== */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 340px;
      margin: 0 auto 32px;
      padding: 0 24px;
    }
    .divider-line { flex: 1; height: 1px; background: var(--beige-dark); }
    .divider-icon { color: var(--brown-light); font-size: 16px; }

    /* ===========================
       MAIN LAYOUT
    =========================== */
    .page-wrap {
      position: relative;
      z-index: 1;
      max-width: 660px;
      margin: 0 auto;
      padding: 0 16px 60px;
    }

    /* ===========================
       FORM CARD
    =========================== */
    .form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 36px 32px 40px;
      border: 1px solid var(--beige-dark);
      animation: slideUp 0.6s cubic-bezier(.4,0,.2,1) both;
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .form-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--olive-dark);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--beige-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .form-section-title span { font-size: 16px; }

    /* ===========================
       FORM GRID / ROWS
    =========================== */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-row.single { grid-template-columns: 1fr; }
    .form-row.thirds { grid-template-columns: 1fr 1fr 1fr; }

    /* ===========================
       FORM GROUPS & LABELS
    =========================== */
    .form-group { display: flex; flex-direction: column; gap: 6px; }

    label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--mid);
    }
    label .req { color: var(--brown); margin-left: 2px; }

    /* ===========================
       INPUTS, SELECT, TEXTAREA
    =========================== */
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--beige-dark);
      border-radius: var(--radius-sm);
      background: var(--beige);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--olive-light);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(140,145,120,.15);
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--olive-light);
      opacity: .6;
    }

    /* Custom select arrow */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '▾';
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--olive-light);
      font-size: 13px;
      pointer-events: none;
    }
    select { padding-right: 34px; cursor: pointer; }

    textarea {
      resize: vertical;
      min-height: 96px;
      line-height: 1.6;
    }

    /* Date input */
    input[type="date"]::-webkit-calendar-picker-indicator {
      opacity: 0.4;
      cursor: pointer;
      filter: invert(0.3);
    }

    /* Number input arrows */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button { opacity: 0.5; }

    /* ===========================
       RADIO BUTTONS (GENDER)
    =========================== */
    .radio-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .radio-label {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      padding: 10px 18px;
      border: 1.5px solid var(--beige-dark);
      border-radius: var(--radius-sm);
      background: var(--beige);
      font-size: 14px;
      font-weight: 400;
      color: var(--mid);
      letter-spacing: 0;
      text-transform: none;
      transition: border-color var(--transition), background var(--transition), color var(--transition);
      flex: 1;
      justify-content: center;
      min-width: 110px;
    }
    .radio-label:hover {
      border-color: var(--olive-light);
      background: var(--white);
    }
    .radio-label input[type="radio"] {
      display: none;
    }
    .radio-label.active {
      border-color: var(--olive);
      background: rgba(107,112,92,.08);
      color: var(--olive-dark);
      font-weight: 500;
    }
    .radio-label .radio-dot {
      width: 14px; height: 14px;
      border: 2px solid var(--olive-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: border-color var(--transition);
      flex-shrink: 0;
    }
    .radio-label.active .radio-dot {
      border-color: var(--olive);
    }
    .radio-label.active .radio-dot::after {
      content: '';
      width: 6px; height: 6px;
      background: var(--olive);
      border-radius: 50%;
    }

    /* ===========================
       SECTION SPACER
    =========================== */
    .form-spacer { margin-bottom: 24px; }
    .form-spacer-sm { margin-bottom: 16px; }

    /* ===========================
       INFO BOX
    =========================== */
    .info-box {
      background: rgba(160,120,85,.07);
      border: 1px solid rgba(160,120,85,.18);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 12px;
      color: var(--brown);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .info-box .info-icon { flex-shrink: 0; margin-top: 1px; }

    /* ===========================
       SUBMIT BUTTON
    =========================== */
    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--olive);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
      position: relative;
      overflow: hidden;
    }
    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .btn-submit:hover {
      background: var(--olive-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(78,82,65,.28);
    }
    .btn-submit:active {
      transform: translateY(0);
      box-shadow: none;
    }
    .btn-submit .wa-icon { font-size: 18px; }

    /* ===========================
       FOOTER NOTE
    =========================== */
    .footer-note {
      text-align: center;
      padding: 24px 0 0;
      font-size: 12px;
      color: var(--olive-light);
      line-height: 1.6;
    }
    .footer-note strong { color: var(--brown); }

    /* ===========================
       ERROR STATE
    =========================== */
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
      border-color: #c0392b;
      background: #fff8f8;
    }
    .error-msg {
      font-size: 11px;
      color: #c0392b;
      margin-top: 2px;
      display: none;
    }
    .form-group.has-error .error-msg { display: block; }

    /* ===========================
       RESPONSIVE — MOBILE FIRST
    =========================== */
    @media (max-width: 540px) {
      .hero { padding: 40px 16px 28px; }
      .hero-img-wrap { width: 100px; height: 100px; }
      .hero-img-wrap:nth-child(2) { transform: none; }
      .hero-img-wrap:nth-child(2):hover { transform: translateY(-4px) scale(1.03); }

      .form-card { padding: 24px 18px 28px; }
      .form-row { grid-template-columns: 1fr; }
      .form-row.thirds { grid-template-columns: 1fr; }
    }

    @media (min-width: 541px) and (max-width: 720px) {
      .form-row.thirds { grid-template-columns: 1fr 1fr; }
    }

    /* ===========================
       LOADING OVERLAY (for WA redirect)
    =========================== */
    .redirect-toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--olive-dark);
      color: var(--white);
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-size: 13px;
      font-weight: 500;
      box-shadow: var(--shadow-lg);
      z-index: 999;
      opacity: 0;
      transition: opacity .3s, transform .3s;
      white-space: nowrap;
    }
    .redirect-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }