/* ============================================================
   Mountain Dietitian — Design System
   Palette: Deep Forest + Sage + Warm Cream + Slate
   Type: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --forest:    #2C4A35;
  --sage:      #6B8F71;
  --sage-lt:   #A8C5AB;
  --sage-pale: #E8F0E9;
  --cream:     #F7F4EF;
  --cream-dk:  #EDE8DF;
  --gold:      #B5963A;
  --gold-lt:   #D4B86A;
  --slate:     #3A3F3C;
  --slate-mid: #6B706D;
  --slate-lt:  #9CA09D;
  --white:     #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(44,74,53,.08);
  --shadow-md: 0 4px 20px rgba(44,74,53,.12);
  --shadow-lg: 0 12px 40px rgba(44,74,53,.16);

  --transition: 0.25s ease;
  --max-w: 1160px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography Scale ────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate-mid);
  font-weight: 300;
}
.body-sm { font-size: 0.875rem; color: var(--slate-mid); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-primary:hover {
  background: #1e3526;
  border-color: #1e3526;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--sage-pale);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage-lt);
  padding: 12px 28px;
}
.btn-ghost:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--cream-dk);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.nav-logo-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--forest); }
.nav-cta { margin-left: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 901;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 899;
  padding: 40px 24px;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-mobile.open { transform: translateX(0); display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  border-bottom: 1px solid var(--cream-dk);
  padding-bottom: 20px;
}

/* ── Sticky Mobile CTA ───────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  background: var(--forest);
  padding: 14px 24px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(44,74,53,.2);
}
.sticky-cta a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(181,150,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sage-lt);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.hero-headline { margin-bottom: 24px; }
.hero-headline em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub { max-width: 480px; margin-bottom: 40px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dk);
}
.hero-trust-stat { text-align: center; }
.hero-trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.hero-trust-stat span { font-size: 0.75rem; color: var(--slate-mid); }
.hero-trust-divider { width: 1px; height: 40px; background: var(--cream-dk); }

/* Hero visual card */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-pale);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-card-list { display: flex; flex-direction: column; gap: 12px; }
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--slate);
}
.hero-card-item-icon {
  width: 20px; height: 20px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-card-item-icon svg { width: 10px; height: 10px; fill: var(--sage); }
.hero-card-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-cta-label { font-size: 0.8rem; color: var(--slate-mid); }
.hero-card-available {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
}
.hero-card-available::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}
.hero-float-1 {
  top: -20px; right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-float-2 {
  bottom: -16px; left: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-mid);
}
.hero-float svg { width: 16px; height: 16px; fill: var(--gold); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header .eyebrow { margin-bottom: 14px; }
.section-header .display-lg { margin-bottom: 20px; }
.section-header .lead { max-width: 560px; }
.section-header.center .lead { margin: 0 auto; }

/* ── Who We Help Strip ───────────────────────────────────── */
.who-strip {
  background: var(--forest);
  padding: 72px 0;
}
.who-strip .section-header .display-lg,
.who-strip .section-header .eyebrow { color: var(--sage-lt); }
.who-strip .section-header .display-lg { color: var(--white); }
.who-strip .lead { color: rgba(255,255,255,0.65); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.who-card {
  background: rgba(255,255,255,0.05);
  padding: 36px 32px;
  transition: background var(--transition);
}
.who-card:hover { background: rgba(255,255,255,0.1); }
.who-card-icon {
  width: 44px; height: 44px;
  background: rgba(168,197,171,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.who-card-icon svg { width: 22px; height: 22px; fill: var(--sage-lt); }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.who-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── Goals Section ───────────────────────────────────────── */
.goals { background: var(--cream); }
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.goal-pill {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: default;
}
.goal-pill:hover {
  border-color: var(--sage-lt);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.goal-pill-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.goal-pill h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.goal-pill p { font-size: 0.8rem; color: var(--slate-mid); line-height: 1.55; }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card-desc { color: var(--slate-mid); line-height: 1.65; margin-bottom: 28px; font-size: 0.9rem; }
.service-card-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate);
}
.service-card-detail svg { width: 16px; height: 16px; fill: var(--sage); flex-shrink: 0; }
.service-card-footer {
  padding-top: 24px;
  border-top: 1px solid var(--cream-dk);
}

/* ── How It Works ────────────────────────────────────────── */
.how-it-works { background: var(--sage-pale); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--sage-lt);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--sage-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest);
  transition: all var(--transition);
}
.step:hover .step-num {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
}
.step p { font-size: 0.85rem; color: var(--slate-mid); line-height: 1.6; }

/* ── Good Fit ────────────────────────────────────────────── */
.good-fit { background: var(--white); }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.fit-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: box-shadow var(--transition);
}
.fit-card:hover { box-shadow: var(--shadow-md); }
.fit-card.green { background: var(--sage-pale); border: 1px solid var(--sage-lt); }
.fit-card.amber { background: #FBF8F0; border: 1px solid #E8D9A8; }
.fit-card.neutral { background: var(--cream); border: 1px solid var(--cream-dk); }
.fit-card.outline { background: var(--white); border: 1px solid var(--cream-dk); }
.fit-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fit-card.green .fit-card-icon { background: rgba(107,143,113,.15); }
.fit-card.amber .fit-card-icon { background: rgba(181,150,58,.15); }
.fit-card.neutral .fit-card-icon { background: var(--cream-dk); }
.fit-card.outline .fit-card-icon { background: var(--sage-pale); }
.fit-card-icon svg { width: 24px; height: 24px; }
.fit-card.green .fit-card-icon svg { fill: var(--sage); }
.fit-card.amber .fit-card-icon svg { fill: var(--gold); }
.fit-card.neutral .fit-card-icon svg { fill: var(--slate-mid); }
.fit-card.outline .fit-card-icon svg { fill: var(--forest); }
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
}
.fit-list { display: flex; flex-direction: column; gap: 10px; }
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}
.fit-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.fit-card.amber .fit-list li::before { background: var(--gold); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dk);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--forest);
  font-weight: 500;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
.testimonial-meta { font-size: 0.75rem; color: var(--slate-mid); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dk); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--cream-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sage);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--forest);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,197,171,.12) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(181,150,58,.1) 0%, transparent 70%);
}
.cta-banner .eyebrow { color: var(--sage-lt); margin-bottom: 16px; }
.cta-banner .display-lg { color: var(--white); margin-bottom: 20px; }
.cta-banner .lead { color: rgba(255,255,255,.65); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ── Insurance Banner ────────────────────────────────────── */
.insurance-strip {
  background: var(--sage-pale);
  padding: 36px 0;
  border-top: 1px solid var(--sage-lt);
  border-bottom: 1px solid var(--sage-lt);
}
.insurance-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.insurance-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.insurance-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.insurance-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 20px;
}
.footer-desc { font-size: 0.875rem; line-height: 1.65; max-width: 280px; }
.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 14px; height: 14px; fill: var(--sage-lt); flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--cream-dk);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero .display-lg { margin-bottom: 20px; }

/* ── About Page ──────────────────────────────────────────── */
.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--sage-pale);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-placeholder {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--sage);
  opacity: 0.4;
  text-align: center;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest);
  line-height: 1;
}
.about-img-badge span { font-size: 0.75rem; color: var(--slate-mid); }
.about-text .eyebrow { margin-bottom: 14px; }
.about-text .display-lg { margin-bottom: 20px; }
.about-text p { color: var(--slate-mid); line-height: 1.75; margin-bottom: 20px; }
.credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.credential-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  white-space: nowrap;
  padding-top: 1px;
}
.credential-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--forest); }
.credential-info span { font-size: 0.8rem; color: var(--slate-mid); }

.philosophy { background: var(--forest); }
.philosophy .display-lg { color: var(--white); margin-bottom: 20px; }
.philosophy .eyebrow { color: var(--sage-lt); margin-bottom: 14px; }
.philosophy-text { color: rgba(255,255,255,.7); line-height: 1.75; font-size: 1rem; max-width: 600px; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.philosophy-card {
  background: rgba(255,255,255,.05);
  padding: 32px;
}
.philosophy-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.philosophy-card p { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Services Page ───────────────────────────────────────── */
.services-detail { background: var(--white); }
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.service-detail-card .eyebrow { margin-bottom: 12px; }
.service-detail-card .display-md { margin-bottom: 16px; }
.service-detail-card > div > p { color: var(--slate-mid); line-height: 1.7; margin-bottom: 24px; }
.service-visual {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-visual-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.service-visual-item svg { width: 18px; height: 18px; fill: var(--sage); flex-shrink: 0; }
.payment-section { background: var(--cream); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.payment-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.payment-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.payment-card p { font-size: 0.875rem; color: var(--slate-mid); line-height: 1.6; }

/* ── Who We Help Page ────────────────────────────────────── */
.who-conditions { background: var(--white); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.condition-card {
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.condition-card:hover {
  border-color: var(--sage-lt);
  box-shadow: var(--shadow-sm);
}
.condition-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.condition-card p { font-size: 0.875rem; color: var(--slate-mid); line-height: 1.6; }
.not-for { background: #FBF8F0; }
.not-for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 48px; }
.not-for-text .display-md { margin-bottom: 20px; }
.not-for-text p { color: var(--slate-mid); line-height: 1.7; margin-bottom: 20px; }
.referral-list { display: flex; flex-direction: column; gap: 12px; }
.referral-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--slate);
  border: 1px solid var(--cream-dk);
}
.referral-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info .display-md { margin-bottom: 20px; }
.contact-info > p { color: var(--slate-mid); line-height: 1.7; margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.contact-card-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-card-icon svg { width: 18px; height: 18px; fill: var(--sage); }
.contact-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--forest); font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-card small { font-size: 0.75rem; color: var(--slate-mid); display: block; margin-top: 2px; }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 0.875rem; color: var(--slate-mid); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,.12);
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B8F71' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--slate-mid); margin-top: 14px; text-align: center; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 3/2; }
  .about-img-badge { right: 16px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .sticky-cta { display: block; }
  body { padding-bottom: 60px; }
  .who-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .not-for-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 64px 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .insurance-inner { gap: 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .goals-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
