/* ============================================================
   AM NUTRITION SERVICES — DESIGN SYSTEM
   Omniux-inspired modern healthcare UI
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@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&family=DM+Mono:wght@400&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0f1117;
  --ink-80:     #2a2d35;
  --ink-40:     #767b88;
  --ink-20:     #bbbfc8;
  --fog:        #f5f6f8;
  --white:      #ffffff;
  --sage:       #4a6741;
  --sage-light: #6b9462;
  --sage-pale:  #e8f0e7;
  --gold:       #c9a84c;
  --gold-pale:  #f7f1e3;
  --error:      #c0392b;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

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

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

  /* Layout */
  --max-w:       1280px;
  --max-w-prose: 720px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --duration:  0.55s;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(15,17,23,0.08), 0 1px 2px rgba(15,17,23,0.04);
  --shadow-md: 0 4px 16px rgba(15,17,23,0.10), 0 2px 6px rgba(15,17,23,0.06);
  --shadow-lg: 0 16px 48px rgba(15,17,23,0.12), 0 4px 16px rgba(15,17,23,0.08);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Utility ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--space-6); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Typography Helpers ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(74,103,65,0.25);
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,103,65,0.32);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-20);
}
.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: var(--text-md); }
.btn-sm { padding: 10px 20px; font-size: var(--text-xs); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,17,23,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--ink-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav.hero-nav .nav-logo-primary,
.nav.hero-nav .nav-logo-sub { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-80);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--sage); }
.nav-links a.active::after { width: 100%; }

.nav.hero-nav .nav-links a { color: rgba(255,255,255,0.85); }
.nav.hero-nav .nav-links a:hover { color: var(--white); }
.nav.hero-nav .nav-links a::after { background: var(--white); }

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav.hero-nav .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--sage); }
.nav-mobile .mobile-cta { margin-top: var(--space-4); }

/* ── Sticky Mobile CTA bar ────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid rgba(15,17,23,0.08);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 20px rgba(15,17,23,0.08);
}
.sticky-cta-inner { display: flex; gap: var(--space-3); align-items: center; }
.sticky-cta .btn { flex: 1; justify-content: center; }
.sticky-cta .btn-call { flex: 0; padding: 14px 18px; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74,103,65,0.85) 0%, rgba(15,17,23,0.75) 60%),
    url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1800&q=80') center/cover no-repeat;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: var(--space-32);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, var(--text-6xl));
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}
.hero-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero-trust-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-top: 2px;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── Section Shared ───────────────────────────────────────── */
.section { padding-block: var(--space-24); }
.section-alt { background: var(--fog); }
.section-dark { background: var(--ink); color: var(--white); }
.section-sage { background: var(--sage-pale); }
.section-gold { background: var(--gold-pale); }

.section-header { margin-bottom: var(--space-16); }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-dark .section-title { color: var(--white); }
.section-title em { font-style: italic; color: var(--sage); }
.section-dark .section-title em { color: var(--gold); }

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ink-40);
  line-height: 1.7;
  max-width: var(--max-w-prose);
  margin-top: var(--space-4);
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }
.centered .section-subtitle { margin-inline: auto; }

/* ── Who We Help Grid ─────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.who-card {
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.who-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.who-card-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.who-card-icon svg { width: 22px; height: 22px; color: var(--sage); }
.who-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.who-card p {
  font-size: var(--text-sm);
  color: var(--ink-40);
  line-height: 1.65;
}

/* ── Challenges Section ───────────────────────────────────── */
.challenges-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.challenges-visual {
  position: relative;
}
.challenges-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.challenges-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.challenges-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.challenges-badge-icon svg { width: 18px; height: 18px; color: var(--sage); }
.challenges-badge-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.challenges-badge-text span {
  font-size: var(--text-xs);
  color: var(--ink-40);
}
.challenges-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.challenge-item:hover { border-color: var(--sage); }
.challenge-check {
  width: 20px;
  height: 20px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.challenge-check svg { width: 10px; height: 10px; color: var(--sage); }
.challenge-item h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.challenge-item p {
  font-size: var(--text-sm);
  color: var(--ink-40);
  line-height: 1.55;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-20);
  margin-bottom: var(--space-6);
  display: block;
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background 0.2s;
}
.service-card:hover .service-card-icon { background: var(--sage); }
.service-card-icon svg { width: 26px; height: 26px; color: var(--sage); transition: color 0.2s; }
.service-card:hover .service-card-icon svg { color: var(--white); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--ink-40);
  line-height: 1.7;
  flex: 1;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ── How It Works ─────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-pale) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 0 0 0 8px var(--white), 0 0 0 9px rgba(74,103,65,0.15);
  transition: all 0.3s;
}
.process-step:hover .process-step-num {
  background: var(--sage-light);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--ink-40);
  line-height: 1.65;
}

/* ── Results / Testimonials ───────────────────────────────── */
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
  margin-bottom: var(--space-20);
}
.result-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: background 0.2s;
}
.result-stat:hover { background: rgba(255,255,255,0.08); }
.result-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.result-stat-num span { color: var(--gold); }
.result-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.testimonial-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: var(--space-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}
.testimonial-detail {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

/* ── Meet Team ────────────────────────────────────────────── */
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.team-image-wrap {
  position: relative;
}
.team-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.team-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.team-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1;
}
.team-badge-label {
  font-size: var(--text-xs);
  opacity: 0.8;
  margin-top: 2px;
}
.team-content p {
  font-size: var(--text-lg);
  color: var(--ink-40);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}
.team-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink-40);
}
.credential-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(15,17,23,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sage); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--ink-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--ink-40); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--sage); border-color: var(--sage); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  font-size: var(--text-md);
  color: var(--ink-40);
  line-height: 1.75;
  padding-bottom: var(--space-6);
}

/* ── Final CTA Section ────────────────────────────────────── */
.cta-section {
  background: var(--sage);
  padding-block: var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::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='%23ffffff' fill-opacity='0.04'%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");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
}
.cta-section p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto var(--space-10);
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-5);
  display: block;
}

/* ── Insurance Banner ─────────────────────────────────────── */
.insurance-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-block: var(--space-4);
}
.insurance-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  flex-wrap: wrap;
}
.insurance-bar svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.insurance-bar p {
  font-size: var(--text-sm);
  color: var(--ink-80);
  font-weight: 400;
}
.insurance-bar strong { font-weight: 600; color: var(--ink); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding-top: 140px;
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,103,65,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.6); }
.page-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-top: var(--space-4);
  line-height: 1.7;
}

/* ── About Page ───────────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}
.story-content p {
  font-size: var(--text-lg);
  color: var(--ink-40);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}
.story-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.value-card {
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.07);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}
.value-card:hover { border-color: var(--sage); box-shadow: var(--shadow-md); }
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.value-icon svg { width: 20px; height: 20px; color: var(--sage); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.value-card p { font-size: var(--text-sm); color: var(--ink-40); line-height: 1.65; }

/* ── Services Page ────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: var(--space-6); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.07);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-out);
}
.service-row:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.service-row-icon {
  width: 64px;
  height: 64px;
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.service-row:hover .service-row-icon { background: var(--sage); }
.service-row-icon svg { width: 30px; height: 30px; color: var(--sage); transition: color 0.2s; }
.service-row:hover .service-row-icon svg { color: var(--white); }
.service-row h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.service-row p { font-size: var(--text-sm); color: var(--ink-40); line-height: 1.7; max-width: 600px; }
.service-row .tag-list { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ── Results Page ─────────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.outcome-card {
  padding: var(--space-8);
  background: var(--fog);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,17,23,0.06);
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.outcome-card p { font-size: var(--text-sm); color: var(--ink-40); line-height: 1.65; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.contact-info > p {
  font-size: var(--text-md);
  color: var(--ink-40);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--sage); }
.contact-detail-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-detail-text span { font-size: var(--text-sm); color: var(--ink-40); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(15,17,23,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(15,17,23,0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,103,65,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: var(--text-xs); color: var(--ink-20); margin-top: var(--space-3); line-height: 1.6; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
}
.form-success svg { width: 48px; height: 48px; color: var(--sage); margin-inline: auto; margin-bottom: var(--space-4); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.form-success p { font-size: var(--text-sm); color: var(--ink-40); }

/* ── Hours card ───────────────────────────────────────────── */
.hours-card {
  background: var(--fog);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-top: var(--space-8);
}
.hours-card h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--ink-40);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(15,17,23,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--ink); font-weight: 500; }

/* ── Locations Grid ───────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.location-card {
  background: var(--fog);
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.2s;
}
.location-card:hover { border-color: var(--sage); }
.location-card h4 {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.location-card p { font-size: var(--text-sm); color: var(--ink-40); line-height: 1.6; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.footer-brand-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-6);
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
}
.footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social:hover { background: var(--sage); }
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,0.7); }
.footer-col h5 {
  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(--space-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.25); }
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Scroll Reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-10); }
  .process-steps::before { display: none; }
  .team-intro { grid-template-columns: 1fr; }
  .team-image-wrap { max-width: 400px; }
  .story-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .challenges-layout { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: auto 1fr; }
  .service-row .btn { display: none; }
}

@media (max-width: 768px) {
  :root {
    --space-24: 4rem;
    --space-20: 3rem;
    --space-16: 2.5rem;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .who-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-trust { gap: var(--space-4); }
  .hero-trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-icon { width: 48px; height: 48px; }
}
