/* =========================================================
   The Haven — homepage redesign prototype
   Palette: taken from the official logo — sage green, near-black
   wordmark, white ground. Greens are all derived from the logo's
   #92a894 foliage so the page reads as one brand family.
   ========================================================= */

:root {
  /* colour */
  --ink:        #171b19;   /* logo wordmark black */
  --ink-soft:   #47534c;
  --muted:      #74807a;
  --pine:       #3b5548;   /* deepened logo green */
  --pine-deep:  #2b3f35;
  --sage:       #92a894;   /* logo green */
  --sage-pale:  #d7e0d6;
  --sand:       #edf0ea;
  --sand-deep:  #e1e7de;
  --cream:      #fafbf8;
  --clay:       #5c7d64;   /* mid green — accent / hover */
  --clay-deep:  #4a6853;
  --line:       rgba(23, 27, 25, 0.12);

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

  /* layout */
  --shell: 1100px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 8rem);

  --radius: 4px;
  --radius-lg: 10px;

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

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
blockquote { margin: 0; }
dl, dd { margin: 0; }

.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: 1rem; top: -100%; z-index: 200;
  background: var(--pine); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =========================================================
   Typography
   ========================================================= */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.eyebrow--light { color: rgba(250, 251, 248, .62); }

.section-kicker {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pine);
}

.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-intro {
  margin-top: 1rem;
  max-width: 48ch;
  font-size: 1.075rem;
  color: var(--ink-soft);
}

.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.1vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.statement--sm { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.statement em { font-style: italic; color: var(--pine); }

.body-lg { font-size: 1.06rem; color: var(--ink-soft); max-width: 54ch; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--pine);
  border-bottom: 1px solid rgba(59, 85, 72, .28);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link i { font-style: normal; transition: transform .3s var(--ease); }
.text-link:hover { color: var(--clay); border-color: var(--clay); }
.text-link:hover i { transform: translateX(3px); }

/* Links inside running copy — inherit size and weight, underline only */
.link-inline {
  color: var(--pine);
  border-bottom: 1px solid rgba(59, 85, 72, .32);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-inline:hover { color: var(--clay); border-color: var(--clay); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--pine); color: var(--cream); }
.btn-primary:hover { background: var(--pine-deep); }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--pine); background: rgba(59, 85, 72, .05); }

/* Light CTA for use on the dark green donate band */
.btn-clay { background: var(--sage); color: var(--ink); }
.btn-clay:hover { background: var(--sage-pale); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Near-black, echoing the logo wordmark — keeps Donate distinct from
   the pine primary buttons now that the palette is all greens */
.btn-donate { background: var(--ink); color: var(--cream); padding: .62rem 1.35rem; font-size: .88rem; }
.btn-donate:hover { background: var(--pine); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 248, .72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(250, 251, 248, .93);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: .8rem; }
.brand-logo { height: 56px; width: auto; }

/* Photograph layered over a CSS placeholder frame */
.v-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.brand-mark {
  width: 30px; height: 30px; flex: none;
  border-radius: 50% 50% 50% 6px;
  background: radial-gradient(circle at 32% 28%, var(--sage) 0%, var(--pine) 62%, var(--pine-deep) 100%);
  box-shadow: inset 0 0 0 3px rgba(250, 251, 248, .18);
}
.brand-mark--lg { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; letter-spacing: -0.02em; }
.brand-sub {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-top: .2rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.9rem; }
.nav-link {
  position: relative;
  font-size: .93rem;
  color: var(--ink-soft);
  padding-block: .3rem;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--pine);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer; padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block; width: 17px; height: 1.5px;
  background: var(--ink); margin: 3px auto;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.orb-a {
  width: 46vw; height: 46vw; min-width: 340px; min-height: 340px;
  top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(146, 168, 148, .55), rgba(146, 168, 148, 0) 70%);
}
.orb-b {
  width: 34vw; height: 34vw; min-width: 260px; min-height: 260px;
  top: 34%; left: -14%;
  background: radial-gradient(circle, rgba(92, 125, 100, .3), rgba(92, 125, 100, 0) 70%);
}
.orb-c {
  width: 40vw; height: 40vw; min-width: 300px; min-height: 300px;
  bottom: -22%; left: 34%;
  background: radial-gradient(circle, rgba(225, 231, 222, .9), rgba(225, 231, 222, 0) 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title {
  margin-top: 1.4rem;
  font-size: clamp(2.6rem, 6.4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--pine); }
.hero-tagline {
  margin-top: 1.4rem;
  max-width: 30ch;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--pine);
}
.lede { margin-top: 1.6rem; max-width: 54ch; font-size: 1.1rem; color: var(--ink-soft); }
.hero-tagline + .lede { margin-top: 1.1rem; font-size: 1.02rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-strip {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.hero-strip li { display: flex; flex-direction: column; gap: .35rem; }
.hero-strip strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--pine); }
.hero-strip span { font-size: .92rem; color: var(--muted); }

/* ---------- CSS-only visual placeholders ---------- */
.visual-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 22px 60px -34px rgba(23, 27, 25, .55);
}
.v-layer { position: absolute; inset: 0; }

.visual-frame--hero { aspect-ratio: 4 / 5; border-radius: 200px 200px var(--radius-lg) var(--radius-lg); }

/* Hero frame holding the logo — contained, not cropped, so the wordmark
   stays legible and the arch reads as a mat around it. */
.visual-frame--logo { display: grid; place-items: center; }
.v-logo {
  position: relative;
  z-index: 1;
  width: min(78%, 340px);
  height: auto;
  mix-blend-mode: multiply;
}
.v-sky { background: linear-gradient(175deg, #eef2ea 0%, #f7f8f4 42%, #e6ece4 100%); }
.v-hill-back { background: radial-gradient(120% 78% at 22% 106%, var(--sage) 0%, rgba(146, 168, 148,0) 62%); }
.v-hill-front { background: radial-gradient(130% 68% at 78% 112%, var(--pine) 0%, rgba(59, 85, 72,0) 60%); }
.v-sun { background: radial-gradient(circle at 62% 26%, rgba(215, 226, 214, .95) 0 7%, rgba(215,226,214,0) 30%); }
.hero-visual { margin: 0; }
.visual-note {
  margin-top: .7rem; font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); text-align: center;
}

/* =========================================================
   Sections + split layout
   ========================================================= */
.section { padding-block: var(--section-y); }

.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.split-label { display: flex; align-items: center; gap: 1rem; padding-top: .55rem; }
.rule { display: block; width: 34px; height: 1px; background: var(--sage); flex: none; }

.section--why { border-top: 1px solid var(--line); }
.section--why .split-body > * + * { margin-top: 1.6rem; }

.section-head { max-width: 48ch; }

/* =========================================================
   The need — stat
   ========================================================= */
.section--need { padding-top: 0; }
.need-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--sand);
  border-radius: var(--radius-lg);
}
/* The lead statement spans both columns; the statistic and the response
   sit beneath it as supporting evidence. */
.need-lead {
  grid-column: 1 / -1;
  margin-bottom: clamp(.5rem, 2vw, 1.25rem);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--pine-deep);
  text-wrap: balance;
  max-width: 32ch;
}
.stat-inline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.28em;
  letter-spacing: -0.02em;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.need-response {
  padding: 1.4rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.need-response-label {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pine);
}
.need-response p {
  margin-top: .9rem;
  font-size: .97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.need-copy > * + * { margin-top: 1.2rem; }

/* =========================================================
   Mission + pillars
   ========================================================= */
.section--mission { background: var(--sand); border-block: 1px solid var(--sand-deep); }

.pillars {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.pillar { padding-top: 1.5rem; border-top: 1px solid rgba(23, 27, 25, .16); }
.pillar-num { font-family: var(--serif); font-size: .82rem; letter-spacing: .12em; color: var(--clay); }
.pillar h3 { margin-top: .7rem; font-size: 1.5rem; }
.pillar p { margin-top: .7rem; font-size: .98rem; color: var(--ink-soft); }

/* =========================================================
   History + founder
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.story-title { margin-top: 1rem; font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.story-copy { margin-top: 1.2rem; color: var(--ink-soft); }

.pull-quote {
  margin-top: 1.6rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--sage);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--pine);
}
.story-caption {
  margin-top: 1.6rem;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.story--founder {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--sand);
  border-radius: var(--radius-lg);
}
.belief-list { margin-top: 1.5rem; display: grid; gap: .7rem; }
.belief-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .98rem;
  color: var(--ink-soft);
}
.belief-list li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clay);
}
.signature { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.sig-name { display: block; font-family: var(--serif); font-size: 1.2rem; }
.sig-role { display: block; margin-top: .2rem; font-size: .85rem; color: var(--muted); }

/* =========================================================
   Team
   ========================================================= */
.section--team { background: var(--sand); border-block: 1px solid var(--sand-deep); }
.team-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.member { display: flex; flex-direction: column; }
.avatar {
  position: relative;
  overflow: hidden;
  width: 88px; height: 88px;
  border-radius: 50% 50% 50% 8px;
  margin-bottom: 1rem;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--sage) 0%, var(--pine) 100%);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.avatar::after { content: attr(data-initials); }
/* Headshot covers the monogram; the gradient + initials stay as the
   fallback if a portrait is ever missing. */
.avatar img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.member:nth-child(4n+2) .avatar { background: linear-gradient(145deg, var(--sage) 0%, var(--clay-deep) 100%); }
.member:nth-child(4n+3) .avatar { background: linear-gradient(145deg, var(--sage-pale) 0%, var(--sage) 100%); color: var(--pine-deep); }
.member h3 { font-size: 1.15rem; }
.member-role { margin-top: .4rem; font-size: .88rem; color: var(--pine); }
.member-creds { margin-top: .5rem; font-size: .8rem; line-height: 1.5; color: var(--muted); }

.member--cta {
  justify-content: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.member--cta h3 { font-size: 1.15rem; }
.member--cta p { margin-top: .5rem; font-size: .88rem; color: var(--ink-soft); }
.member--cta .text-link { margin-top: 1rem; align-self: flex-start; }

/* =========================================================
   Services — cards
   ========================================================= */
/* Lead-in CTA above the card grid */
.promo {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.4rem, 3vw, 1.9rem) clamp(1.5rem, 3vw, 2.1rem);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.promo:hover { background: var(--sand-deep); border-color: var(--sage); }
.promo-body { display: block; }
.promo-tag {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.promo-title {
  display: block;
  margin-top: .5rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.25;
  color: var(--pine);
}
.promo-cue {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  font-size: .9rem;
  font-weight: 500;
  color: var(--pine);
  border-bottom: 1px solid rgba(59, 85, 72, .28);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.promo-cue i { font-style: normal; transition: transform .3s var(--ease); }
.promo:hover .promo-cue { color: var(--clay); border-color: var(--clay); }
.promo:hover .promo-cue i { transform: translateX(3px); }

.cards {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--cream);
  transition: background-color .3s var(--ease);
}
.card:hover { background: #fff; }
.card-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
}
.card-title { margin-top: .9rem; font-size: 1.35rem; line-height: 1.18; }
.card-copy { margin-top: .9rem; font-size: .95rem; color: var(--ink-soft); }
.card-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.card-meta li {
  padding: .3rem .75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .76rem;
  color: var(--muted);
}
.card-meta li.is-new {
  border-color: rgba(92, 125, 100, .38);
  color: var(--clay-deep);
  background: rgba(92, 125, 100, .09);
}
.card .text-link { margin-top: auto; padding-top: 1.5rem; align-self: flex-start; }

.card--accent { background: var(--sand); grid-column: span 2; }
.card--accent:hover { background: var(--sand); }
.therapists {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem 1.5rem;
}
.therapists li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(23, 27, 25, .1);
}
.therapists strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.therapists span { font-size: .75rem; color: var(--muted); }

/* =========================================================
   Our Therapists
   ========================================================= */
.section--therapists { background: var(--sand); }
.section-head--centred { text-align: center; }
.section-head--centred .section-intro { margin-inline: auto; }

.therapist-grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.therapist {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* Photo slot doubles as the placeholder — if the img fails to load and
   removes itself, this gradient is what remains. */
.therapist-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--sage) 100%);
}
.therapist-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}
.therapist-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
}
.therapist-body h3 {
  font-size: 1.28rem;
  font-style: italic;
  color: var(--pine);
}
.therapist-creds {
  margin-top: .25rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.therapist-bio {
  margin-top: .9rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.therapist .link-inline { margin-top: 1rem; align-self: flex-start; font-size: .92rem; }
.btn-book {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  border-radius: var(--radius);
  letter-spacing: .08em;
}
.btn-book { margin-top: 1.4rem; }
.btn-book i { font-style: normal; transition: transform .3s var(--ease); }
.btn-book:hover i { transform: translateX(4px); }

/* =========================================================
   Featured block (Lunch n' Learn)
   ========================================================= */
.feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius-lg);
}
.feature-title { margin-top: 1rem; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); line-height: 1.06; }
.feature-title em { font-style: italic; color: var(--sage); }
.feature-copy { margin-top: 1.2rem; max-width: 44ch; color: rgba(250, 251, 248, .78); }
.feature-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-block: 1.4rem;
  border-block: 1px solid rgba(250, 251, 248, .16);
}
.feature-meta dt {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(250, 251, 248, .5);
}
.feature-meta dd { margin-top: .35rem; font-family: var(--serif); font-size: 1.05rem; color: var(--cream); }
.feature-note { margin-top: 1.2rem; font-size: .85rem; color: rgba(250, 251, 248, .55); max-width: 42ch; }
.feature-body .btn { margin-top: 1.8rem; }

.visual-frame--lunch { aspect-ratio: 1 / 1; border-radius: 50%; }
.v-warm { background: linear-gradient(150deg, #eef2ec 0%, #dbe4da 48%, #c6d4c6 100%); }
.v-arc { position: absolute; border-radius: 50%; border: 1px solid rgba(59, 85, 72, .22); }
.a1 { inset: 12%; }
.a2 { inset: 26%; border-color: rgba(92, 125, 100, .38); }
.a3 { inset: 40%; border: none; background: radial-gradient(circle at 40% 36%, var(--sage), var(--pine)); }

/* =========================================================
   Events archive
   ========================================================= */
.archive { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.archive-item {
  display: grid;
  grid-template-columns: 90px 1fr 120px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
}
.archive-item:last-child { border-bottom: 1px solid var(--line); }
.archive-year {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.archive-body h3 { font-size: 1.35rem; }
.archive-body p { margin-top: .5rem; font-size: .94rem; color: var(--ink-soft); max-width: 56ch; }

.archive-visual { justify-self: end; }
.chip-visual {
  display: block;
  position: relative;
  overflow: hidden;
  width: 110px; height: 68px;
  border-radius: 6px;
  box-shadow: 0 10px 26px -18px rgba(23, 27, 25, .7);
}
.chip-golf {
  background:
    radial-gradient(120% 70% at 50% 128%, var(--sage) 0%, rgba(146, 168, 148,0) 62%),
    linear-gradient(168deg, #3b5548 0%, #24352c 100%);
}
.chip-gala {
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(146, 168, 148, .85) 0%, rgba(146,168,148,0) 60%),
    linear-gradient(150deg, #46554a 0%, #1f2a23 100%);
}
.chip-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Reading progress
   ========================================================= */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 120;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--sage) 0%, var(--pine) 100%);
  pointer-events: none;
}

/* =========================================================
   Image fade-in
   ========================================================= */
img { opacity: 0; transition: opacity .6s var(--ease); }
img.is-loaded { opacity: 1; }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgba(23, 27, 25, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox-figure {
  margin: 0;
  max-width: min(900px, 100%);
  transform: scale(.97);
  transition: transform .25s var(--ease);
}
.lightbox.is-open .lightbox-figure { transform: none; }
.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: .88rem;
  color: rgba(250, 251, 248, .78);
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(250, 251, 248, .3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.lightbox-close:hover { background: rgba(250, 251, 248, .14); border-color: var(--cream); }

/* Gallery photos are interactive now */
.gallery figure { cursor: zoom-in; }
.gallery figure img { transition: opacity .6s var(--ease), transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.02); }

/* =========================================================
   Back-to-top
   ========================================================= */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--pine);
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 30px -18px rgba(23, 27, 25, .6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.to-top[hidden] { display: none; }
.to-top.is-visible { opacity: 1; transform: none; }
.to-top:hover { background: var(--pine); color: var(--cream); border-color: var(--pine); }

/* =========================================================
   Team page (team.html)
   ========================================================= */
.page-head { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.page-title {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.page-lede {
  margin-top: 1.5rem;
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
}

.bio-list {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.bio {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.bio:first-child { padding-top: 0; border-top: none; }
/* Square crop is enforced on the wrapper AND the image, and the wrapper
   is pinned to the top of its grid row — otherwise a tall bio stretches
   the row and the portrait grows with it. */
.bio-photo {
  align-self: start;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--sage) 100%);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}
.bio-name { font-size: clamp(1.5rem, 2.8vw, 1.95rem); }
.bio-role {
  margin-top: .5rem;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pine);
}
.bio-creds {
  margin-top: .4rem;
  font-size: .88rem;
  color: var(--muted);
}
.bio-copy {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--ink-soft);
}

/* =========================================================
   Event gallery
   ========================================================= */
.section--gallery { background: var(--sand); }
.gallery {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--sage) 100%);
}
.gallery figcaption {
  margin-top: .8rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.archive-foot { margin-top: 2rem; font-size: .95rem; color: var(--ink-soft); }

/* =========================================================
   Press
   ========================================================= */
.section--press { background: var(--sand); }

.press-grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.press-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.press-card > a:hover { border-color: var(--sage); transform: translateY(-3px); }

/* Cover slot. A real article image sits on top when one is supplied;
   otherwise the outlet name shows as a typographic cover. */
.press-cover {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(155deg, var(--sage-pale) 0%, var(--sage) 100%);
  overflow: hidden;
}
.press-cover::after {
  content: attr(data-outlet);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--pine-deep);
  opacity: .55;
}
.press-cover img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}
.press-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: clamp(1.1rem, 2vw, 1.4rem) clamp(1.1rem, 2vw, 1.4rem) 0;
}
.press-outlet {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pine);
}
.press-date { font-size: .78rem; color: var(--muted); }
.press-headline {
  padding: .7rem clamp(1.1rem, 2vw, 1.4rem) 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.28;
  color: var(--ink);
}
.press-cue {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding: 1.2rem clamp(1.1rem, 2vw, 1.4rem) clamp(1.1rem, 2vw, 1.4rem);
  font-size: .85rem;
  font-weight: 500;
  color: var(--pine);
}
.press-cue i { font-style: normal; transition: transform .3s var(--ease); }
.press-card > a:hover .press-cue { color: var(--clay); }
.press-card > a:hover .press-cue i { transform: translateX(4px); }

/* =========================================================
   Partners
   ========================================================= */
.partner-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.partner-grid li { background: var(--cream); }
.partner-grid a {
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 1.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink-soft);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.partner-grid a:hover { background: var(--sand); color: var(--pine); }

/* =========================================================
   Donate
   ========================================================= */
.section--donate { background: var(--pine-deep); color: var(--cream); }
.donate-inner { display: flex; justify-content: center; text-align: center; }
.donate-copy { max-width: 58ch; }
.donate-title { margin-top: 1.1rem; font-size: clamp(2.1rem, 4.8vw, 3.3rem); color: var(--cream); text-wrap: balance; }
.donate-lede { margin-top: 1.4rem; color: rgba(250, 251, 248, .76); font-size: 1.05rem; }
.donate-copy .btn { margin-top: 2.2rem; }
.donate-fine { margin-top: 1.4rem; font-size: .8rem; color: rgba(250, 251, 248, .45); }
.donate-fine a { color: rgba(250, 251, 248, .72); border-bottom: 1px solid rgba(250, 251, 248, .3); }
.donate-fine a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* =========================================================
   Mailing list
   ========================================================= */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4.5vw, 3.25rem);
  background: var(--sand);
  border-radius: var(--radius-lg);
}
.signup-title { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.signup-copy p { margin-top: .8rem; color: var(--ink-soft); max-width: 34ch; }

.signup-form { display: flex; flex-wrap: wrap; gap: .7rem; }
.field { flex: 1 1 220px; }
.signup-form input {
  width: 100%;
  padding: .82rem 1.15rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color .25s var(--ease);
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form input:focus { outline: none; border-color: var(--pine); }
.signup-form input.is-invalid { border-color: var(--clay); }
.form-msg { flex: 1 0 100%; min-height: 1.2rem; font-size: .85rem; color: var(--pine); }
.form-msg.is-error { color: var(--clay-deep); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(250, 251, 248, .8);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 251, 248, .12);
}
.footer-brand { display: flex; align-items: center; gap: 1.1rem; }
.footer-tagline { font-family: var(--serif); font-size: 1.9rem; line-height: 1.05; color: var(--cream); }
.footer-nav { display: flex; flex-wrap: wrap; gap: clamp(2rem, 5vw, 4rem); }
.footer-nav h3 {
  font-family: var(--sans);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(250, 251, 248, .45); font-weight: 600;
}
.footer-nav ul { margin-top: 1rem; display: grid; gap: .55rem; }
.footer-nav a { font-size: .93rem; transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(250, 251, 248, .42);
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .therapist-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--accent { grid-column: span 2; }
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; }
  .visual-frame--hero { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); }
  .split { grid-template-columns: 1fr; }
  .split-label { padding-top: 0; }
  .need-grid { grid-template-columns: 1fr; }
  .pillars, .story-grid { grid-template-columns: 1fr; }
  .pillars { gap: 1.75rem; }
  .feature, .signup { grid-template-columns: 1fr; }
  .feature-visual { max-width: 320px; margin-inline: auto; order: -1; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-item { grid-template-columns: 70px 1fr; }
  .archive-visual { display: none; }
}

@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; }
  .bio-photo { max-width: 260px; }
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--gutter) 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block;
    padding: .95rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.3rem;
  }
  .nav-link::after { display: none; }
  .btn-donate { margin-top: 1.25rem; align-self: flex-start; }
  .hero-strip { grid-template-columns: 1fr; gap: 1.25rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { height: 44px; }
  .cards, .partner-grid { grid-template-columns: 1fr; }
  .card--accent { grid-column: auto; }
  .therapists { grid-template-columns: 1fr; }
  .partner-grid a { min-height: 0; }
  .footer-top { flex-direction: column; gap: 2.5rem; }
}

@media (max-width: 460px) {
  .team-grid { grid-template-columns: 1fr; }
  .therapist-grid { grid-template-columns: 1fr; }
  .archive-item { grid-template-columns: 1fr; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  img { opacity: 1; transition: none; }
  .gallery figure:hover img { transform: none; }
  .lightbox, .lightbox-figure { transition: none; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
