/* ═══════════════════════════════════════════
   BEYOND THE SCALE — Light & Airy Redesign
   Palette: Warm whites · Stone · Sage accent
   ═══════════════════════════════════════════ */

:root {
  /* Whites & creams (dominant) */
  --white: #ffffff;
  --cream: #faf7f2;
  /* slightly warmer and lighter */
  --warm: #fdfaf6;
  --parchment: #f0eadb;
  --stone: #ded4c4;
  --sand: #c9bda8;

  /* Text - Darker for stark contrast */
  --text: #050403;
  --text-mid: #25221e;
  --text-soft: #5e5650;
  --text-muted: #8c8278;

  /* Sage green -> Emerald/Deep Forest (sophisticated) */
  --sage: #183320;
  /* deeper, richer * /
  --sage-dark: #0f1c12;
  --sage-mid: #224a2c;
  --sage-pale: #eef2ef;

  /* Earth / terracotta -> Richer rust */
  --earth: #a65e2f;
  /* richer, less orange */
  --earth-dk: #75401d;
  --earth-pale: #fcf6f2;

  /* Dark (footer only) */
  --dark: #080706;
  --dark-mid: #14110e;

  /* Gold */
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #fdf8ec;
  --gold-dk: #a6852e;

  /* WhatsApp */
  --wa: #25d366;
  --wa-dk: #128c7e;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs: 0.375rem;
  --sp-sm: 0.75rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.25rem;
  --sp-xl: 3.5rem;
  --sp-2xl: 5rem;
  --sp-3xl: 7.5rem;
  --sp-4xl: 10rem;
  --sp-5xl: 12rem;

  --nav-h: 96px;
  /* slightly taller */
  --max-w: 1320px;
  /* slightly wider content */

  /* Softer, more luxurious border radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* Shadows */
  --sh-xs: 0 4px 12px rgba(12, 10, 9, 0.04), 0 2px 4px rgba(12, 10, 9, 0.02);
  --sh-sm: 0 8px 24px rgba(12, 10, 9, 0.05), 0 4px 8px rgba(12, 10, 9, 0.03);
  --sh-md: 0 16px 48px rgba(24, 51, 32, 0.08), 0 6px 16px rgba(12, 10, 9, 0.04);
  --sh-lg: 0 32px 96px rgba(24, 51, 32, 0.1), 0 12px 32px rgba(12, 10, 9, 0.05);
  --sh-card: 0 2px 8px rgba(12, 10, 9, 0.04), 0 8px 28px rgba(12, 10, 9, 0.05);
  --sh-card-hover: 0 8px 24px rgba(24, 51, 32, 0.09), 0 20px 48px rgba(12, 10, 9, 0.07);
  --sh-sidebar: 6px 0 32px rgba(12, 10, 9, 0.06);
  --sh-header: 0 1px 0 rgba(222, 212, 196, 0.3), 0 4px 16px rgba(12, 10, 9, 0.04);

  /* Sidebar widths */
  --sidebar-w: 272px;
  --sidebar-w-admin: 256px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --fast: 250ms;
  --base: 500ms;
  --slow: 800ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: clamp(15px, 1.1vw, 18px);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden
}

/* Prevent iOS tap highlight flash */
* {
  -webkit-tap-highlight-color: transparent
}

/* Prevent double-tap zoom on interactive elements */
a, button, input, select, textarea, label {
  touch-action: manipulation
}

/* Prevent iOS Safari from zooming on input focus (needs >= 16px) */
input, select, textarea {
  font-size: 1rem
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

ul {
  list-style: none
}

input,
select,
textarea {
  font-family: inherit
}

/* ─── LAYOUT ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(var(--sp-md), 4vw, var(--sp-xl))
}

.section {
  padding: var(--sp-5xl) 0
}

/* ─── SECTION LABELS ─────────────────────── */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-md)
}

.section__tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--sage-mid);
  border-radius: 2px
}

.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.015em;
}

.section__heading em {
  font-style: italic;
  color: var(--sage)
}

.section__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 600px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-4xl)
}

.section__header .section__tag {
  justify-content: center
}

.section__header .section__tag::before {
  display: none
}

.section__header .section__tag::after {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--sage-mid);
  border-radius: 2px
}

.section__header .section__sub {
  margin: 0 auto
}

/* ─── REVEALS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.reveal.revealed {
  opacity: 1;
  transform: none
}

.reveal--d1 {
  transition-delay: .10s
}

.reveal--d2 {
  transition-delay: .20s
}

.reveal--d3 {
  transition-delay: .30s
}

.reveal--d4 {
  transition-delay: .40s
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--r-pill);
  /* Sleeker pills */
  border: 1px solid transparent;
  transition: all var(--base) var(--ease-spring);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xs);
}

.btn:active {
  transform: scale(0.97);
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: .9rem
}

.btn--sm {
  padding: .6rem 1.5rem;
  font-size: .75rem
}

.btn--full {
  width: 100%
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: 0 8px 24px rgba(24, 51, 32, 0.2), 0 4px 8px rgba(24, 51, 32, 0.1);
}

.btn--primary:hover {
  background: var(--sage-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(24, 51, 32, 0.3), 0 6px 12px rgba(24, 51, 32, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
  border-width: 1px;
}

.btn--outline:hover {
  background: var(--sage-pale);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--text-mid);
  border-width: 1px;
  box-shadow: none;
}

.btn--outline-dark:hover {
  background: var(--text-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 10, 9, 0.15);
}

.btn--earth {
  background: var(--earth);
  color: var(--white);
  border-color: var(--earth)
}

.btn--earth:hover {
  background: transparent;
  color: var(--earth);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  border-width: 1px;
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--text);
}

.btn--wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa)
}

.btn--wa:hover {
  background: var(--wa-dk);
  border-color: var(--wa-dk);
  transform: translateY(-2px)
}

.btn__loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite
}

.btn.loading .btn__text {
  opacity: 0
}

.btn.loading .btn__loader {
  display: block;
  position: absolute
}

/* ─── SCROLL PROGRESS ────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--earth));
  z-index: 9999;
  width: 0;
  transition: width .1s linear
}

/* ─── NAVIGATION ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: background var(--slow) var(--ease), box-shadow var(--slow) var(--ease)
}

/* starts transparent over light hero */
.nav.scrolled {
  background: rgba(253, 250, 246, 0.85);
  /* Slightly transparent warm cream */
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 1px 0 rgba(222, 212, 196, 0.3), var(--sh-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  text-decoration: none
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  color: var(--sage);
  flex-shrink: 0
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
  line-height: 1;
}

.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}

.nav__logo-clinic {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: var(--sage);
  font-weight: 600;
  text-transform: uppercase;
}

.nav--light .nav__logo {
  color: var(--white)
}

.nav--light .nav__logo-main {
  color: var(--white)
}

.nav--light .nav__logo-clinic {
  color: rgba(255, 255, 255, .55)
}

.nav--light .nav__logo-icon {
  color: rgba(255, 255, 255, .8)
}

.nav--light .nav__link {
  color: rgba(255, 255, 255, .78)
}

.nav--light .nav__link::after {
  background: var(--earth)
}

.nav--light .nav__toggle span {
  background: var(--white)
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md)
}

.nav__link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--fast) var(--ease);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--base) var(--ease);
  border-radius: 2px
}

.nav__link:hover {
  color: var(--text)
}

.nav__link:hover::after {
  width: 100%
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--text)
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all var(--base) var(--ease);
  transform-origin: center
}

/* ─── HERO ───────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  background: var(--cream);
  overflow: hidden
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-xl) var(--sp-3xl) var(--sp-xl) var(--sp-xl);
  max-width: 640px;
  margin-left: auto
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--sage-pale);
  border: 1px solid rgba(74, 124, 66, .2);
  color: var(--sage-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-xl);
  width: fit-content
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-mid);
  animation: pulse 2.2s ease-in-out infinite
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--sp-xl);
  letter-spacing: -.01em
}

.hero__headline em {
  font-style: italic;
  color: var(--sage)
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: var(--sp-2xl);
  max-width: 480px
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-3xl)
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-2xl);
  border-top: 1px solid var(--stone)
}

.hero__stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: .95rem
}

.hero__proof-text {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4
}

.hero__proof-text strong {
  display: block;
  color: var(--text-mid);
  font-size: .88rem
}

.hero__right {
  position: relative;
  overflow: hidden
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 18%)
}

/* ─── HERO MOSAIC ────────────────────────── */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}

.hero-mosaic__cell {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.hero-mosaic__cell--tall {
  grid-row: 1 / 3;
}

.hero-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--ease);
}

.hero-mosaic__cell:hover img {
  transform: scale(1.05);
}

.hero-mosaic__tag {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: white;
  background: rgba(13, 27, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* specialist panel overlaid on photo */
.hero__panel {
  position: absolute;
  bottom: var(--sp-2xl);
  left: var(--sp-xl);
  right: var(--sp-xl);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh-md);
  z-index: 2;
}

.hero__panel-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-md)
}

.hero__specialists {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.hero__specialist {
  display: flex;
  align-items: center;
  gap: .75rem
}

.hero__sp-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hero__sp-icon svg {
  width: 16px;
  height: 16px
}

.hero__sp-icon--md {
  background: var(--sage-pale);
  color: var(--sage)
}

.hero__sp-icon--rd {
  background: var(--earth-pale);
  color: var(--earth-dk)
}

.hero__sp-icon--psych {
  background: var(--warm);
  color: var(--text-soft)
}

.hero__sp-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  display: block
}

.hero__sp-role {
  font-size: .7rem;
  color: var(--text-muted)
}

/* ─── TRUST STRIP ────────────────────────── */
.trust-strip {
  background: var(--warm);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: var(--sp-md) 0
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2xl)
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-soft)
}

.trust-strip__item svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0
}

/* ─── PATIENT JOURNEY ────────────────────── */
.journey {
  background: var(--dark);
  padding: var(--sp-5xl) 0;
  overflow: hidden;
}

.journey__header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.journey__header .section__tag {
  color: var(--gold);
  justify-content: center;
}

.journey__header .section__tag::before {
  background: var(--gold);
  opacity: 0.6;
}

.journey__header .section__tag::after {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.6;
}

.journey__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin: 0.4rem 0 0;
  line-height: 1.15;
}

.journey__heading em {
  font-style: italic;
  color: var(--gold);
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.jcard {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}

.jcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}

.jcard__img {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.jcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s var(--ease);
  display: block;
}

.jcard:hover .jcard__img img {
  transform: scale(1.05);
}

.jcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 35%,
      rgba(13, 27, 42, 0.55) 70%,
      rgba(13, 27, 42, 0.82) 100%);
}

.jcard__num {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.jcard__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.jcard__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.jcard__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.jcard__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .journey__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .jcard__img {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .jcard__img {
    height: 280px;
  }

  .jcard__title {
    font-size: 1.25rem;
  }
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  background: var(--white)
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5xl);
  align-items: center
}

.about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 200px;
  gap: var(--sp-md)
}

.mosaic-img {
  border-radius: var(--r-lg);
  overflow: hidden
}

.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease)
}

.mosaic-img:hover img {
  transform: scale(1.04)
}

.mosaic-img--tall {
  grid-row: 1/3
}

.mosaic-stat {
  border-radius: var(--r-lg);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-xl)
}

.mosaic-stat__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--earth);
  line-height: 1;
  margin-bottom: .25rem
}

.mosaic-stat p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.45
}

.mosaic-tag {
  border-radius: var(--r-lg);
  background: var(--sage);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-xl)
}

.mosaic-tag__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: .3rem
}

.mosaic-tag__value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.25
}

.about__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: var(--sp-lg)
}

.about__content>p {
  font-size: .9375rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: var(--sp-2xl)
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl)
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md)
}

.pillar__icon {
  width: 28px;
  height: 28px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  margin-top: 2px
}

.pillar__icon svg {
  width: 13px;
  height: 13px
}

.pillar strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .2rem
}

.pillar p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.55
}

/* ─── TEAM ───────────────────────────────── */
.team {
  background: var(--cream)
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl)
}

.tcard {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(222, 212, 196, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: transform var(--slow) var(--ease-spring), box-shadow var(--slow) var(--ease-spring), border-color var(--slow) var(--ease)
}

.tcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(222, 212, 196, 0.8);
}

.tcard--featured {
  border-color: var(--earth);
  box-shadow: var(--sh-sm)
}

.tcard__photo {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative
}

.tcard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--slow) var(--ease)
}

.tcard:hover .tcard__photo img {
  transform: scale(1.04)
}

.tcard__top-bar {
  height: 3px;
  background: var(--stone)
}

.tcard:not(.tcard--featured):hover .tcard__top-bar {
  background: linear-gradient(90deg, var(--sage), var(--sage-mid))
}

.tcard--featured .tcard__top-bar {
  background: linear-gradient(90deg, var(--earth), var(--earth-dk))
}

.tcard__badge {
  position: absolute;
  bottom: var(--sp-md);
  right: var(--sp-md);
  background: var(--earth);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .26rem .68rem;
  border-radius: var(--r-pill)
}

.tcard__body {
  padding: var(--sp-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.tcard__role {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--r-pill);
  width: fit-content
}

.tcard__role--md {
  background: var(--sage-pale);
  color: var(--sage-dark)
}

.tcard__role--rd {
  background: var(--earth-pale);
  color: var(--earth-dk)
}

.tcard__role--psych {
  background: var(--warm);
  color: var(--text-mid)
}

.tcard__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text)
}

.tcard__name em {
  display: block;
  font-style: italic;
  font-size: .8em;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-muted)
}

.tcard__desc {
  font-size: .855rem;
  color: var(--text-soft);
  line-height: 1.72;
  flex: 1
}

.tcard__expertise {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.tcard__expertise li {
  font-size: .78rem;
  color: var(--text-muted);
  padding-left: .95rem;
  position: relative
}

.tcard__expertise li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700
}

.tcard__footer {
  padding: var(--sp-xl);
  padding-top: 0;
  margin-top: auto
}

/* ─── APPROACH ───────────────────────────── */
.approach {
  background: var(--warm)
}

.approach__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-5xl);
  align-items: start
}

.approach__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-xl))
}

.approach__sidebar p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: var(--sp-2xl);
  font-size: .9375rem
}

.approach__img {
  margin-top: var(--sp-xl);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 240px
}

.approach__img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.steps {
  display: flex;
  flex-direction: column
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--sp-lg);
  padding: var(--sp-2xl) 0;
  border-bottom: 1px solid var(--stone);
  align-items: start
}

.step:first-child {
  padding-top: 0
}

.step:last-child {
  border-bottom: none
}

.step:hover .step__num {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  transform: scale(1.08)
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--base) var(--ease);
  flex-shrink: 0
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .4rem;
  line-height: 1.3;
  padding-top: .35rem
}

.step__desc {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.72
}

/* ─── GLP ────────────────────────────────── */
.glp {
  background: var(--white)
}

.glp__pen-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  margin-bottom: var(--sp-4xl);
  background: var(--cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.glp__pen-img {
  height: 380px;
  overflow: hidden
}

.glp__pen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.glp__pen-content {
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-2xl) 0
}

.glp__pen-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--earth-dk);
  margin-bottom: var(--sp-md)
}

.glp__pen-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-md)
}

.glp__pen-content p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: var(--sp-lg)
}

.glp__pen-points {
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.glp__pen-points li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-mid)
}

.glp__pen-points li svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0
}

.glp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-3xl)
}

.gcard {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  transition: all var(--base) var(--ease);
  box-shadow: var(--sh-xs);
}

.gcard:hover {
  background: var(--white);
  border-color: var(--sage-pale);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.gcard__icon {
  width: 40px;
  height: 40px;
  color: var(--sage);
  margin-bottom: var(--sp-lg)
}

.gcard h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-md)
}

.gcard p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.78
}

.glp__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
  padding: var(--sp-xl);
  background: var(--earth-pale);
  border: 1px solid rgba(196, 149, 106, .25);
  border-left: 3px solid var(--earth);
  border-radius: var(--r-md)
}

.glp__disclaimer svg {
  width: 18px;
  height: 18px;
  color: var(--earth-dk);
  flex-shrink: 0;
  margin-top: 2px
}

.glp__disclaimer p {
  font-size: .78rem;
  color: var(--text-soft);
  line-height: 1.65
}

/* ─── QUOTE ──────────────────────────────── */
.quote-section {
  position: relative;
  padding: var(--sp-5xl) 0;
  overflow: hidden;
  background: var(--parchment)
}

.quote-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12
}

.quote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-left: none
}

.quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-mid);
  margin-bottom: var(--sp-xl)
}

.quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted)
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  background: var(--cream)
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-3xl)
}

.review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
  box-shadow: var(--sh-xs);
}

.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.review__stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: .85rem
}

.review__text {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.72;
  flex: 1
}

.review__text em {
  color: var(--sage-dark);
  font-style: italic
}

.review__author {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: auto
}

.review__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .78rem;
  color: var(--white);
  flex-shrink: 0
}

.review__avatar--a {
  background: var(--sage)
}

.review__avatar--b {
  background: var(--earth)
}

.review__avatar--c {
  background: var(--sage-dark)
}

.review__avatar--d {
  background: var(--earth-dk)
}

.review__avatar--e {
  background: #7a6a5a
}

.review__avatar--f {
  background: #5a7a52
}

.review__name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  display: block
}

.review__date {
  font-size: .7rem;
  color: var(--text-muted)
}

.reviews__google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  max-width: 360px;
  margin: 0 auto
}

.reviews__google-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em
}

.reviews__google-logo span:nth-child(1) {
  color: #4285f4
}

.reviews__google-logo span:nth-child(2) {
  color: #ea4335
}

.reviews__google-logo span:nth-child(3) {
  color: #fbbc05
}

.reviews__google-logo span:nth-child(4) {
  color: #4285f4
}

.reviews__google-logo span:nth-child(5) {
  color: #34a853
}

.reviews__google-logo span:nth-child(6) {
  color: #ea4335
}

.reviews__google-rating {
  font-size: .82rem;
  color: var(--text-soft)
}

.reviews__google-rating strong {
  color: var(--text);
  font-size: .95rem
}

/* ─── PRICING ────────────────────────────── */
.pricing {
  background: var(--warm)
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  align-items: start
}

.pcard {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(222, 212, 196, 0.4);
  padding: var(--sp-2xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--slow) var(--ease-spring), box-shadow var(--slow) var(--ease-spring), border-color var(--slow) var(--ease);
  box-shadow: var(--sh-xs);
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(222, 212, 196, 0.8);
}

.pcard--featured {
  background: var(--dark);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--sh-lg)
}

.pcard--featured:hover {
  transform: translateY(-12px)
}

.pcard__badge {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-lg);
  background: var(--earth);
  color: var(--white);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .26rem .68rem;
  border-radius: var(--r-pill)
}

.pcard__name {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-md)
}

.pcard--featured .pcard__name {
  color: var(--earth)
}

.pcard__price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: .25rem
}

.pcard--featured .pcard__price {
  color: var(--white)
}

.pcard__note {
  font-size: .76rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-xl)
}

.pcard--featured .pcard__note {
  color: rgba(255, 255, 255, .35)
}

.pcard__divider {
  height: 1px;
  background: var(--stone);
  margin-bottom: var(--sp-xl)
}

.pcard--featured .pcard__divider {
  background: rgba(255, 255, 255, .08)
}

.pcard__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: var(--sp-2xl)
}

.pcard__features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.5
}

.pcard--featured .pcard__features li {
  color: rgba(255, 255, 255, .55)
}

.pcard__features li svg {
  width: 14px;
  height: 14px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 3px
}

.pcard--featured .pcard__features li svg {
  color: var(--earth)
}

.pcard__disclaimer {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: var(--sp-md);
  line-height: 1.5;
  text-align: center
}

.pcard--featured .pcard__disclaimer {
  color: rgba(255, 255, 255, .25)
}

/* ─── WHY ────────────────────────────────── */
.why {
  background: var(--white)
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl)
}

.wcard {
  padding: var(--sp-2xl);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid transparent;
  transition: transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
  box-shadow: var(--sh-xs);
}

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

.wcard__icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: var(--sp-lg)
}

.wcard__icon svg {
  width: 20px;
  height: 20px
}

.wcard h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .5rem
}

.wcard p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.65
}

/* ─── CONTACT ────────────────────────────── */
.contact {
  background: var(--warm)
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5xl);
  align-items: start
}

.contact__info>p {
  font-size: .9375rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: var(--sp-xl)
}

.cdetails {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl)
}

.cdetail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md)
}

.cdetail__icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage)
}

.cdetail__icon svg {
  width: 16px;
  height: 16px
}

.cdetail strong {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem
}

.cdetail p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.45
}

.contact__map {
  margin-top: var(--sp-xl);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 180px
}

.contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--sh-sm)
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg)
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md)
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .45rem
}

.form__group label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text-mid)
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .78rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--stone);
  border-radius: var(--r-sm);
  font-size: .9375rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease)
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 124, 66, .1)
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
  opacity: .7
}

.form__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .5rem
}

.form__group--check input[type=checkbox] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--sage);
  margin-top: 2px
}

.form__group--check label {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
  line-height: 1.5
}

.form__success {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--sage-pale);
  border: 1px solid var(--sage-mid);
  color: var(--sage-dark);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500
}

.form__success.visible {
  display: flex
}

.form__error {
  display: none;
  align-items: center;
  gap: .5rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  margin-top: var(--sp-sm)
}

.form__error svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.form__success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

/* ─── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--wa);
  color: var(--white);
  padding: .85rem 1.35rem .85rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--base) var(--ease);
  animation: waIn .6s var(--ease-out) 1.5s both
}

.wa-float:hover {
  background: var(--wa-dk);
  transform: translateY(-3px) scale(1.03)
}

.wa-float svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .5)
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-3xl);
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer__brand .nav__logo {
  margin-bottom: var(--sp-lg);
  color: var(--white)
}

.footer__brand .nav__logo-main {
  color: var(--white)
}

.footer__brand .nav__logo-clinic {
  color: var(--earth-light)
}

.footer__brand .nav__logo-icon {
  color: var(--earth-light)
}

.footer__brand p {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md)
}

.footer__hpcsa {
  font-size: .68rem;
  color: rgba(255, 255, 255, .22) !important;
  line-height: 1.55
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .5);
  transition: color var(--base), border-color var(--base), background var(--base);
}

.footer__social a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
}

.footer__social svg {
  width: 1rem;
  height: 1rem;
}

.footer__col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-bottom: var(--sp-lg)
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.footer__col li,
.footer__col a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .4);
  transition: color var(--fast) var(--ease)
}

.footer__col a:hover {
  color: var(--earth)
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-xl) 0
}

.footer__bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .22)
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-xl)
}

.footer__bottom-links a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
  transition: color var(--fast) var(--ease)
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, .6)
}

/* ─── KEYFRAMES ──────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .45;
    transform: scale(.8)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes waIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.9)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1060px) {
  .hero {
    grid-template-columns: 1fr
  }

  .hero__right {
    display: none
  }

  .hero__left {
    margin: 0 auto;
    max-width: 100%;
    padding: var(--sp-xl) var(--sp-xl)
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto
  }

  .approach__grid {
    grid-template-columns: 1fr
  }

  .approach__sidebar {
    position: static
  }

  .glp__pen-feature {
    grid-template-columns: 1fr
  }

  .glp__pen-img {
    height: 260px
  }

  .glp__pen-content {
    padding: var(--sp-2xl)
  }

  .pricing__grid {
    grid-template-columns: 1fr 1fr
  }

  .pcard--featured {
    transform: none
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr
  }

  .footer__brand {
    grid-column: 1/-1
  }
}

@media(max-width:1100px) {
  :root {
    --sp-5xl: 4.5rem;
    --sp-4xl: 3rem
  }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    -webkit-overflow-scrolling: touch
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all
  }

  .nav__link {
    font-size: 1.5rem;
    color: var(--text-mid) !important
  }

  .nav__toggle {
    display: flex;
    z-index: 1000
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px)
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px)
  }

  .about__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .mosaic-img--tall {
    grid-row: auto
  }

  .glp__grid,
  .reviews__grid,
  .why__grid {
    grid-template-columns: 1fr
  }

  .pricing__grid {
    grid-template-columns: 1fr
  }

  .footer__inner {
    grid-template-columns: 1fr
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-md);
    text-align: center
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center
  }

  .form__row {
    grid-template-columns: 1fr
  }

  .trust-strip__inner {
    gap: var(--sp-lg)
  }

  .trust-strip__item {
    font-size: .68rem
  }

  .hero__actions {
    flex-direction: column
  }

  .wa-float__label {
    display: none
  }

  .wa-float {
    padding: .9rem;
    border-radius: 50%
  }

  /* Hero on tablets — don't force 100vh, allow scroll */
  .hero {
    height: auto;
    min-height: 500px;
    padding-top: calc(var(--nav-h) + var(--sp-xl));
    padding-bottom: var(--sp-xl);
  }
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--sp-xl);
  max-width: 1060px;
  margin-inline: auto;
}

.faq__col {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--stone);
  padding: var(--sp-md) 0;
}

.faq__item:first-child { border-top: 1px solid var(--stone); }

.faq__q {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  line-height: 1.35;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a6b72' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a6b72' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.faq__a {
  padding-top: var(--sp-sm);
  animation: faqOpen 0.2s ease;
}

.faq__a p {
  font-size: 0.935rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq__col:last-child .faq__item:first-child {
    border-top: none;
  }
}

/* ══════════════════════════════════════════
   ELIGIBILITY QUIZ
══════════════════════════════════════════ */
.elig__card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--sh-md);
}

/* Step dots */
.elig__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-xl);
}

.elig__step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
  transition: background var(--base) var(--ease), transform var(--base) var(--ease-spring);
}

.elig__step.active {
  background: var(--sage);
  transform: scale(1.35);
}

.elig__step.done { background: var(--sage-mid); }

.elig__step-line {
  flex: 1;
  height: 1.5px;
  background: var(--stone);
  max-width: 80px;
  margin: 0 var(--sp-sm);
  transition: background var(--base) var(--ease);
}

.elig__step-line.done { background: var(--sage-mid); }

/* Panels */
.elig__panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.elig__panel--active { display: block; }

.elig__panel--entering {
  opacity: 1;
  transform: translateY(0);
}

.elig__step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-sm);
}

.elig__panel-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.elig__panel-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

/* Step 1: inputs */
.elig__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.elig__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.elig__field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mid);
}

.elig__field input[type="number"] {
  width: 100%;
  padding: 0.78rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--stone);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
  -moz-appearance: textfield;
  appearance: textfield;
}

.elig__field input[type="number"]::-webkit-outer-spin-button,
.elig__field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.elig__field input[type="number"]:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(24, 51, 32, 0.08);
}

/* BMI badge */
.elig__bmi-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sage-pale);
  border: 1px solid rgba(24, 51, 32, 0.12);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.elig__bmi-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.elig__bmi-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
}

/* Step 2: checkboxes */
.elig__checks {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-lg);
}

.elig__check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--fast) var(--ease);
  border-bottom: 1px solid rgba(222, 212, 196, 0.5);
}

.elig__check-item:last-child { border-bottom: none; }

.elig__check-item:hover { background: var(--cream); }

.elig__check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.elig__check-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  background: var(--white);
  margin-top: 1px;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.elig__check-box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg) translateY(-1px);
  transition: border-color var(--fast) var(--ease);
}

.elig__check-item input[type="checkbox"]:checked ~ .elig__check-box {
  background: var(--sage);
  border-color: var(--sage);
}

.elig__check-item input[type="checkbox"]:checked ~ .elig__check-box::after {
  border-left-color: var(--white);
  border-bottom-color: var(--white);
}

.elig__check-item input[type="checkbox"]:focus-visible ~ .elig__check-box {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.elig__check-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.45;
  padding-top: 1px;
}

.elig__check-item--none {
  margin-top: var(--sp-sm);
  border-top: 1px solid var(--stone);
  border-bottom: none;
  padding-top: calc(var(--sp-sm) + 0.65rem);
}

.elig__age-confirm {
  margin-bottom: var(--sp-lg);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--r-sm);
  padding: 0.75rem !important;
}

.elig__age-confirm .elig__check-box { border-color: var(--gold); }

.elig__age-confirm input[type="checkbox"]:checked ~ .elig__check-box {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}

/* Actions */
.elig__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.elig__actions--split { justify-content: space-between; }

.elig__btn-continue:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.elig__back,
.elig__restart {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0;
  text-transform: uppercase;
  transition: color var(--fast) var(--ease);
}

.elig__back:hover,
.elig__restart:hover { color: var(--text); }

/* Step 3: Result */
.elig__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
}

.elig__result-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elig__result-icon--teal {
  background: var(--sage-pale);
  color: var(--sage);
}

.elig__result-icon--gold {
  background: var(--gold-pale);
  color: var(--gold-dk);
}

.elig__result-verdict {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.elig__result-body {
  font-size: 0.925rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto;
}

.elig__result-bmi {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

.elig__result-bmi--gold {
  background: var(--gold-pale);
  color: var(--gold-dk);
}

@media (max-width: 640px) {
  .elig__card { padding: var(--sp-xl) var(--sp-lg); }
  .elig__row  { grid-template-columns: 1fr; }
  .elig__bmi-value { font-size: 1.6rem; }
}

@media(max-width:480px) {
  .container {
    padding: 0 var(--sp-lg)
  }

  .why__grid {
    grid-template-columns: 1fr
  }

  .form-wrap {
    padding: var(--sp-xl)
  }

  .about__mosaic {
    grid-template-columns: 1fr 1fr
  }

  /* Hero: remove fixed min-height on small phones — let content breathe */
  .hero {
    height: auto;
    min-height: auto;
    padding-top: calc(var(--nav-h) + var(--sp-2xl));
    padding-bottom: var(--sp-2xl);
  }

  /* GLP pen image — reduce height on mobile */
  .glp__pen-img {
    height: 220px;
  }
}

/* ─── LARGE SCREENS (1440px+) ───────────────── */
@media (min-width: 1440px) {
  :root {
    --sp-xl:  4rem;
    --sp-2xl: 6rem;
    --sp-3xl: 9rem;
    --sp-4xl: 12rem;
    --sp-5xl: 14rem;
    --nav-h:  104px;
  }

  .section {
    padding: var(--sp-5xl) 0
  }
}

/* ─── ULTRA-WIDE SCREENS (1920px+) ──────────── */
@media (min-width: 1920px) {
  :root {
    --max-w: 1600px;
    --sp-xl:  5rem;
    --sp-2xl: 7rem;
    --sp-3xl: 10rem;
    --sp-5xl: 16rem;
  }
}