/* =========================================================================
   Brantford Breastfeeding Clinic — Design System
   Soft, warm, mobile-first. Sage + blush + cream.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surfaces */
  --cream:        #FCFAF6;
  --cream-2:      #F6F0E8;
  --cream-3:      #EFE6DA;
  --white:        #FFFFFF;

  /* Sage — primary */
  --sage-900:     #26382C;
  --sage-800:     #33503C;
  --sage-700:     #456450;
  --sage-600:     #587B64;
  --sage-400:     #90AC98;
  --sage-200:     #D2E0D6;
  --sage-100:     #E6EFE8;
  --sage-50:      #F2F7F3;

  /* Blush — secondary warmth */
  --blush-700:    #B0765F;
  --blush-500:    #D69C83;
  --blush-300:    #EFC9B7;
  --blush-100:    #FAE9E0;
  --blush-50:     #FDF5F1;

  /* Clay — urgent / attention (warm, never alarming red) */
  --clay-700:     #9C5B41;
  --clay-100:     #FBEDE4;

  /* Ink */
  --ink:          #2E3330;
  --ink-2:        #4B534E;
  --ink-3:        #6E7772;
  --line:         #E7E0D5;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radii — soft, organic */
  --r-xs:   10px;
  --r-sm:   16px;
  --r-md:   24px;
  --r-lg:   32px;
  --r-xl:   44px;
  --r-pill: 999px;

  /* Shadows — diffuse and warm, never hard */
  --sh-sm: 0 2px 8px rgba(46, 51, 48, .04), 0 1px 2px rgba(46, 51, 48, .03);
  --sh-md: 0 6px 24px rgba(46, 51, 48, .06), 0 2px 6px rgba(46, 51, 48, .03);
  --sh-lg: 0 18px 48px rgba(46, 51, 48, .09), 0 4px 12px rgba(46, 51, 48, .04);

  /* Layout */
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --gutter: 20px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 768px) { :root { --gutter: 32px; } }

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;      /* 17px — kind to tired eyes */
  line-height: 1.7;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage-900);
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 40;
}

h1 { font-size: clamp(2.1rem, 7.2vw, 3.9rem); line-height: 1.1; }
h2 { font-size: clamp(1.65rem, 4.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.45rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; }

p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sage-700); text-decoration-color: var(--sage-200); text-underline-offset: .22em; }
a:hover { color: var(--sage-900); text-decoration-color: currentColor; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

strong { font-weight: 600; color: var(--sage-900); }

:focus-visible {
  outline: 3px solid var(--sage-600);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--blush-300); color: var(--sage-900); }

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.25rem, 9vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 6vw, 4rem); }
.section--cream  { background: var(--cream-2); }
.section--sage   { background: var(--sage-50); }
.section--blush  { background: var(--blush-50); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-2); font-size: 1.075rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: .85rem;
}

.lede { font-size: clamp(1.075rem, 2.4vw, 1.24rem); color: var(--ink-2); line-height: 1.65; }

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  background: var(--sage-800); color: #fff;
  padding: .75rem 1.4rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 999; font-weight: 600; text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

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

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: 1.02rem; font-weight: 600; line-height: 1.2;
  padding: 1.02rem 1.85rem;
  min-height: 56px;                  /* generous one-handed tap target */
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sage-700); color: #fff;
  box-shadow: 0 6px 18px rgba(69, 100, 80, .26);
}
.btn--primary:hover { background: var(--sage-800); color: #fff; box-shadow: 0 10px 26px rgba(69, 100, 80, .32); }

.btn--secondary {
  background: var(--white); color: var(--sage-800);
  border-color: var(--sage-200);
  box-shadow: var(--sh-sm);
}
.btn--secondary:hover { background: var(--sage-50); color: var(--sage-900); border-color: var(--sage-400); }

.btn--clay {
  background: var(--blush-500); color: #4A2A1D;
  box-shadow: 0 6px 18px rgba(176, 118, 95, .24);
}
.btn--clay:hover { background: var(--blush-700); color: #fff; }

.btn--ghost { background: transparent; color: var(--sage-800); border-color: var(--sage-200); }
.btn--ghost:hover { background: var(--sage-50); color: var(--sage-900); }

.btn--sm { min-height: 46px; padding: .68rem 1.25rem; font-size: .92rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
@media (max-width: 479px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}

.btn .ico { width: 20px; height: 20px; flex: none; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--sage-700);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- 5. Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 246, .88);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.06rem;
  color: var(--sage-900); letter-spacing: -.01em;
}
.brand__sub {
  font-size: .69rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage-600);
}

.nav__links { display: none; }
.nav__cta   { display: none; }

@media (min-width: 1000px) {
  .nav__links {
    display: flex; align-items: center; gap: .15rem;
    list-style: none; margin: 0; padding: 0;
  }
  .nav__links a {
    display: block; padding: .55rem .85rem;
    font-size: .95rem; font-weight: 500; color: var(--ink-2);
    text-decoration: none; border-radius: var(--r-pill);
    transition: background-color .16s var(--ease), color .16s var(--ease);
  }
  .nav__links a:hover { background: var(--sage-100); color: var(--sage-900); }
  .nav__links a[aria-current="page"] { color: var(--sage-800); background: var(--sage-100); font-weight: 600; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none !important; }
}

.nav__toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1.5px solid var(--sage-200);
  border-radius: var(--r-pill);
  padding: .58rem .95rem .58rem 1.05rem;
  min-height: 46px;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  color: var(--sage-800); cursor: pointer;
}
.nav__toggle-bars { display: block; width: 18px; height: 12px; position: relative; }
.nav__toggle-bars span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--sage-700); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .18s var(--ease);
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 5px; }
.nav__toggle-bars span:nth-child(3) { top: 10px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  padding: 1.25rem var(--gutter) 2rem;
  overflow-y: auto;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1000px) { .mobile-menu { display: none; } }

.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.mobile-menu__close {
  background: var(--white); border: 1.5px solid var(--sage-200);
  border-radius: var(--r-pill); width: 46px; height: 46px;
  display: grid; place-items: center; cursor: pointer; color: var(--sage-800);
}
.mobile-menu__list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.mobile-menu__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem .25rem;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--sage-900); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__list a[aria-current="page"] { color: var(--sage-600); }
.mobile-menu__list a svg { width: 18px; height: 18px; color: var(--sage-400); }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .75rem; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 10vw, 6.5rem) clamp(3.5rem, 10vw, 6rem);
  background:
    radial-gradient(120% 90% at 78% 8%,  var(--blush-100) 0%, rgba(250,233,224,0) 58%),
    radial-gradient(100% 80% at 8% 92%,  var(--sage-100) 0%, rgba(230,239,232,0) 60%),
    var(--cream);
}
/* organic blobs */
.hero__blob {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(.5px); opacity: .55;
}
.hero__blob--1 { width: 46vw; max-width: 520px; top: -14%; right: -10%; color: var(--blush-300); }
.hero__blob--2 { width: 38vw; max-width: 420px; bottom: -22%; left: -14%; color: var(--sage-200); }

.hero__inner { position: relative; z-index: 1; }
.hero__grid { display: grid; gap: clamp(2.25rem, 6vw, 4rem); align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.08fr .92fr; } }

.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic; color: var(--sage-600);
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 60;
}
.hero__lede { max-width: 34rem; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 1.5rem; }

.hero__reassure {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  list-style: none; margin: 0; padding: 0;
}
.hero__reassure li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--sage-200);
  border-radius: var(--r-pill);
  padding: .45rem .95rem;
  font-size: .87rem; font-weight: 500; color: var(--sage-800);
  margin: 0;
}
.hero__reassure svg { width: 15px; height: 15px; color: var(--sage-600); flex: none; }

/* Hero side card */
.hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.1rem);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.9);
}
.hero__card h2 { font-size: 1.28rem; margin-bottom: .25rem; }
.hero__card > p { font-size: .95rem; color: var(--ink-3); margin-bottom: 1.35rem; }

.mini-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .1rem; }
.mini-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .8rem 0; margin: 0;
  border-bottom: 1px solid var(--cream-3);
}
.mini-list li:last-child { border-bottom: 0; }
.mini-list__num {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage-100); color: var(--sage-800);
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; margin-top: 1px;
}
.mini-list__body { font-size: .95rem; line-height: 1.55; color: var(--ink-2); }
.mini-list__body b { display: block; color: var(--sage-900); font-weight: 600; }

/* ---------- 7. Immediate-access bar ---------- */
.access {
  background: var(--sage-800);
  color: #E9F0EA;
  padding-block: clamp(2.25rem, 6vw, 3.25rem);
  position: relative;
}
.access h2 { color: #fff; font-size: clamp(1.4rem, 3.4vw, 1.85rem); margin-bottom: .3em; }
.access .eyebrow { color: var(--sage-200); }
.access p { color: #C9D8CD; }
.access a { color: #fff; }

.access__grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .access__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .access__grid { grid-template-columns: repeat(3, 1fr); } }

.access-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--r-md);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex; flex-direction: column;
}
.access-card__head { display: flex; align-items: center; gap: .65rem; margin-bottom: .9rem; }
.access-card__head svg { width: 20px; height: 20px; color: var(--blush-300); flex: none; }
.access-card__head h3 { color: #fff; font-size: 1.12rem; margin: 0; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

.access-card dl { margin: 0; display: grid; gap: .55rem; }
.access-card dt {
  font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage-200);
}
.access-card dd { margin: 0 0 .35rem; font-size: .97rem; color: #EAF1EB; line-height: 1.5; }
.access-card dd a { text-decoration-color: rgba(255,255,255,.35); word-break: break-word; }
.access-card dd a:hover { text-decoration-color: #fff; }

.access-card__actions { margin-top: auto; padding-top: 1.15rem; display: flex; flex-wrap: wrap; gap: .55rem; }
.access-card__actions .btn {
  background: rgba(255,255,255,.95); color: var(--sage-800);
  border-color: transparent; box-shadow: none;
}
.access-card__actions .btn:hover { background: #fff; color: var(--sage-900); }

/* Urgent card variant */
.access-card--urgent {
  background: var(--clay-100);
  border-color: var(--blush-300);
}
.access-card--urgent .access-card__head h3 { color: var(--clay-700); }
.access-card--urgent .access-card__head svg { color: var(--clay-700); }
.access-card--urgent p,
.access-card--urgent li { color: #4A342B; }
.access-card--urgent a { color: var(--clay-700); }
.access-card--urgent ul { margin: 0; padding-left: 1.1em; font-size: .94rem; line-height: 1.55; }

/* ---------- 8. Cards & grids ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card h3 { margin-bottom: .45rem; }
.card p  { color: var(--ink-2); font-size: .975rem; margin-bottom: 0; }
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--sage-200); color: inherit; }

.card__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--sage-100); color: var(--sage-700);
  display: grid; place-items: center;
  margin-bottom: 1.05rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--blush { background: var(--blush-100); color: var(--blush-700); }

.card__tag {
  display: inline-block; margin-bottom: .7rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage-600); background: var(--sage-50);
  border-radius: var(--r-pill); padding: .3rem .7rem;
}

/* Feature list inside cards */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.check-list li {
  display: flex; gap: .65rem; align-items: flex-start;
  margin: 0; font-size: .975rem; color: var(--ink-2); line-height: 1.5;
}
.check-list svg { width: 19px; height: 19px; flex: none; color: var(--sage-600); margin-top: .18rem; }

/* ---------- 9. Forms hub ---------- */
/* Tabs are hidden until JS enhances them, so that with JS disabled every
   panel simply renders in full rather than being stranded behind a dead button. */
.tabs {
  display: inline-flex; gap: .3rem; padding: .32rem;
  background: var(--sage-100); border-radius: var(--r-pill);
  margin-bottom: 2rem; max-width: 100%; flex-wrap: wrap;
}
.tabs[hidden] { display: none; }
.tabs button {
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  padding: .72rem 1.4rem; min-height: 48px;
  border: 0; border-radius: var(--r-pill);
  background: transparent; color: var(--sage-700);
  cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.tabs button:hover { color: var(--sage-900); }
.tabs button[aria-selected="true"] {
  background: var(--white); color: var(--sage-900); box-shadow: var(--sh-sm);
}

.tab-panel[hidden] { display: none; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.35rem, 3vw, 1.75rem);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.form-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--sage-200); }
.form-card__step {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blush-700); margin-bottom: .8rem;
}
.form-card__step::before {
  content: ""; width: 22px; height: 2px; background: var(--blush-300); border-radius: 2px;
}
.form-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.form-card p { font-size: .95rem; color: var(--ink-2); margin-bottom: 1.3rem; }
.form-card .btn { margin-top: auto; }

.callout {
  display: flex; gap: 1rem;
  background: var(--blush-50);
  border: 1px solid var(--blush-300);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
}
.callout svg { width: 22px; height: 22px; color: var(--blush-700); flex: none; margin-top: .22rem; }
.callout p { font-size: .96rem; color: #4A342B; margin-bottom: 0; }
.callout strong { color: var(--clay-700); }
.callout--sage { background: var(--sage-50); border-color: var(--sage-200); }
.callout--sage svg { color: var(--sage-600); }
.callout--sage p { color: var(--ink-2); }
.callout--sage strong { color: var(--sage-800); }

/* ---------- 10. Video / resource cards ---------- */
.video-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(4, 1fr); } }

.video-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--sage-200); color: inherit; }

.video-card__media { position: relative; aspect-ratio: 16 / 11; background: var(--cream-3); overflow: hidden; }
.video-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.video-card:hover .video-card__media img { transform: scale(1.04); }
.video-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(38,56,44,.35), rgba(38,56,44,.05) 55%);
}
.video-card__play span {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(38,56,44,.22);
  transition: transform .2s var(--ease);
}
.video-card:hover .video-card__play span { transform: scale(1.08); }
.video-card__play svg { width: 18px; height: 18px; color: var(--sage-800); margin-left: 2px; }

.video-card__body { padding: .95rem 1.05rem 1.1rem; }
.video-card__body h3 {
  font-family: var(--sans); font-size: .98rem; font-weight: 600;
  color: var(--sage-900); letter-spacing: 0; line-height: 1.35; margin: 0 0 .25rem;
}
.video-card__body p { font-size: .84rem; color: var(--ink-3); margin: 0; }

/* Link list */
.link-list { display: grid; gap: .7rem; }
.link-list a {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 1.05rem 1.25rem;
  min-height: 62px;
  text-decoration: none; color: var(--sage-900);
  box-shadow: var(--sh-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.link-list a:hover { transform: translateX(3px); box-shadow: var(--sh-md); border-color: var(--sage-200); }
.link-list__icon {
  width: 38px; height: 38px; flex: none; border-radius: var(--r-xs);
  background: var(--sage-100); color: var(--sage-700);
  display: grid; place-items: center;
}
.link-list__icon svg { width: 19px; height: 19px; }
.link-list__text { flex: 1 1 auto; min-width: 0; }
.link-list__text b { display: block; font-weight: 600; font-size: 1rem; line-height: 1.35; }
.link-list__text span { display: block; font-size: .85rem; color: var(--ink-3); line-height: 1.4; }
.link-list__go { flex: none; width: 18px; height: 18px; color: var(--sage-400); }

/* ---------- 11. Location cards ---------- */
.loc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.15rem);
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column;
}
.loc-card__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  align-self: flex-start;
  background: var(--sage-100); color: var(--sage-800);
  border-radius: var(--r-pill); padding: .38rem .9rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.loc-card__badge svg { width: 14px; height: 14px; }
.loc-card h3 { font-size: clamp(1.4rem, 3vw, 1.7rem); margin-bottom: .2rem; }
.loc-card__addr { color: var(--ink-2); font-size: .98rem; margin-bottom: 1.35rem; }

.detail-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .9rem; }
.detail-list li { display: flex; gap: .85rem; align-items: flex-start; margin: 0; }
.detail-list svg { width: 19px; height: 19px; flex: none; color: var(--sage-600); margin-top: .28rem; }
.detail-list b { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .1rem; }
.detail-list a, .detail-list span { font-size: 1rem; color: var(--sage-900); word-break: break-word; }
.detail-list a { font-weight: 600; }

.loc-card__actions { margin-top: auto; display: grid; gap: .6rem; }
@media (min-width: 480px) { .loc-card__actions { grid-template-columns: 1fr 1fr; } }

/* ---------- 11b. Map embed ---------- */
.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  aspect-ratio: 16 / 11;
  background: var(--cream-3);
  margin-top: 1.25rem;
}
@media (min-width: 620px) { .map-embed { aspect-ratio: 16 / 9; } }
.map-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(.82) contrast(.97);
}

/* ---------- 11c. FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  min-height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1.01rem; color: var(--sage-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2px solid var(--sage-600);
  border-bottom: 2px solid var(--sage-600);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq details[open] summary { color: var(--sage-700); }
.faq__body { padding: 0 1.35rem 1.3rem; }
.faq__body p { font-size: .97rem; color: var(--ink-2); }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- 12. About / prose ---------- */
.prose { max-width: 40rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose blockquote {
  margin: 2rem 0; padding: 1.35rem 1.6rem;
  background: var(--blush-50);
  border-left: 3px solid var(--blush-300);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.prose blockquote p {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  color: var(--sage-800); margin: 0; line-height: 1.55;
}

.person {
  display: flex; gap: 1.15rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--sh-sm);
}
.person__avatar {
  width: 58px; height: 58px; flex: none; border-radius: 50%;
  background: var(--sage-100); color: var(--sage-700);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
}
.person h3 { font-size: 1.15rem; margin-bottom: .1rem; }
.person__role {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--sage-600); margin-bottom: .7rem;
}
.person p { font-size: .96rem; color: var(--ink-2); margin-bottom: 0; }

/* Stats / facts strip */
.facts { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.35rem 1.4rem; text-align: center;
}
.fact b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--sage-700); line-height: 1.1; margin-bottom: .3rem;
}
.fact span { font-size: .88rem; color: var(--ink-3); line-height: 1.4; display: block; }

/* ---------- 13. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 6vw, 3.5rem);
  background:
    radial-gradient(90% 120% at 88% 0%, var(--blush-100) 0%, rgba(250,233,224,0) 62%),
    var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 46rem; }
.page-hero h1 { font-size: clamp(1.95rem, 5.6vw, 3.1rem); margin-bottom: .3em; }
.page-hero p { color: var(--ink-2); font-size: clamp(1.02rem, 2.2vw, 1.16rem); margin-bottom: 0; }

.breadcrumb {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  list-style: none; margin: 0 0 1.1rem; padding: 0;
  font-size: .85rem; color: var(--ink-3);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--sage-700); text-decoration: underline; }
.breadcrumb svg { width: 13px; height: 13px; color: var(--sage-400); }

/* ---------- 14. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sage-800) 0%, var(--sage-700) 62%, var(--sage-600) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 6vw, 3.75rem);
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,201,183,.28) 0%, rgba(239,201,183,0) 68%);
  top: -30%; right: -8%; pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 40rem; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: .45em; }
.cta-band p { color: #CFDDD3; margin-bottom: 1.9rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--primary { background: #fff; color: var(--sage-800); }
.cta-band .btn--primary:hover { background: var(--blush-100); color: var(--sage-900); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- 15. Footer ---------- */
.site-footer {
  background: var(--sage-900);
  color: #B9C9BE;
  padding-block: clamp(2.75rem, 7vw, 4rem) 2rem;
  margin-top: 0;
}
.site-footer a { color: #DCE7DF; text-decoration-color: rgba(220,231,223,.3); }
.site-footer a:hover { color: #fff; text-decoration-color: #fff; }

.footer__grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub  { color: var(--sage-400); }
.footer__brand p { font-size: .93rem; margin-top: 1rem; max-width: 26rem; color: #A8BBAE; }

.footer__col h4 {
  color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__col li { margin: 0; font-size: .93rem; line-height: 1.5; }
.footer__col address { font-style: normal; font-size: .93rem; line-height: 1.6; }

.footer__bottom {
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .84rem; color: #8FA495;
}
.footer__disclaimer {
  margin-top: 1.5rem; font-size: .82rem; color: #8FA495;
  line-height: 1.6; max-width: 62rem;
}

/* ---------- 16. Mobile sticky action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(252, 250, 246, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { min-height: 50px; padding: .7rem 1rem; font-size: .93rem; }
@media (min-width: 1000px) { .mobile-bar { display: none; } }
@media (max-width: 999px) { body { padding-bottom: 76px; } }

/* ---------- 17. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- 18. Print ---------- */
@media print {
  .site-header, .mobile-bar, .mobile-menu, .cta-band, .hero__blob { display: none !important; }
  body { background: #fff; padding-bottom: 0; font-size: 11pt; }
  .card, .form-card, .loc-card { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
