/* ==========================================================================
   Terrain Mental Health — design system
   Palette carried over from the existing brand (cream / taupe / espresso),
   tightened with a disciplined editorial layout system.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.85rem + 0.12vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --text-xl:   clamp(1.375rem, 1.15rem + 0.9vw, 2rem);
  --text-2xl:  clamp(1.875rem, 1.4rem + 1.9vw, 3rem);
  --text-3xl:  clamp(2.25rem, 1.5rem + 2.9vw, 3.875rem);

  /* Spacing */
  --space-1: .25rem;  --space-2: .5rem;   --space-3: .75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Brand colour */
  --cream:      #ECE4DA;
  --cream-soft: #F6F3EC;
  --taupe:      #B9A590;
  --taupe-soft: #DED3C5;
  --espresso:   #36302A;
  --espresso-2: #241F1B;
  --moss:       #4A5943;
  --ink:        #36302A;
  --ink-muted:  #6B6259;
  --rule:       #C9BCAC;

  /* Semantic */
  --bg:        var(--cream-soft);
  --bg-alt:    var(--cream);
  --surface:   #FFFFFF;
  --text:      var(--ink);
  --text-soft: var(--ink-muted);
  --accent:    var(--moss);

  /* Shape — echoes the existing brand's asymmetric button corners */
  --radius-card: 20px;
  --radius-media: 0 40px 0 40px;
  --radius-btn: 40px 0 40px 0;

  --wrap: 1200px;
  --wrap-narrow: 68ch;

  --font-display: "Gilda Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --section-y: clamp(var(--space-16), 7vw, var(--space-32));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-base); }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.lede { font-size: var(--text-lg); line-height: 1.55; color: var(--text-soft); }
.prose > * + * { margin-top: var(--space-5); }
.prose p { max-width: 68ch; color: #4A423A; }
.prose--center > * { margin-inline: auto; max-width: 40rem; }
.prose--center p, .prose--center .pullquote { max-width: 40rem; }
.pullquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--espresso);
  border-left: 2px solid var(--taupe);
  padding: var(--space-1) 0 var(--space-1) var(--space-6);
  margin-block: var(--space-8) !important;
  max-width: 60ch;
}
.muted { color: var(--text-soft); }
.small { font-size: var(--text-sm); }
.tiny  { font-size: var(--text-xs); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(var(--space-12), 5vw, var(--space-20)); }
.section--cream { background: var(--bg-alt); }
.section--taupe { background: var(--taupe-soft); }
.section--dark  { background: var(--espresso); color: var(--cream-soft); }
.section--dark .eyebrow { color: var(--taupe); }
.section--dark .muted { color: #C4B9AC; }

.rule { border: 0; border-top: 1px dotted var(--rule); margin-block: var(--space-8); }
.rule--tight { margin-block: var(--space-6); }

.grid { display: grid; gap: var(--space-8); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--espresso); color: var(--cream-soft); }
.btn--primary:hover { background: var(--espresso-2); }
.btn--ghost { background: transparent; color: var(--espresso); border-color: var(--rule); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream-soft); border-color: var(--espresso); }
.btn--light { background: var(--cream-soft); color: var(--espresso); }
.btn--light:hover { background: #fff; }
.btn--sm { padding: var(--space-3) var(--space-6); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: var(--text-sm); font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.link-arrow:hover { border-color: currentColor; color: var(--accent); }
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 243, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-bottom-color: var(--rule); }
.header__inner {
  display: flex; align-items: center; gap: var(--space-8);
  min-height: 76px;
  padding-block: var(--space-3);
}
.brand {
  display: inline-flex; align-items: center; gap: var(--space-3);
  text-decoration: none; flex-shrink: 0;
}
.brand__mark { width: 34px; height: 34px; color: var(--espresso); flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.1;
  letter-spacing: .005em;
}
.brand__name span { display: block; font-size: .58em; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--text-soft); margin-top: 3px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--space-6); list-style: none; padding: 0; }
.nav__link {
  font-size: var(--text-sm); font-weight: 500; text-decoration: none;
  color: var(--text); padding-block: var(--space-2);
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"] { border-bottom-color: var(--espresso); }

.header__cta { display: flex; align-items: center; gap: var(--space-5); flex-shrink: 0; }
.header__phone {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--text-sm); font-weight: 600; text-decoration: none; white-space: nowrap;
}
.header__phone:hover { color: var(--accent); }
.header__phone svg { width: 15px; height: 15px; opacity: .65; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; margin-left: auto;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--espresso); position: relative; transition: transform .3s var(--ease), opacity .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--espresso);
  transition: transform .3s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { transform: rotate(45deg); }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(-90deg); }
.burger[aria-expanded="true"] span::after { opacity: 0; }

.mobile-nav {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--cream-soft);
  padding: var(--space-8) clamp(var(--space-5), 5vw, var(--space-10)) var(--space-12);
  display: none; flex-direction: column; gap: var(--space-2);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a.mobile-nav__link {
  font-family: var(--font-display); font-size: var(--text-lg);
  text-decoration: none; padding-block: var(--space-4);
  border-bottom: 1px dotted var(--rule);
}
.mobile-nav__foot { margin-top: var(--space-8); display: grid; gap: var(--space-4); }

/* ---------- Hero ---------- */
.hero { background: var(--cream-soft); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}
.hero__text { max-width: 34rem; }
.hero h1 { margin-bottom: var(--space-5); }
.hero__sub { font-size: var(--text-lg); line-height: 1.5; color: #4A423A; max-width: 32rem; }
.hero__actions { margin-top: var(--space-8); }
.hero__meta {
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px dotted var(--rule);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-8); align-items: center;
  font-size: var(--text-sm);
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 3.35; object-fit: cover;
  border-radius: var(--radius-media);
}
.hero--compact .hero__inner { padding-block: clamp(var(--space-10), 4.5vw, var(--space-16)); }
.hero--compact h1 { font-size: var(--text-2xl); }

/* Official "Verified by Psychology Today" seal */
.seal-pt {
  display: inline-block; line-height: 0;
  border-radius: 999px;
  transition: opacity .2s, transform .2s;
}
.seal-pt img { display: block; width: 172px; height: auto; }
.seal-pt:hover { opacity: .85; transform: translateY(-1px); }
.seal-pt:focus-visible { outline: 2px solid var(--espresso); outline-offset: 3px; }
.seal-pt--sm img { width: 140px; }

/* ---------- Statement ---------- */
.statement { text-align: center; }
.statement h2 { max-width: 26ch; margin-inline: auto; }
.statement p { max-width: 60ch; margin: var(--space-6) auto 0; color: var(--text-soft); }

/* ---------- Value grid ---------- */
.values { list-style: none; padding: 0; }
.values > li { padding-inline: var(--space-6); border-left: 1px dotted var(--rule); }
.values > li:first-child { border-left: 0; padding-left: 0; }
.value__icon { width: 30px; height: 30px; color: var(--espresso); margin-bottom: var(--space-5); }
.value h3 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; margin-bottom: var(--space-3); }
.value p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- Steps ---------- */
.steps-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1fr); gap: clamp(var(--space-8), 5vw, var(--space-20)); align-items: start; }
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps > li {
  display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: var(--space-5);
  padding-block: var(--space-6);
  border-bottom: 1px dotted var(--rule);
}
.steps > li:first-child { padding-top: 0; }
.steps > li:last-child { border-bottom: 0; padding-bottom: 0; }
.step__num {
  counter-increment: step;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--espresso);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--text-soft); }
.step .btn { margin-top: var(--space-4); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: clamp(var(--space-6), 2.5vw, var(--space-8));
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: var(--space-3); }
.card p { font-size: var(--text-sm); color: var(--text-soft); }
.card__foot { margin-top: auto; padding-top: var(--space-6); }

.photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-6);
  text-decoration: none; color: #fff;
  isolation: isolate;
}
.photo-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.photo-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(28,24,20,.88) 0%, rgba(28,24,20,.55) 45%, rgba(28,24,20,.18) 100%);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card h3 { color: #fff; font-size: var(--text-lg); margin-bottom: var(--space-2); }
.photo-card p { color: rgba(255,255,255,.86); font-size: var(--text-sm); }

/* ---------- Split (text + image) ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media img { width: 100%; object-fit: cover; border-radius: var(--radius-media); }
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__media--wide img { aspect-ratio: 4 / 3; }

/* ---------- Definition list / facts ---------- */
.facts { display: grid; gap: 0; }
.facts > div {
  display: grid; grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  gap: var(--space-5);
  padding-block: var(--space-4);
  border-bottom: 1px dotted var(--rule);
}
.facts > div:last-child { border-bottom: 0; }
.facts dt { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); padding-top: 3px; }
.facts dd { margin: 0; font-size: var(--text-sm); }
.facts a { text-decoration: none; border-bottom: 1px solid var(--rule); }
.facts a:hover { border-color: currentColor; }
.facts dd, .facts dd a { overflow-wrap: anywhere; }

/* ---------- Contact page: details + form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}

/* ---------- Checklist ---------- */
.checks { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.checks li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: var(--space-3); font-size: var(--text-sm); align-items: start; }
.checks svg { width: 16px; height: 16px; color: var(--moss); margin-top: 4px; }


/* ---------- Link lists (SEO internal linking) ---------- */
.linklist { list-style: none; padding: 0; display: grid; gap: var(--space-4); }
.linklist li { display: block; }
.linklist .link-arrow { display: inline-flex; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card .link-arrow { margin-top: auto; }

/* ---------- Accordion ---------- */
.faq { border-top: 1px dotted var(--rule); }
.faq details { border-bottom: 1px dotted var(--rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  padding-block: var(--space-5);
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: var(--text-lg); line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--taupe-soft); color: var(--espresso);
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: 1.125rem; line-height: 1;
  transition: background-color .2s, transform .3s var(--ease);
}
.faq details[open] summary::after { content: "\2212"; background: var(--espresso); color: var(--cream-soft); }
.faq__body { padding-bottom: var(--space-6); max-width: 72ch; }
.faq__body p { font-size: var(--text-sm); color: var(--text-soft); }
.faq__body p + p { margin-top: var(--space-4); }

/* ---------- Form ---------- */
.form { display: grid; gap: var(--space-5); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--text);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--moss); outline-offset: 1px; border-color: var(--moss); }
.notice {
  background: var(--taupe-soft);
  border-left: 3px solid var(--taupe);
  border-radius: 0 8px 8px 0;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
}
.notice strong { display: block; margin-bottom: var(--space-2); }
.form__status { font-size: var(--text-sm); color: var(--moss); font-weight: 600; }

/* ---------- Contact band ---------- */
.contact-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-8); }
.contact-band h3 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); margin-bottom: var(--space-4); }
.contact-band p, .contact-band a { font-size: var(--text-sm); text-decoration: none; }
.contact-band a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 24ch; margin-inline: auto; }
.cta-band p { max-width: 54ch; margin: var(--space-5) auto var(--space-8); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--cream); border-top: 1px solid var(--rule); }
.footer__main {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: var(--space-10);
  padding-block: clamp(var(--space-12), 5vw, var(--space-20));
}
.footer__col h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: var(--space-4); }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.footer__col a { font-size: var(--text-sm); text-decoration: none; }
.footer__col a:hover { color: var(--accent); text-decoration: underline; }
.footer__col p { font-size: var(--text-sm); color: var(--text-soft); }
.footer__brand .brand { margin-bottom: var(--space-5); }
.footer__brand p { font-size: var(--text-sm); color: var(--text-soft); max-width: 30ch; }
.footer__legal {
  border-top: 1px dotted var(--rule);
  padding-block: var(--space-6);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-8);
  justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: var(--text-soft);
}
.footer__legal ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-5); }
.footer__legal a { text-decoration: none; }
.footer__legal a:hover { text-decoration: underline; }
.crisis-bar {
  background: var(--espresso-2); color: var(--cream-soft);
  padding-block: var(--space-4);
  text-align: center;
}
.crisis-bar p { font-size: var(--text-xs); font-weight: 600; letter-spacing: .01em; }
.crisis-bar a { color: #fff; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values > li { border-left: 0; padding-inline: 0; }
  .values > li:nth-child(n) { padding-left: 0; }
  .footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 10; }
  .hero__text { max-width: none; }
  .split, .steps-layout, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media { order: 0; }
  .split__media--tall img { aspect-ratio: 16 / 11; }
  .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .contact-band { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
}
@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .footer__main { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
  .facts > div { grid-template-columns: minmax(0, 1fr); gap: var(--space-1); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ---------- Print ---------- */
@media print {
  .header, .mobile-nav, .crisis-bar, .btn { display: none !important; }
  body { background: #fff; }
}

/* ---------- Dark-section overrides ---------- */
.section--dark .field label { color: #C9BCAC; }
.section--dark .field input,
.section--dark .field textarea,
.section--dark .field select { border-color: rgba(236,228,218,.28); background: rgba(246,243,236,.96); }
.section--dark .form__status { color: var(--taupe); }
.section--dark .link-arrow { border-color: rgba(236,228,218,.4); }
.section--dark .link-arrow:hover { color: var(--taupe); }
.section--dark h2, .section--dark h3 { color: var(--cream-soft); }

.field__hint{
  margin:0;
  font-size:.82rem;
  line-height:1.45;
  font-weight:400;
  text-transform:none;
  letter-spacing:normal;
  color:var(--text-soft);
}
