/* ════════════════════════════════════════════════════════
   DIETITIAN DISH — styles.css
   Brand: Warm terracotta + charcoal + off-white
   Type: Cormorant Garamond (display) + DM Sans (body)
   NOT green. Not generic.
════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette */
  --c-base:       #FAF8F5;   /* off-white base */
  --c-surface:    #F5F1EC;   /* warmer surface */
  --c-card:       #FDFBF8;   /* card white */
  --c-blush:      #F0E8E0;   /* blush background */
  --c-terracotta: #C4785A;   /* primary accent */
  --c-terracotta-dark: #A8614A;
  --c-terracotta-light: #E8C4B0;
  --c-charcoal:   #1C1C1E;   /* primary text */
  --c-mid:        #4A4A4C;   /* secondary text */
  --c-muted:      #8A8A8E;   /* muted text */
  --c-rule:       #E8E2DB;   /* dividers */
  --c-gold:       #C9A96E;   /* gold accent */
  --c-sage:       #6B8A6F;   /* sage (very secondary) */

  /* Type */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.75rem;
  --text-5xl:  5rem;

  /* Spacing */
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-base);
  color: var(--c-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITIES ───────────────────────────────────────── */
.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── MOBILE STICKY CTA ───────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--c-base);
  border-top: 1px solid var(--c-rule);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: 0 -4px 24px rgba(28,28,30,0.08);
}
.btn-sticky {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--f-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.btn-sticky:active { transform: scale(0.98); }

/* ── HEADER / NAV ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--c-rule);
  box-shadow: 0 1px 16px rgba(28,28,30,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  padding-block: var(--sp-5);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--f-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--f-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--c-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-charcoal); }
.nav-link.nav-cta {
  background: var(--c-terracotta);
  color: #fff;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-sm);
  font-weight: 500;
  transition: background 0.2s ease;
}
.nav-link.nav-cta:hover { background: var(--c-terracotta-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--f-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn-primary:hover {
  background: var(--c-terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,120,90,0.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--c-charcoal);
  font-family: var(--f-body);
  font-size: var(--text-base);
  font-weight: 400;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md);
  border: 1px solid var(--c-rule);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { border-color: var(--c-charcoal); background: var(--c-surface); }

.btn-service {
  display: inline-flex;
  background: var(--c-terracotta);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-sm);
  margin-top: var(--sp-5);
  transition: background 0.2s ease;
}
.btn-service:hover { background: var(--c-terracotta-dark); }

.btn-service-ghost {
  display: inline-flex;
  background: transparent;
  color: var(--c-terracotta);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-terracotta-light);
  margin-top: var(--sp-5);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-service-ghost:hover { background: var(--c-blush); border-color: var(--c-terracotta); }

/* ── SECTION PATTERNS ────────────────────────────────── */
.section-eyebrow {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-5);
}
.section-intro {
  font-size: var(--text-md);
  color: var(--c-mid);
  line-height: 1.7;
  max-width: 56ch;
}
.section-header {
  margin-bottom: var(--sp-16);
}
.section-header .section-intro { max-width: 60ch; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: var(--sp-20) var(--sp-16);
  background: var(--c-base);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,120,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-6);
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 500;
  line-height: 1.08;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-terracotta);
}
.hero-sub {
  font-size: var(--text-md);
  color: var(--c-mid);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--sp-10);
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.hero-trust {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--c-mid);
  letter-spacing: 0.02em;
}
.trust-icon {
  color: var(--c-sage);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: var(--sp-6); }
.hero-image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--c-blush) 0%, var(--c-terracotta-light) 60%, rgba(196,120,90,0.3) 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4785a' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.image-overlay-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.overlay-quote {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 500;
  color: var(--c-charcoal);
  line-height: 1.3;
}
.overlay-attr {
  font-size: var(--text-xs);
  color: var(--c-mid);
  letter-spacing: 0.04em;
}
.credential-badge {
  position: absolute;
  top: var(--sp-6);
  right: calc(-1 * var(--sp-6));
  background: var(--c-card);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: 0 8px 32px rgba(28,28,30,0.1);
  z-index: 2;
}
.badge-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1, 2px);
}
.badge-name {
  font-family: var(--f-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-charcoal);
}
.badge-creds {
  font-size: var(--text-xs);
  color: var(--c-terracotta);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.badge-loc {
  font-size: var(--text-xs);
  color: var(--c-muted);
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--c-card);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-2);
}
.stat-num {
  font-family: var(--f-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--c-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── WHO WE HELP ─────────────────────────────────────── */
.who-we-help {
  padding-block: var(--sp-32);
  background: var(--c-base);
  border-top: 1px solid var(--c-rule);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.who-card {
  background: var(--c-card);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,28,30,0.08);
  border-color: var(--c-terracotta-light);
}
.who-card--accent {
  background: var(--c-blush);
  border-color: var(--c-terracotta-light);
}
.who-card-icon {
  color: var(--c-terracotta);
  margin-bottom: var(--sp-5);
}
.who-card h3 {
  font-family: var(--f-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.who-card p {
  font-size: var(--text-sm);
  color: var(--c-mid);
  line-height: 1.7;
}

/* ── OUTCOMES ─────────────────────────────────────────── */
.outcomes {
  padding-block: var(--sp-32);
  background: var(--c-blush);
}
.outcomes-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-24);
  align-items: start;
}
.outcomes-left {
  position: sticky;
  top: 100px;
}
.outcomes-left .section-title { margin-bottom: var(--sp-5); }
.outcomes-intro {
  font-size: var(--text-base);
  color: var(--c-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-8);
  border-bottom: 1px solid rgba(28,28,30,0.08);
  align-items: start;
}
.outcome-item:first-child { padding-top: 0; }
.outcome-item:last-child { border-bottom: none; }
.outcome-marker {
  font-family: var(--f-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--c-terracotta-light);
  line-height: 1;
  padding-top: 2px;
}
.outcome-body h3 {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.outcome-body p {
  font-size: var(--text-base);
  color: var(--c-mid);
  line-height: 1.7;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services {
  padding-block: var(--sp-32);
  background: var(--c-base);
  border-top: 1px solid var(--c-rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(28,28,30,0.07);
  border-color: var(--c-terracotta-light);
}
.service-card--featured {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: #fff;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.service-card--featured:hover {
  box-shadow: 0 12px 48px rgba(28,28,30,0.2);
  border-color: var(--c-charcoal);
}
.service-tag {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: var(--c-terracotta);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1, 3px) var(--sp-3);
  border-radius: var(--r-full);
}
.service-name {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  line-height: 1.25;
}
.service-card--featured .service-name { color: #fff; font-size: var(--text-2xl); }
.service-desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--c-mid);
  margin-bottom: var(--sp-5);
}
.service-card--featured .service-desc { color: rgba(255,255,255,0.7); }
.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.service-includes li {
  font-size: var(--text-sm);
  color: var(--c-mid);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.service-includes li::before {
  content: '→';
  color: var(--c-terracotta);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card--featured .service-includes li { color: rgba(255,255,255,0.65); }
.service-card--featured .service-includes li::before { color: var(--c-terracotta-light); }

/* ── GOOD FIT ─────────────────────────────────────────── */
.good-fit {
  padding-block: var(--sp-32);
  background: var(--c-surface);
  border-top: 1px solid var(--c-rule);
}
.fit-header { margin-bottom: var(--sp-12); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
.fit-column {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--c-rule);
}
.fit-column--yes { border-color: var(--c-sage); }
.fit-column-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.fit-indicator {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.fit-indicator--yes { background: var(--c-sage); color: #fff; }
.fit-indicator--pause { background: var(--c-blush); color: var(--c-muted); border: 1px solid var(--c-rule); }
.fit-column h3 {
  font-family: var(--f-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-charcoal);
}
.fit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  list-style: none;
}
.fit-list li {
  font-size: var(--text-sm);
  color: var(--c-mid);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.fit-column--yes .fit-list li::before {
  content: '✓';
  color: var(--c-sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-column--pause .fit-list li::before {
  content: '◌';
  color: var(--c-muted);
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-note {
  margin-top: var(--sp-6);
  padding: var(--sp-4);
  background: var(--c-blush);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--c-mid);
  line-height: 1.6;
  font-style: italic;
}
.fit-cta { text-align: center; }
.fit-cta-note {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--c-muted);
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
  padding-block: var(--sp-32);
  background: var(--c-base);
  border-top: 1px solid var(--c-rule);
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-8);
  align-items: start;
  padding: var(--sp-8) 0;
  position: relative;
}
.hiw-connector {
  width: 1px;
  height: var(--sp-8);
  background: var(--c-rule);
  margin-left: 32px;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--c-blush);
  border: 1px solid var(--c-terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-terracotta);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hiw-step:hover .step-number {
  background: var(--c-terracotta);
  border-color: var(--c-terracotta);
  color: #fff;
}
.step-title {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.step-desc {
  font-size: var(--text-base);
  color: var(--c-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  max-width: 60ch;
}
.step-detail {
  background: var(--c-surface);
  border-left: 3px solid var(--c-terracotta-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-4) var(--sp-5);
}
.step-detail p {
  font-size: var(--text-sm);
  color: var(--c-mid);
  line-height: 1.65;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  padding-block: var(--sp-32);
  background: var(--c-blush);
  border-top: 1px solid var(--c-rule);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--c-card);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,28,30,0.08);
}
.testimonial-card--featured {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: #fff;
}
.testimonial-stars {
  color: var(--c-gold);
  font-size: var(--text-base);
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--f-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-charcoal);
  flex: 1;
}
.testimonial-card--featured .testimonial-text { color: rgba(255,255,255,0.9); }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1, 2px);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-rule);
}
.testimonial-card--featured .testimonial-author { border-color: rgba(255,255,255,0.1); }
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-charcoal);
}
.testimonial-card--featured .testimonial-name { color: #fff; }
.testimonial-context {
  font-size: var(--text-xs);
  color: var(--c-muted);
  letter-spacing: 0.03em;
}
.testimonial-card--featured .testimonial-context { color: rgba(255,255,255,0.5); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  padding-block: var(--sp-32);
  background: var(--c-base);
  border-top: 1px solid var(--c-rule);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--c-rule); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
  text-align: left;
  padding: var(--sp-6) var(--sp-8);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-charcoal);
  background: var(--c-card);
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-question:hover { background: var(--c-blush); color: var(--c-terracotta); }
.faq-question[aria-expanded="true"] { color: var(--c-terracotta); background: var(--c-blush); }
.faq-icon {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--c-terracotta);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: var(--sp-5) var(--sp-8) var(--sp-6);
  background: var(--c-card);
  border-top: 1px solid var(--c-rule);
}
.faq-answer p {
  font-size: var(--text-base);
  color: var(--c-mid);
  line-height: 1.75;
}
.faq-answer[hidden] { display: none; }

/* ── FINAL CTA ────────────────────────────────────────── */
.final-cta {
  padding-block: var(--sp-32);
  background: var(--c-charcoal);
  text-align: center;
}
.cta-inner { max-width: 640px; margin-inline: auto; }
.cta-eyebrow { color: var(--c-terracotta-light); }
.cta-headline {
  font-family: var(--f-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.cta-headline em {
  font-style: italic;
  color: var(--c-terracotta-light);
}
.cta-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
  max-width: 52ch;
  margin-inline: auto;
}
.btn-cta-primary {
  display: inline-flex;
  background: var(--c-terracotta);
  color: #fff;
  font-family: var(--f-body);
  font-size: var(--text-md);
  font-weight: 500;
  padding: var(--sp-5) var(--sp-12);
  border-radius: var(--r-md);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-cta-primary:hover {
  background: var(--c-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,120,90,0.35);
}
.cta-actions { margin-bottom: var(--sp-8); }
.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.cta-trust-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.cta-alt {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}
.cta-text-link {
  color: var(--c-terracotta-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-text-link:hover { color: #fff; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--c-charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-16) var(--sp-10);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer-logo .logo-mark { background: var(--c-terracotta); }
.footer-logo .logo-text { color: #fff; }
.footer-tagline {
  font-family: var(--f-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-4);
}
.footer-creds {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.footer-nav-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal-section,
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-section.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.18s; }
.reveal-item:nth-child(4) { transition-delay: 0.26s; }
.reveal-item:nth-child(5) { transition-delay: 0.32s; }
.reveal-item:nth-child(6) { transition-delay: 0.38s; }

/* Hero doesn't animate in — it's the first thing */
.hero { opacity: 1; transform: none; }

/* ── REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .who-card,
  .testimonial-card,
  .btn-primary { transition: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-split { grid-template-columns: 300px 1fr; gap: var(--sp-16); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
}

@media (max-width: 768px) {
  :root {
    --text-3xl: 2.25rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.25rem;
  }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    background: var(--c-base);
    border-left: 1px solid var(--c-rule);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-16) var(--sp-8);
    gap: var(--sp-2);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    box-shadow: -16px 0 48px rgba(28,28,30,0.1);
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link {
    font-size: var(--text-md);
    padding: var(--sp-3) 0;
    width: 100%;
  }
  .nav-link.nav-cta { display: inline-flex; width: auto; margin-top: var(--sp-4); }

  /* Mobile sticky CTA */
  .mobile-sticky-cta { display: block; }
  main { padding-bottom: 80px; }

  /* Hero */
  .hero { min-height: auto; padding-block: var(--sp-16) var(--sp-12); }
  .hero-content { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { order: -1; }
  .credential-badge { top: var(--sp-4); right: var(--sp-4); }
  .hero-stat-row { grid-template-columns: repeat(3, 1fr); }

  /* Sections */
  .who-grid { grid-template-columns: 1fr; }
  .outcomes-split { grid-template-columns: 1fr; gap: var(--sp-12); }
  .outcomes-left { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .cta-trust-row { gap: var(--sp-4); flex-direction: column; align-items: center; }
  .hiw-step { grid-template-columns: 48px 1fr; gap: var(--sp-5); }
  .step-number { width: 48px; height: 48px; font-size: var(--text-lg); }
  .hiw-connector { margin-left: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: 1fr 1fr 1fr; }
  .stat-num { font-size: var(--text-xl); }
  .stat-label { font-size: 10px; }
}
