/* ============================================================
   Executive Health by Wendy — Design System
   Premium longevity / executive-health aesthetic
   Evergreen + Champagne gold + Cream | Fraunces / Inter
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --evergreen-900: #0B2A25;
  --evergreen-800: #0F3B34;
  --evergreen-700: #13534A;
  --teal-600: #0F766E;
  --teal-500: #14857A;

  --gold-600: #A87C32;
  --gold-500: #C2A05A;
  --gold-400: #D4B679;
  --gold-300: #E7D6AC;

  --cream-50: #FBF9F4;
  --cream-100: #F4EFE5;
  --sand-200: #EAE1D1;
  --sand-300: #DCD0BA;

  --ink-900: #16231F;
  --ink-700: #2C3A35;
  --ink-600: #46534D;
  --ink-400: #7C877F;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream-50);
  --surface: var(--white);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --primary: var(--evergreen-800);
  --primary-hover: var(--evergreen-900);
  --accent: var(--gold-500);
  --accent-strong: var(--gold-600);
  --line: rgba(22, 35, 31, 0.10);
  --line-strong: rgba(22, 35, 31, 0.18);
  --ring: rgba(15, 118, 110, 0.45);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (4/8) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-8: 3rem;    --sp-10: 4rem;
  --sp-12: 5rem;    --sp-16: 7rem;   --sp-20: 9rem;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(11, 42, 37, 0.06), 0 2px 6px rgba(11, 42, 37, 0.05);
  --shadow-md: 0 6px 18px rgba(11, 42, 37, 0.08), 0 2px 6px rgba(11, 42, 37, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 42, 37, 0.14), 0 8px 20px rgba(11, 42, 37, 0.08);

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --nav-h: 76px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1rem; max-width: 68ch; }
.lead { font-size: clamp(1.12rem, 1.8vw, 1.32rem); color: var(--text-muted); line-height: 1.6; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.serif-accent { font-style: italic; color: var(--accent-strong); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem; border-radius: var(--r-pill);
  border: 1px solid transparent; min-height: 50px;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--accent); color: var(--evergreen-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--primary); background: rgba(15,59,52,0.04); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--cream-50); border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; min-height: 56px; }
.btn:active { transform: translateY(0); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.center .btn-row { justify-content: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--accent-strong);
  transition: gap var(--dur-fast) var(--ease-out);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover { gap: 0.7rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(11,42,37,0.05);
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--text); letter-spacing: -0.01em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); line-height: 1; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 0.3rem; }
.nav__links a {
  padding: 0.55rem 0.9rem; border-radius: var(--r-pill); font-weight: 500; font-size: 0.95rem; color: var(--ink-700);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__links a:hover { color: var(--primary); background: rgba(15,59,52,0.05); }
.nav__links a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 0.7rem; }

/* Language toggle */
.lang {
  display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--r-pill); overflow: hidden; background: var(--surface);
}
.lang button {
  border: 0; background: transparent; padding: 0.4rem 0.7rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-600); transition: background var(--dur-fast), color var(--dur-fast); min-height: 36px;
}
.lang button[aria-pressed="true"] { background: var(--primary); color: var(--cream-50); }

/* Mobile nav */
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-md); border: 1px solid var(--line-strong); background: var(--surface); align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }
@media (max-width: 1000px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
}
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99; background: var(--cream-50);
  padding: 2rem clamp(1.25rem,5vw,2.5rem); transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  display: flex; flex-direction: column; gap: 0.4rem; overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { padding: 1rem 0.5rem; font-family: var(--font-display); font-size: 1.5rem; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem;
  background: radial-gradient(120% 90% at 80% 0%, #14463D 0%, var(--evergreen-900) 55%, #081F1B 100%);
  color: var(--cream-50); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--cream-50); max-width: 16ch; }
.hero .lead { color: rgba(247,244,238,0.82); max-width: 52ch; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero__inner { max-width: 720px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14); }
.hero__stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--gold-400); line-height: 1; }
.hero__stat .lbl { font-size: 0.82rem; color: rgba(247,244,238,0.7); margin-top: 0.4rem; max-width: 22ch; }
.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(247,244,238,0.6); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(var(--gold-400), transparent); animation: cueline 2.4s var(--ease-in-out) infinite; transform-origin: top; }
@keyframes cueline { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sand-300); }
.card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md); display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--evergreen-800), var(--teal-600)); color: var(--gold-300); margin-bottom: 1.2rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.98rem; }
.card .step-no { font-family: var(--font-display); font-size: 0.95rem; color: var(--accent-strong); font-weight: 600; }

/* Pillar cards (linked) */
.pillar {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sand-300); }
.pillar__art { height: 168px; position: relative; overflow: hidden; }
.pillar__art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pillar__body { padding: 1.5rem clamp(1.4rem, 2.2vw, 1.9rem) 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pillar__body h3 { margin: 0; }
.pillar__body p { color: var(--text-muted); font-size: 0.96rem; margin: 0; flex: 1; }
.pillar__num { position: absolute; top: 1rem; left: 1.1rem; z-index: 2; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--evergreen-900); background: rgba(255,255,255,0.85); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }

/* ---------- Process / timeline ---------- */
.steps { counter-reset: step; display: grid; gap: 1.1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; }
.step__no {
  counter-increment: step; width: 52px; height: 52px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.15rem; color: var(--cream-50);
  background: var(--evergreen-800); position: relative;
}
.step__no::after { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 0.3rem; }
.step p { margin: 0; color: var(--text-muted); }

/* ---------- Feature list ---------- */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; }
.checklist .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(15,118,110,0.12); color: var(--teal-600); display: grid; place-items: center; margin-top: 2px; }
.checklist .tick svg { width: 15px; height: 15px; }
.checklist b { font-weight: 600; }
.checklist span.muted { color: var(--text-muted); }

/* ---------- Sections variants ---------- */
.bg-cream-100 { background: var(--cream-100); }
.bg-sand { background: linear-gradient(180deg, var(--cream-50), var(--cream-100)); }
.bg-dark { background: radial-gradient(120% 120% at 50% 0%, var(--evergreen-800), var(--evergreen-900)); color: var(--cream-50); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--cream-50); }
.bg-dark .lead, .bg-dark p { color: rgba(247,244,238,0.8); }
.bg-dark .eyebrow { color: var(--gold-400); }
.bg-dark .eyebrow::before { background: var(--gold-400); }

/* ---------- Quote / About ---------- */
.quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.28; font-weight: 400; letter-spacing: -0.01em; }
.quote .serif-accent { font-style: italic; }
.about__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--evergreen-700), var(--evergreen-900));
}
.about__badge {
  position: absolute; bottom: 14px; right: 14px; background: rgba(251,249,244,0.95); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 0.7rem 1rem; box-shadow: var(--shadow-md); max-width: 220px;
  display: flex; align-items: center; gap: 0.65rem; backdrop-filter: blur(4px);
}
.about__badge .num { font-family: var(--font-display); font-size: 1.35rem; color: var(--accent-strong); line-height: 1; white-space: nowrap; }
.about__badge .lbl { font-size: 0.78rem; color: var(--text-muted); line-height: 1.25; }

/* avatar monogram */
.avatar-mono { width: 100%; height: 100%; display: grid; place-items: center; color: var(--gold-300); }
.avatar-mono span { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); opacity: 0.9; }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 720px){ .statband { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; } }
.statband .num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); color: var(--gold-400); line-height: 1; }
.statband .lbl { font-size: 0.86rem; color: rgba(247,244,238,0.74); margin-top: 0.5rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 0.3rem 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0.2rem 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.3rem); color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform var(--dur) var(--ease-out), background var(--dur); }
.faq summary .ico svg { width: 16px; height: 16px; }
.faq details[open] summary .ico { transform: rotate(45deg); background: var(--primary); color: var(--cream-50); border-color: var(--primary); }
.faq .answer { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease-in-out); }
.faq details[open] .answer { max-height: 480px; }
.faq .answer p { padding: 0 0 1.3rem; color: var(--text-muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 5rem); text-align: center;
  background: radial-gradient(120% 130% at 50% 0%, var(--evergreen-700), var(--evergreen-900)); color: var(--cream-50); }
.cta-band h2 { color: var(--cream-50); }
.cta-band p { color: rgba(247,244,238,0.82); margin-inline: auto; }
.cta-band__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; gap: 1.2rem; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before { content: attr(data-badge); position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--evergreen-900); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--r-pill); white-space: nowrap; }
.price { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--text); }
.price small { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Booking / Contact ---------- */
.embed-frame {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-md); min-height: 600px;
}
.embed-frame iframe { width: 100%; min-height: 600px; border: 0; display: block; }
.embed-placeholder {
  min-height: 560px; display: grid; place-items: center; text-align: center; padding: 2.5rem;
  background: repeating-linear-gradient(135deg, var(--cream-100), var(--cream-100) 14px, var(--cream-50) 14px, var(--cream-50) 28px);
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg); color: var(--text-muted);
}
.embed-placeholder .ph-ico { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: var(--r-md); background: var(--surface); display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--primary); }
.embed-placeholder code { background: var(--surface); padding: 0.15rem 0.5rem; border-radius: 6px; border: 1px solid var(--line); font-size: 0.85em; }

.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field .req { color: var(--accent-strong); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 0.85rem 1rem; border-radius: var(--r-md); border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--text); min-height: 50px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 4px var(--ring); }
.field .help { font-size: 0.82rem; color: var(--text-muted); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }

/* contact info list */
.contact-list { display: grid; gap: 1.4rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact-list .ci { width: 46px; height: 46px; flex: none; border-radius: var(--r-md); background: rgba(15,118,110,0.1); color: var(--teal-600); display: grid; place-items: center; }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .k { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.contact-list .v { font-weight: 600; font-size: 1.05rem; }

/* tabs */
.tabs { display: inline-flex; background: var(--cream-100); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px; gap: 4px; }
.tabs button { border: 0; background: transparent; padding: 0.6rem 1.3rem; border-radius: var(--r-pill); font-weight: 600; font-size: 0.95rem; color: var(--text-muted); transition: background var(--dur-fast), color var(--dur-fast); min-height: 44px; }
.tabs button[aria-selected="true"] { background: var(--surface); color: var(--primary); box-shadow: var(--shadow-sm); }
.tabpanel[hidden] { display: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding-top: calc(var(--nav-h) + clamp(3rem,7vw,5.5rem)); padding-bottom: clamp(3rem,7vw,5rem); overflow: hidden;
  background: radial-gradient(120% 120% at 85% 0%, #14463D, var(--evergreen-900)); color: var(--cream-50); }
.page-hero h1 { color: var(--cream-50); max-width: 18ch; }
.page-hero .lead { color: rgba(247,244,238,0.82); max-width: 56ch; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.8; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: rgba(247,244,238,0.65); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* ---------- Footer ---------- */
.footer { background: var(--evergreen-900); color: rgba(247,244,238,0.72); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer a { color: rgba(247,244,238,0.72); transition: color var(--dur-fast); }
.footer a:hover { color: var(--gold-400); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 820px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.1rem; }
.footer .brand { color: var(--cream-50); margin-bottom: 1rem; }
.footer__links { display: grid; gap: 0.6rem; }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.84rem; color: rgba(247,244,238,0.5); }

/* ---------- Misc ---------- */
.pill-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem; border-radius: var(--r-pill); background: rgba(15,118,110,0.1); color: var(--teal-600); }
.partner-row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem,4vw,3.5rem); justify-content: center; opacity: 0.75; }
.partner-row span { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink-600); letter-spacing: 0.02em; }
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--accent); }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: clamp(40px, 12vw, 120px); background: var(--line-strong); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="left"] { transform: translateX(-30px); }
[data-reveal][data-reveal="right"] { transform: translateX(30px); }
[data-reveal].in[data-reveal="left"], [data-reveal].in[data-reveal="right"] { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){ transition-delay: 0.05s; }
[data-stagger].in > *:nth-child(2){ transition-delay: 0.13s; }
[data-stagger].in > *:nth-child(3){ transition-delay: 0.21s; }
[data-stagger].in > *:nth-child(4){ transition-delay: 0.29s; }
[data-stagger].in > *:nth-child(5){ transition-delay: 0.37s; }
[data-stagger].in > *:nth-child(6){ transition-delay: 0.45s; }

/* subtle float for organic blobs */
.float-slow { animation: floaty 14s var(--ease-in-out) infinite; transform-origin: center; }
.float-slower { animation: floaty 20s var(--ease-in-out) infinite reverse; transform-origin: center; }
@keyframes floaty { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(2%, -3%) scale(1.04); } }
.spin-slow { animation: spin 60s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* utilities */
.mt-2{margin-top:var(--sp-2);} .mt-4{margin-top:var(--sp-4);} .mt-6{margin-top:var(--sp-6);} .mt-8{margin-top:var(--sp-8);}
.mb-0{margin-bottom:0;} .max-60{max-width:60ch;} .max-52{max-width:52ch;}
.text-muted{color:var(--text-muted);}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
