/* ============================================================================
   MAYFIELD HEALTH — Stylesheet
   Single-page site · vanilla CSS · no build step
   ----------------------------------------------------------------------------
   CONTENTS
   1.  Brand tokens (EDIT THESE to match the client's brand)
   2.  Design tokens (spacing, type, radius, shadow, motion)
   3.  Reset & base
   4.  Typography & helpers
   5.  Layout (container, section, eyebrow, headings)
   6.  Buttons
   7.  Header & navigation
   8.  Hero
   9.  Intro / stats
   10. Services
   11. Approach / features / steps
   12. Team
   13. Funding
   14. Locations
   15. FAQ / accordion
   16. Contact & form
   17. CTA band
   18. Footer
   19. Mobile action bar
   20. Animations & reduced motion
   21. Responsive
   ========================================================================== */

/* ============================================================================
   1. BRAND TOKENS  ▸▸ EDIT HERE TO MATCH THE BRAND ◂◂
   Swap these few values to re-skin the whole site. Keep contrast in mind:
   white text needs a reasonably dark --c-primary; dark text is used on the
   lighter accents. (Defaults below are a calm "coastal" palette.)
   ========================================================================== */
:root {
  /* Core brand */
  --c-primary:        #2C7A7B;   /* deep teal — main brand, primary buttons */
  --c-primary-dark:   #1F5859;   /* hover / deep sections */
  --c-primary-light:  #4FA3A4;   /* lighter teal accents */
  --c-primary-soft:   #DCEDED;   /* tinted backgrounds / placeholders */

  --c-accent:         #ED8B6B;   /* warm coral — highlights & accent CTA */
  --c-accent-dark:    #D9744F;   /* coral for large text / hovers */
  --c-accent-text:    #9E4A24;   /* deep terracotta — small accent text (AA ≥4.5 on light bg) */
  --c-accent-soft:    #FBE2D8;

  --c-sage:           #7FA98A;   /* supportive green */
  --c-sage-soft:      #E2EDE4;

  --c-gold:           #F2B441;   /* sunny highlight (sparingly) */

  /* Neutrals & surfaces */
  --c-ink:            #233634;   /* primary text */
  --c-ink-soft:       #4F635F;   /* secondary text (AA on white & surfaces) */
  --c-cream:          #FBF7F0;   /* page background */
  --c-surface:        #FFFFFF;   /* cards / raised surfaces */
  --c-sand:           #F4EDE2;   /* tinted section background */
  --c-line:           #E7E0D4;   /* hairline borders */
}

/* ============================================================================
   2. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Type families */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale (clamp: min, preferred, max) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   clamp(1.125rem, 0.5vw + 1rem, 1.25rem);
  --fs-lg:   clamp(1.25rem, 1vw + 1rem, 1.5rem);
  --fs-xl:   clamp(1.6rem, 2vw + 1rem, 2.1rem);
  --fs-2xl:  clamp(2rem, 3vw + 1rem, 2.9rem);
  --fs-3xl:  clamp(2.5rem, 5vw + 1rem, 4.1rem);

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

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

  /* Shadows (soft, warm) */
  --sh-sm: 0 1px 2px rgba(35, 54, 52, .06), 0 2px 6px rgba(35, 54, 52, .05);
  --sh-md: 0 6px 18px rgba(35, 54, 52, .08), 0 2px 6px rgba(35, 54, 52, .05);
  --sh-lg: 0 18px 50px rgba(35, 54, 52, .14), 0 6px 16px rgba(35, 54, 52, .06);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .35s;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --header-h: 76px;
}

/* ============================================================================
   3. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
svg { fill: currentColor; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }address { font-style: normal; }

/* ============================================================================
   4. TYPOGRAPHY & HELPERS
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

p { text-wrap: pretty; }
strong { font-weight: 600; }

.text-accent { color: var(--c-accent-dark); }
.lead { font-size: var(--fs-md); color: var(--c-ink-soft); }

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--c-primary); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Visible focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--c-primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.link {
  color: var(--c-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--dur) var(--ease);
}
.link:hover { color: var(--c-accent-dark); }
.link--light { color: #fff; text-decoration-color: rgba(255,255,255,.6); }
.link--light:hover { color: var(--c-accent-soft); }

/* ============================================================================
   5. LAYOUT
   ========================================================================== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.section--surface { background: var(--c-surface); }
.section--tint { background: var(--c-sand); }
.section--primary { background: var(--c-primary); color: #fff; }
.section--primary .section__title,
.section--primary h3 { color: #fff; }

.section__head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head--light { color: rgba(255,255,255,.92); }
.section__title { font-size: var(--fs-2xl); }
.section__intro { margin-top: var(--sp-4); color: var(--c-ink-soft); font-size: var(--fs-md); }
.section--primary .section__intro { color: rgba(255,255,255,.9); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--c-accent-text);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--c-accent);
}
.eyebrow--light { color: var(--c-accent-soft); }
.eyebrow--light::before { background: var(--c-accent-soft); }

/* Generic card */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cards { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }

/* media placeholder */
.media-card__ph {
  display: grid; place-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-sand));
  color: var(--c-ink-soft); position: relative; overflow: hidden;
}
.media-card__label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; opacity: .75;
}

.badge {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600;
  color: var(--c-primary-dark); background: var(--c-primary-soft);
  padding: .3rem .7rem; border-radius: var(--r-pill);
}

/* ============================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--c-primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: var(--fs-sm);
  padding: .8rem 1.4rem; border: 2px solid transparent; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease);
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn__icon { flex: none; }

.btn--primary { --btn-bg: var(--c-primary); }
.btn--primary:hover { background: var(--c-primary-dark); }

.btn--accent { --btn-bg: var(--c-accent); --btn-fg: #3a2118; }
.btn--accent:hover { background: var(--c-accent-dark); --btn-fg:#fff; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--c-primary-dark);
  border-color: var(--c-primary); box-shadow: none;
}
.btn--ghost:hover { background: var(--c-primary); --btn-fg: #fff; box-shadow: var(--sh-sm); }
.btn--on-dark { --btn-fg:#fff; border-color: rgba(255,255,255,.7); }
.btn--on-dark:hover { background:#fff; --btn-fg: var(--c-primary-dark); border-color:#fff; }

.btn--lg { padding: 1rem 1.8rem; font-size: var(--fs-base); }
.btn--sm { padding: .55rem 1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* ============================================================================
   7. HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--sh-sm); border-bottom-color: var(--c-line);
  background: rgba(251, 247, 240, .95);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { flex: none; display: grid; place-items: center; }
.brand__mark svg { border-radius: 50%; box-shadow: var(--sh-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.22rem;
  color: var(--c-ink); letter-spacing: -.01em;
}
.brand__tag { font-size: .72rem; color: var(--c-ink-soft); letter-spacing: .02em; }

.site-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.6rem); }
.nav-menu > li > a {
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-ink);
  padding: .4rem .2rem; position: relative; transition: color var(--dur) var(--ease);
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--c-accent); border-radius: 2px; transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav-menu > li > a:hover { color: var(--c-primary-dark); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.is-active::after { transform: scaleX(1); }
.nav-menu__cta a::after { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  border-radius: var(--r-sm); position: relative;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2.5px;
  background: var(--c-ink); border-radius: 3px; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================================
   8. HERO
   ========================================================================== */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__blob { position: absolute; opacity: .7; }
.hero__blob--1 { width: 60vw; max-width: 720px; top: -16%; right: -14%; }
.hero__blob--2 { width: 36vw; max-width: 380px; bottom: -10%; left: -10%; opacity: .6; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero__title { font-size: var(--fs-3xl); font-weight: 600; margin-bottom: var(--sp-4); }
.hero__lead { font-size: var(--fs-md); color: var(--c-ink-soft); max-width: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: var(--sp-6); }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: var(--sp-6);
  padding-top: var(--sp-5); border-top: 1px solid var(--c-line);
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-ink-soft);
}
.hero__trust svg { color: var(--c-primary); flex: none; }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.media-card--hero {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  rotate: 1.5deg; background: var(--c-surface); border: 6px solid #fff;
}
.media-card--hero .media-card__ph { aspect-ratio: 5/6; }
.hero__badge {
  position: absolute; bottom: -18px; left: -18px; rotate: -4deg;
  background: var(--c-surface); border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: .85rem 1.1rem; display: flex; align-items: center; gap: .65rem;
  border: 1px solid var(--c-line);
}
.hero__badge strong {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--c-accent-dark); line-height: 1;
}
.hero__badge span { font-size: var(--fs-xs); color: var(--c-ink-soft); line-height: 1.25; }

.wave { position: absolute; left: 0; right: 0; line-height: 0; }
.wave--bottom { bottom: -1px; }
.wave svg { width: 100%; height: clamp(40px, 6vw, 80px); }

/* ============================================================================
   9. INTRO / STATS
   ========================================================================== */
.intro__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro__text p + p { margin-top: var(--sp-4); }
.intro__text .lead { margin-bottom: var(--sp-4); color: var(--c-ink); }
.intro__stats { display: grid; gap: var(--sp-4); }
.stat {
  background: var(--c-cream); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 1.2rem 1.4rem; display: flex;
  align-items: baseline; gap: .9rem;
}
.stat__value {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--c-primary); flex: none; line-height: 1;
}
.stat__label { font-size: var(--fs-sm); color: var(--c-ink-soft); }

/* ============================================================================
   10. SERVICES
   ========================================================================== */
.cards--services { grid-template-columns: repeat(4, 1fr); }
.service-card { display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.service-card__icon {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: var(--r-md); margin-bottom: var(--sp-4); color: #fff;
  background: var(--c-primary);
}
.service-card__icon[data-tone="primary"] { background: var(--c-primary); }
.service-card__icon[data-tone="accent"]  { background: var(--c-accent);  color:#3a2118; }
.service-card__icon[data-tone="sage"]    { background: var(--c-sage); }
.service-card__icon[data-tone="gold"]    { background: var(--c-gold); color:#4a370c; }
.service-card__title { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.service-card__desc { color: var(--c-ink-soft); font-size: var(--fs-sm); }
.service-card__list { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px dashed var(--c-line); display: grid; gap: .5rem; }
.service-card__list li {
  position: relative; padding-left: 1.5rem; font-size: var(--fs-sm); color: var(--c-ink);
}
.service-card__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--c-accent);
}
.services__note { margin-top: var(--sp-6); text-align: center; color: var(--c-ink-soft); }

/* Who we help */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(.8rem, 2vw, 1.1rem);
}
.help-pill {
  display: flex; align-items: center; gap: .85rem;
  background: var(--c-cream); border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: .95rem 1.1rem;
  font-weight: 500; font-size: var(--fs-sm); color: var(--c-ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.help-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); border-color: var(--c-primary-light); }
.help-pill__ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary-dark);
}
.help__note { margin-top: var(--sp-6); text-align: center; color: var(--c-ink-soft); }

/* ============================================================================
   11. APPROACH / FEATURES / STEPS
   ========================================================================== */
.approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.features { display: grid; gap: var(--sp-5); }
.feature { display: flex; gap: 1rem; }
.feature__icon {
  flex: none; width: 48px; height: 48px; border-radius: var(--r-md);
  display: grid; place-items: center; background: var(--c-primary-soft); color: var(--c-primary-dark);
}
.feature h3 { font-size: var(--fs-md); margin-bottom: .25rem; }
.feature p { font-size: var(--fs-sm); color: var(--c-ink-soft); }

.steps-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--sh-md);
}
.steps-card__title { font-size: var(--fs-lg); margin-bottom: var(--sp-5); }
.steps { display: grid; gap: var(--sp-5); position: relative; }
.step { display: flex; gap: 1rem; position: relative; }
.step__num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 600; background: var(--c-accent); color: #3a2118; box-shadow: var(--sh-sm);
}
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: -18px; width: 2px;
  background: linear-gradient(var(--c-accent), var(--c-primary-soft));
}
.step h4 { font-size: var(--fs-md); margin-bottom: .15rem; }
.step p { font-size: var(--fs-sm); color: var(--c-ink-soft); }

/* ============================================================================
   12. TEAM
   ========================================================================== */
.cards--team { grid-template-columns: repeat(3, 1fr); }
.team-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-card__photo {
  width: 116px; height: 116px; border-radius: 50%; margin-bottom: var(--sp-4);
  border: 4px solid #fff; box-shadow: var(--sh-sm);
}
.team-card__name { font-size: var(--fs-md); }
.team-card__role { color: var(--c-accent-dark); font-weight: 600; font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.team-card__bio { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.team-card__cred { margin-top: auto; padding-top: var(--sp-4); }
.team__join { margin-top: var(--sp-6); text-align: center; color: var(--c-ink-soft); }

/* ============================================================================
   13. FUNDING
   ========================================================================== */
.cards--funding { grid-template-columns: repeat(3, 1fr); }
.funding-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(2px); }
.funding-card h3 { color: #fff; font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.funding-card p { color: rgba(255,255,255,.92); font-size: var(--fs-sm); }
.funding-card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--r-md);
  background: rgba(255,255,255,.16); color: #fff; margin-bottom: var(--sp-4);
}
.funding__note {
  display: flex; align-items: flex-start; gap: .5rem; margin-top: var(--sp-6);
  font-size: var(--fs-sm); color: rgba(255,255,255,.9);
}
.funding__note svg { flex: none; margin-top: .15rem; color: var(--c-accent-soft); }

/* ============================================================================
   14. LOCATIONS
   ========================================================================== */
.cards--locations { grid-template-columns: repeat(2, 1fr); }
.location-card { display: grid; grid-template-columns: 120px 1fr; gap: 1.25rem; align-items: stretch; padding: 0; overflow: hidden; }
.location-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.location-card__map { min-height: 100%; }
.location-card__body { padding: clamp(1.3rem,2.5vw,1.8rem) clamp(1.3rem,2.5vw,1.8rem) clamp(1.3rem,2.5vw,1.8rem) 0; }
.location-card h3 { font-size: var(--fs-lg); margin-bottom: .35rem; }
.location-card address { color: var(--c-ink-soft); margin-bottom: var(--sp-3); }
.location-card__meta dt { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--c-ink-soft); }
.location-card__meta dd { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.location-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ============================================================================
   15. FAQ / ACCORDION
   ========================================================================== */
.accordion { display: grid; gap: .8rem; }
.accordion__item { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; background: transparent; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); color: var(--c-ink);
}
.accordion__chev { flex: none; color: var(--c-primary); transition: transform var(--dur) var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__chev { transform: rotate(180deg); }
.accordion__panel { padding: 0 1.3rem 1.2rem; }
.accordion__panel p { color: var(--c-ink-soft); font-size: var(--fs-sm); }

/* ============================================================================
   16. CONTACT & FORM
   ========================================================================== */
.contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__methods { display: grid; gap: var(--sp-4); margin: var(--sp-6) 0; }
.contact__methods li { display: flex; align-items: center; gap: .9rem; }
.contact__ic {
  flex: none; width: 48px; height: 48px; border-radius: var(--r-md);
  display: grid; place-items: center; background: var(--c-primary-soft); color: var(--c-primary-dark);
}
.contact__label { display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--c-ink-soft); }
.contact__value { font-weight: 600; font-size: var(--fs-md); color: var(--c-ink); transition: color var(--dur) var(--ease); }
a.contact__value:hover { color: var(--c-primary-dark); }
.contact__locations { display: grid; gap: var(--sp-3); padding-top: var(--sp-5); border-top: 1px solid var(--c-line); }
.contact__locations p { font-size: var(--fs-sm); color: var(--c-ink-soft); }

.contact__form-wrap {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--sh-md);
}
.contact-form__title { font-size: var(--fs-lg); }
.contact-form__sub { font-size: var(--fs-sm); color: var(--c-ink-soft); margin-bottom: var(--sp-5); }
.field { display: grid; gap: .35rem; margin-bottom: var(--sp-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm); background: var(--c-cream); color: var(--c-ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--invalid input, .field--invalid textarea { border-color: var(--c-accent-dark); }
.field--hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.contact-form__status { margin-top: var(--sp-3); font-size: var(--fs-sm); font-weight: 600; min-height: 1.2em; }
.contact-form__status.is-ok { color: var(--c-primary-dark); }
.contact-form__status.is-err { color: var(--c-accent-dark); }
.contact-form__privacy { margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--c-ink-soft); }

/* ============================================================================
   17. CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  color: #fff; text-align: center; padding-block: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta-band::before { width: 320px; height: 320px; top: -120px; left: -80px; }
.cta-band::after { width: 240px; height: 240px; bottom: -120px; right: -60px; background: rgba(237,139,107,.18); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: var(--fs-2xl); }
.cta-band p { color: rgba(255,255,255,.92); font-size: var(--fs-md); margin-top: var(--sp-3); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: var(--sp-6); }

/* ============================================================================
   18. FOOTER
   ========================================================================== */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: var(--sp-7);
}
.brand--footer .brand__name { color: #fff; }
.site-footer__blurb { margin: var(--sp-4) 0; font-size: var(--fs-sm); max-width: 30ch; }
.site-footer__h { font-family: var(--font-body); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: var(--sp-4); }
.site-footer__col ul { display: grid; gap: .6rem; }
.site-footer__col a, .site-footer__contact a { font-size: var(--fs-sm); transition: color var(--dur) var(--ease); }
.site-footer__col a:hover, .site-footer__contact a:hover { color: var(--c-accent); }
.site-footer__address { font-size: var(--fs-sm); line-height: 1.6; margin-bottom: var(--sp-4); }
.site-footer__contact a { color: #fff; font-weight: 500; }

.social { display: flex; gap: .6rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social a:hover { background: var(--c-accent); transform: translateY(-2px); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center;
}
.site-footer__ack { font-size: var(--fs-xs); color: rgba(255,255,255,.6); max-width: 60ch; }
.site-footer__legal { font-size: var(--fs-xs); color: rgba(255,255,255,.6); }
.site-footer__legal a { color: rgba(255,255,255,.78); }
.site-footer__legal a:hover { color: var(--c-accent); }
.site-footer__sep { opacity: .5; margin-inline: .3rem; }

/* ============================================================================
   19. MOBILE ACTION BAR
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; gap: .6rem; padding: .5rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border: 1px solid var(--c-line); border-radius: var(--r-pill); box-shadow: var(--sh-lg);
  transform: translateY(150%); transition: transform var(--dur) var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem; border-radius: var(--r-pill); font-weight: 600; font-size: var(--fs-sm);
}
.mobile-bar__btn--call { background: var(--c-primary-soft); color: var(--c-primary-dark); }
.mobile-bar__btn--book { background: var(--c-primary); color: #fff; }

/* ============================================================================
   19b. LEGAL / LONG-FORM SUBPAGES (e.g. privacy.html)
   ========================================================================== */
.subpage-header { border-bottom: 1px solid var(--c-line); background: var(--c-surface); position: sticky; top: 0; z-index: 100; }
.subpage-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.prose { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.prose h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.prose__meta { color: var(--c-ink-soft); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.prose h2 { font-size: var(--fs-lg); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose p { color: var(--c-ink-soft); margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: var(--sp-4); display: grid; gap: .45rem; }
.prose li { color: var(--c-ink-soft); }
.prose a { color: var(--c-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--c-accent-text); }
.prose__note { background: var(--c-sand); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1rem 1.2rem; }
.prose__note p { color: var(--c-ink); margin-bottom: 0; }
.subpage-foot { border-top: 1px solid var(--c-line); padding-block: var(--sp-5); color: var(--c-ink-soft); font-size: var(--fs-sm); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.subpage-foot a { color: var(--c-primary-dark); }

/* ============================================================================
   20. ANIMATIONS & REDUCED MOTION
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================================
   21. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cards--services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  :root { --header-h: 66px; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-cream); border-bottom: 1px solid var(--c-line);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--sh-md);
    transform: translateY(-130%); transition: transform var(--dur) var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu > li { border-bottom: 1px solid var(--c-line); }
  .nav-menu > li > a { display: block; padding: .9rem .2rem; font-size: var(--fs-md); }
  .nav-menu > li > a::after { display: none; }
  .nav-menu__cta { border-bottom: 0; margin-top: var(--sp-4); }
  .nav-menu__cta a { width: 100%; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 340px; }
  .hero__lead { max-width: none; }
  .intro__inner,
  .approach__grid,
  .contact__inner { grid-template-columns: 1fr; }
  .cards--funding, .cards--locations { grid-template-columns: 1fr; }
  .cards--team { grid-template-columns: repeat(2, 1fr); }

  .mobile-bar { display: flex; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards--services { grid-template-columns: 1fr; }
  .cards--team { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn,
  .cta-band__actions .btn { width: 100%; }
  .location-card { grid-template-columns: 1fr; }
  .location-card__map { min-height: 120px; }
  .location-card__body { padding: 0 1.3rem 1.5rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
