/* ============================================================
   MADDOX NUTRITION — DESIGN SYSTEM v2
   NEW PALETTE: Warm cream · Deep plum · Blush rose · Sage · Gold
   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;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --cream-mid:   #F2EDE4;
  --cream-deep:  #E8DDD0;
  --plum:        #3D2645;
  --plum-light:  #5C3D6E;
  --plum-mid:    #7A5490;
  --rose:        #C47B8A;
  --rose-light:  #E8C4CC;
  --blush:       #F5E6E9;
  --sage:        #7A9E7E;
  --sage-light:  #B4CCAA;
  --sage-dark:   #4A6E50;
  --gold:        #C49A4A;
  --gold-light:  #DDB96E;
  --charcoal:    #1C1620;
  --warm-gray:   #6B6068;
  --divider:     rgba(61,38,69,0.1);

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

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  24px;
  --r-xl:  40px;

  --shadow-sm:  0 1px 3px rgba(28,22,32,0.06);
  --shadow-md:  0 4px 16px rgba(28,22,32,0.09);
  --shadow-lg:  0 12px 40px rgba(28,22,32,0.12);

  --nav-h: 72px;
  --section-gap: 100px;
  --content-max: 1160px;
  --content-narrow: 760px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── 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);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--plum);
}
.t-hero em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}
.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--plum);
}
.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--plum);
}
.t-body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-gray);
  font-weight: 400;
}
.t-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray);
}
.t-small {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--warm-gray);
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--content-narrow); }
.section { padding: var(--section-gap) 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.24s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 2px 12px rgba(61,38,69,0.28);
}
.btn--primary:hover {
  background: var(--plum-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,38,69,0.32);
}
.btn--secondary {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid rgba(61,38,69,0.25);
}
.btn--secondary:hover {
  border-color: var(--plum);
  background: rgba(61,38,69,0.04);
  transform: translateY(-1px);
}
.btn--rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 2px 12px rgba(196,123,138,0.3);
}
.btn--rose:hover { background: #b06478; transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 12px rgba(196,154,74,0.3);
}
.btn--gold:hover { background: #a8833b; transform: translateY(-1px); }
.btn--lg { padding: 17px 36px; font-size: 0.925rem; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--plum);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; fill: var(--gold-light); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1.1;
}
.nav__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.25s var(--ease-out);
}
.nav__links a:hover, .nav__links a.active { color: var(--plum); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--plum);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--rose); }
.nav__mobile .btn { margin-top: 8px; }
.nav__mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* ─── PAGE OFFSET ─────────────────────────────────────────── */
.page-content { padding-top: var(--nav-h); }

/* ═══════════════════════════════════════════════════════════
   HERO — EDITORIAL GRID (NEW)
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left panel — text */
.hero__left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
}
.hero__left::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,123,138,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  width: 32px; height: 1.5px;
  background: var(--rose);
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero__trust-item span {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 400;
}

/* Right panel — photo mosaic */
.hero__right {
  position: relative;
  background: var(--plum);
  overflow: hidden;
}
.hero__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.hero__mosaic-cell {
  overflow: hidden;
  position: relative;
}
.hero__mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.hero__mosaic-cell:hover img { transform: scale(1.04); }

/* Plum overlay on mosaic with quote */
.hero__mosaic-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(61,38,69,0.85) 0%, transparent 100%);
  padding: 40px 32px 32px;
  z-index: 2;
}
.hero__mosaic-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-bottom: 8px;
}
.hero__mosaic-attr {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* Gold accent badge */
.hero__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.hero__badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  opacity: 0.88;
}

/* ─── INSURANCE STRIP ─────────────────────────────────────── */
.insurance-strip {
  background: var(--plum);
  padding: 18px 0;
}
.insurance-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.insurance-strip__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.insurance-strip__divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.insurance-strip__logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.insurance-strip__logos span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.insurance-strip__highlight {
  font-size: 0.78rem;
  color: var(--rose-light);
  font-weight: 500;
  margin-left: 6px;
}

/* ─── SECTION HEADERS ─────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header .t-eyebrow { margin-bottom: 14px; }
.section-header .t-h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; }
.section-header--center p { margin: 0 auto; }

/* ─── WHO WE HELP ─────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.who-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all 0.28s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rose-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.who-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.who-card:hover::before { transform: scaleX(1); }
.who-card__icon { font-size: 1.6rem; margin-bottom: 18px; }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 10px;
}
.who-card p { font-size: 0.88rem; line-height: 1.65; color: var(--warm-gray); }

/* ─── SECTION BACKGROUNDS ─────────────────────────────────── */
.section--tinted { background: var(--blush); }
.section--plum { background: var(--plum); }

/* ─── CHALLENGES ──────────────────────────────────────────── */
.challenges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 20px;
  border: 1px solid var(--divider);
}
.challenge-item__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(196,123,138,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.challenge-item__check svg { width: 11px; height: 11px; stroke: var(--rose); fill: none; stroke-width: 2.5; }
.challenge-item p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.55; }

/* ─── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  padding: 40px 36px;
  transition: all 0.28s var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card--featured {
  background: var(--plum);
  border-color: transparent;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-card--featured .service-card__eyebrow { color: var(--gold-light); }
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card__features li { color: rgba(255,255,255,0.75); }
.service-card--featured .service-card__features li::before { background: var(--gold-light); }
.service-card__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card p { font-size: 0.9rem; line-height: 1.7; color: var(--warm-gray); margin-bottom: 20px; }
.service-card__features { margin-top: 4px; }
.service-card__features li {
  font-size: 0.875rem;
  color: var(--warm-gray);
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.service-card__features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rose);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: var(--rose-light);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--plum);
  transition: all 0.3s;
}
.step:hover .step__num { background: var(--plum); border-color: var(--plum); color: #fff; }
.step h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--plum); margin-bottom: 10px; }
.step p { font-size: 0.855rem; line-height: 1.65; color: var(--warm-gray); }

/* ─── WHAT TO EXPECT ──────────────────────────────────────── */
.expect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.expect-card {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--divider);
  background: #fff;
  transition: all 0.28s var(--ease-out);
}
.expect-card:hover { box-shadow: var(--shadow-md); }
.expect-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.expect-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(196,123,138,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.expect-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--plum); }
.expect-card p { font-size: 0.875rem; line-height: 1.7; color: var(--warm-gray); }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.section--testimonials { background: var(--plum); }
.section--testimonials .t-eyebrow { color: var(--gold-light); }
.section--testimonials .t-h2 { color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: background 0.25s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--gold-light); font-size: 0.85rem; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 300;
}
.testimonial-card cite { font-style: normal; font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item:first-child { border-top: 1px solid var(--divider); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; text-align: left;
  color: var(--plum); font-size: 0.95rem; font-weight: 500; line-height: 1.4;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--rose); }
.faq-trigger__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-trigger__icon svg { width: 10px; height: 10px; stroke: var(--rose); fill: none; stroke-width: 2.5; transition: transform 0.3s; }
.faq-item.open .faq-trigger__icon { background: var(--plum); border-color: var(--plum); }
.faq-item.open .faq-trigger__icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease-out); }
.faq-body-inner { padding: 0 0 22px; font-size: 0.9rem; line-height: 1.72; color: var(--warm-gray); }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(196,123,138,0.1);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(196,154,74,0.08);
}
.cta-section .t-eyebrow { color: var(--gold-light); margin-bottom: 16px; }
.cta-section .t-h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.02rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn--white { background: #fff; color: var(--plum); }
.btn--white:hover { background: var(--cream); transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn--outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.cta-trust { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-trust span { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.cta-trust span::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-mark {
  width: 34px; height: 34px; background: var(--plum); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer__logo-mark svg { width: 16px; height: 16px; fill: var(--gold-light); }
.footer__logo-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: #fff; }
.footer__brand p { font-size: 0.84rem; line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.footer__col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__col ul li a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 0.78rem; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer__cred { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer__cred span { font-size: 0.72rem; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; color: rgba(255,255,255,0.45); }

/* ─── MOBILE STICKY CTA ───────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--plum);
  padding: 14px 20px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(28,22,32,0.2);
}
.mobile-cta-bar .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 60%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--divider);
}
.page-hero .t-eyebrow { margin-bottom: 12px; }
.page-hero .t-h2 { max-width: 680px; margin-bottom: 14px; }
.page-hero p { max-width: 560px; font-size: 1rem; line-height: 1.7; color: var(--warm-gray); }

/* ─── TEAM GRID (ABOUT) ───────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: all 0.28s var(--ease-out);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--blush);
  position: relative;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__info { padding: 22px 20px; }
.team-card__info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--plum); margin-bottom: 3px; }
.team-card__cred { font-size: 0.72rem; font-weight: 600; color: var(--rose); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; line-height: 1.62; color: var(--warm-gray); }

/* Founder card (larger) */
.team-card--founder {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team-card--founder .team-card__photo { aspect-ratio: auto; }
.team-card--founder .team-card__info { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.team-card--founder h3 { font-size: 1.7rem; margin-bottom: 5px; }
.team-card--founder p { font-size: 0.9rem; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 32px 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--divider); }
.value-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--plum); margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; line-height: 1.65; color: var(--warm-gray); }

/* ─── TIMELINE (HOW IT WORKS) ─────────────────────────────── */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 31px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-light) 0%, var(--plum-mid) 100%);
}
.timeline-item { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: var(--plum);
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.timeline-item:hover .timeline-item__num { background: var(--plum); border-color: var(--plum); color: #fff; }
.timeline-item__content { flex: 1; padding-top: 14px; }
.timeline-item__content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--plum); margin-bottom: 10px; }
.timeline-item__content p { font-size: 0.9rem; line-height: 1.72; color: var(--warm-gray); }

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--plum); margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; line-height: 1.7; color: var(--warm-gray); margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(196,123,138,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item__text h4 { font-size: 0.78rem; font-weight: 600; color: var(--rose); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.contact-item__text p { font-size: 0.875rem; color: var(--charcoal); line-height: 1.5; }
.contact-form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 48px 44px;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--plum); letter-spacing: 0.04em; margin-bottom: 7px; text-transform: uppercase; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(61,38,69,0.12);
  border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--plum-mid);
  box-shadow: 0 0 0 3px rgba(61,38,69,0.08);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--warm-gray); margin-top: 12px; line-height: 1.5; }

/* ─── STAT ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--divider);
  border: 1px solid var(--divider); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 56px;
}
.stat-item { background: var(--cream); padding: 36px 28px; text-align: center; }
.stat-item .t-h2 { font-size: 2.5rem; color: var(--plum); margin-bottom: 6px; }
.stat-item p { font-size: 0.84rem; color: var(--warm-gray); }

/* ─── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.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; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 72px 32px 60px; }
  .hero__right { height: 480px; }
  .hero__mosaic { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--founder { grid-column: span 2; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-row::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__left { padding: 56px 24px 48px; }
  .hero__right { height: 380px; }
  .hero__mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
  .hero__badge { top: 16px; right: 16px; }
  .who-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card--founder { grid-column: span 2; grid-template-columns: 1fr; }
  .team-card--founder .team-card__photo { aspect-ratio: 3/2; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .nav__inner { padding: 0 20px; }
  .insurance-strip__inner { flex-direction: column; text-align: center; gap: 8px; }
  .insurance-strip__divider { display: none; }
}
