/* ============================================================
   Missouri Mental Health Directory
   Design system: "The Missouri State Survey"
   A cartographic state-atlas reference aesthetic.
   Display: Fraunces  |  Body + legend labels: Hanken Grotesk
   Palette: limestone paper, deep teal, cartographic vermilion.
   ============================================================ */

:root {
  /* paper + ink */
  --paper:      #e7e2d3;   /* cool limestone survey paper */
  --paper-2:    #efeade;   /* lifted panel */
  --plate:      #fbf9f2;   /* near-white plate / card */
  --ink:        #14201e;   /* deep spruce ink */
  --ink-soft:   #4e574f;   /* muted slate */
  --ink-faint:  #79806f;   /* captions */

  /* teal spine */
  --deep:       #0b2e36;   /* deep teal ground (dark modules, footer) */
  --deep-2:     #0f3a44;
  --teal:       #14606b;   /* primary interactive */
  --teal-ink:   #0e474f;
  --teal-soft:  #d9e5e2;   /* tint fill */
  --teal-line:  #b7cbc6;

  /* cartographic accent */
  --vermilion:  #be4326;   /* the single hot accent */
  --vermilion-d:#9c3419;

  /* structure */
  --line:       #cdc4af;   /* paper hairline */
  --line-soft:  #ddd6c4;
  --shadow:     0 1px 0 rgba(20,32,30,.03), 0 14px 30px -24px rgba(11,46,54,.20);

  --maxw: 1140px;
  --read: 700px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* keep anchored sections clear of the sticky header */
:target { scroll-margin-top: 96px; }
[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 96, "SOFT" 0, "WONK" 0;
}

a { color: var(--teal); text-decoration-color: color-mix(in srgb, var(--teal) 35%, transparent); text-underline-offset: 2px; }
a:hover { color: var(--teal-ink); }

img { max-width: 100%; display: block; }

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

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.reading { max-width: var(--read); margin: 0 auto; padding: 0 28px; }

/* legend-style utility label */
.legend {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.legend::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--vermilion);
  display: inline-block;
}

/* ---------- Crisis bar ---------- */
.crisis-bar {
  background: var(--deep);
  color: #eaf1ee;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 18px;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.crisis-bar a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--vermilion);
  text-decoration-thickness: 2px;
  font-weight: 700;
}
.crisis-bar a:hover { color: #ffd9cd; }

/* ---------- Header ---------- */
.site-header {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  flex-wrap: wrap;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
}
.brandmark .glyph {
  width: 38px; height: 42px;
  flex: 0 0 auto;
  display: block;
}
.brandmark .glyph path.state { fill: var(--deep); }
.brandmark .glyph path.river { stroke: var(--teal-line); }
.brandmark .glyph circle.dot { fill: var(--vermilion); }
.brandmark .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brandmark .wordmark b {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18.5px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.brandmark .wordmark small {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 3px 0;
  letter-spacing: .005em;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--vermilion);
  transition: right .22s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

/* ---------- Hero ---------- */
.hero { padding: 68px 0 30px; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}
.hero .legend { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 480;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 460;
  color: var(--teal-ink);
  font-variation-settings: "opsz" 144, "SOFT" 4, "WONK" 1;
}
.hero .intro {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 22px -14px var(--teal);
}
.btn-primary:hover { background: var(--teal-ink); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { border-color: var(--vermilion); color: var(--vermilion-d); }
.btn-light { background: #fff; color: var(--deep); }
.btn-light:hover { background: #eef4f2; color: var(--deep); transform: translateY(-1px); }

/* ---------- Signature: Missouri map ---------- */
.mo-hero-map { position: relative; }
.mo-map {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.mo-map .land { fill: var(--paper-2); stroke: var(--ink); stroke-width: 1.6; }
.mo-map .frame { fill: none; stroke: var(--line); stroke-width: 1; }

/* region zones (clipped to state) */
.mo-map .zone { fill: var(--teal-soft); transition: fill .22s ease; }
.mo-map .zone.z-alt { fill: color-mix(in srgb, var(--teal-soft) 62%, var(--paper-2)); }
.mo-map .divider { stroke: var(--ink); stroke-width: .9; stroke-dasharray: 2 3.4; opacity: .5; fill: none; }

/* rivers */
.mo-map .river { fill: none; stroke: var(--teal); stroke-width: 2.4; stroke-linecap: round; opacity: .85; }
.mo-map .river.mississippi { stroke-width: 3; }

/* nodes + labels */
.mo-map .node { fill: var(--vermilion); }
.mo-map .node-ring { fill: none; stroke: var(--vermilion); stroke-width: 1.4; opacity: .0; transition: opacity .2s ease, r .2s ease; }
.mo-map .confluence { fill: var(--vermilion); stroke: var(--plate); stroke-width: 2; }
.mo-map .m-label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  fill: var(--ink);
}
.mo-map .m-sub {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 8.4px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  fill: var(--ink-faint);
}

/* interactive regions on hero */
.mo-map a { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.mo-map a .zone { outline: none; }
.mo-map a:hover .zone,
.mo-map a:focus-visible .zone { fill: var(--teal); }
.mo-map a:hover .m-label,
.mo-map a:focus-visible .m-label { fill: var(--deep); }
.mo-map a:hover .node-ring,
.mo-map a:focus-visible .node-ring { opacity: .9; }
.mo-map a:focus-visible { outline: none; }

.map-caption {
  margin-top: 14px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.map-caption .swatch { width: 10px; height: 10px; border-radius: 50%; background: var(--vermilion); display: inline-block; }

/* faint rivers on small static maps */
.locator-map .river, .reg-glyph .river { opacity: .32; stroke-width: 1.5; }
.locator-map .divider, .reg-glyph .divider { opacity: .32; }

/* locator (inner pages) */
.locator {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.locator .mo-map { width: 132px; flex: 0 0 auto; }
.locator .locator-map .zone { fill: color-mix(in srgb, var(--teal-soft) 55%, var(--paper-2)); }
.locator .locator-map .zone.active { fill: var(--vermilion); }
.locator .locator-map .land { stroke-width: 1.4; }
.locator .locator-text .legend { margin-bottom: 8px; }
.locator .locator-text p { margin: 0; font-size: 14px; color: var(--ink-soft); max-width: 46ch; }
.locator .locator-text strong { color: var(--ink); font-weight: 700; }

/* ---------- Section rhythm ---------- */
.section { padding: 56px 0; }
.section.tight { padding-top: 8px; }
.band { border-top: 1px solid var(--line); }

.section-head { margin-bottom: 34px; }
.section-head .legend { margin-bottom: 14px; }
.section-head .row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 72;
}
.section-head .count {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.section-head .rule {
  height: 1px;
  background: var(--line);
  margin-top: 16px;
  position: relative;
}
.section-head .rule::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 46px; height: 3px;
  background: var(--vermilion);
}

/* ---------- Field guide (numbered sequence, roman) ---------- */
.guide { border-top: 1px solid var(--line); }
.guide-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.guide-step .num {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--vermilion);
  line-height: 1;
  font-variation-settings: "opsz" 60, "WONK" 1;
}
.guide-step h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.01em; }
.guide-step p { margin: 0; font-size: 15.5px; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Region gazetteer register ---------- */
.gazetteer { border-top: 1px solid var(--ink); }
.reg-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .2s ease, padding-left .2s ease;
  position: relative;
}
.reg-row::before {
  content: "";
  position: absolute; left: -28px; top: 0; bottom: 0;
  width: 3px; background: var(--vermilion);
  transform: scaleY(0); transform-origin: top;
  transition: transform .22s ease;
}
.reg-row:hover { background: color-mix(in srgb, var(--plate) 55%, transparent); padding-left: 12px; }
.reg-row:hover::before { transform: scaleY(1); }
.reg-glyph { width: 118px; height: auto; }
.reg-glyph .zone { fill: color-mix(in srgb, var(--teal-soft) 50%, var(--paper-2)); }
.reg-glyph .zone.active { fill: var(--vermilion); }
.reg-glyph .land { stroke-width: 1.4; fill: var(--paper-2); }
.reg-main .cardinal {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-ink); margin: 0 0 5px;
}
.reg-main h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.015em; }
.reg-main p { margin: 0 0 10px; font-size: 15px; color: var(--ink-soft); max-width: 54ch; }
.reg-main .cities {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-faint);
  display: flex; flex-wrap: wrap; gap: 6px 0; align-items: center;
}
.reg-main .cities span { position: relative; padding: 0 12px; }
.reg-main .cities span:first-child { padding-left: 0; }
.reg-main .cities span::after {
  content: "·"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--line);
}
.reg-main .cities span:last-child::after { content: ""; }
.reg-arrow {
  color: var(--ink-faint);
  font-size: 22px; line-height: 1;
  transition: transform .22s ease, color .22s ease;
}
.reg-row:hover .reg-arrow { color: var(--vermilion); transform: translateX(5px); }

/* ---------- Sub-cards (guides row) ---------- */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.gcard {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 26px 30px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: background .2s ease;
  display: flex; flex-direction: column;
}
.gcard:hover { background: color-mix(in srgb, var(--plate) 60%, transparent); }
.gcard .kicker {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 16px;
}
.gcard h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.14; letter-spacing: -.01em; }
.gcard p { margin: 0 0 16px; font-size: 14.5px; color: var(--ink-soft); }
.gcard .more {
  margin-top: auto;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .04em; color: var(--teal);
  display: inline-flex; align-items: center; gap: 7px;
}
.gcard:hover .more { color: var(--vermilion-d); }
.gcard:hover .more span { transform: translateX(4px); }
.gcard .more span { transition: transform .2s ease; display: inline-block; }

/* ---------- Provider listing plates ---------- */
.records { border-top: 1px solid var(--ink); counter-reset: rec; }
.record {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.record-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.record h3 { margin: 0 0 3px; font-size: 23px; letter-spacing: -.015em; }

/* two-column gazetteer entry: name/location rail + description/tags */
.records .record {
  counter-increment: rec;
  grid-template-columns: minmax(190px, 254px) 1fr;
  grid-template-areas: "head main" "head tags";
  column-gap: 52px;
  align-items: start;
  padding: 32px 0 34px;
  position: relative;
  transition: padding-left .22s ease;
}
.records .record::before {
  content: "";
  position: absolute; left: -28px; top: 0; bottom: -1px;
  width: 3px; background: var(--vermilion);
  transform: scaleY(0); transform-origin: top;
  transition: transform .22s ease;
}
.records .record:hover::before { transform: scaleY(1); }
.records .record .record-top { grid-area: head; display: block; }
.records .record .record-top > div { display: block; }
.records .record h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.16;
}
.records .record h3::before {
  content: counter(rec, decimal-leading-zero);
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em;
  color: var(--vermilion);
  margin-bottom: 12px;
}
.records .record .loc { margin: 0; }
.records .record .desc { grid-area: main; margin: 0 0 16px; max-width: 58ch; }
.records .record .tags { grid-area: tags; }
.record .loc {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-faint);
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 7px;
}
.record .loc svg { width: 12px; height: 12px; flex: 0 0 auto; }
.record .desc { margin: 0 0 14px; font-size: 15.5px; color: var(--ink); max-width: 74ch; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .03em;
  color: var(--teal-ink);
  background: var(--teal-soft);
  border-radius: 2px;
  padding: 4px 11px;
}

/* featured record */
.record.featured {
  background: var(--plate);
  border: 1px solid var(--teal-line);
  border-left: 4px solid var(--vermilion);
  border-radius: 3px;
  padding: 30px 30px 32px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  position: relative;
}
.badge {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  background: var(--vermilion);
  color: #fff;
  display: inline-flex; align-items: center; gap: 7px;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.record.featured .visit {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700; font-size: 14.5px;
  color: var(--teal);
  text-decoration: none;
}
.record.featured .visit svg { width: 15px; height: 15px; transition: transform .2s ease; }
.record.featured .visit:hover { color: var(--vermilion-d); }
.record.featured .visit:hover svg { transform: translate(3px,-3px); }

.disclosure {
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
  margin: 14px 0 4px;
  max-width: 78ch;
}

/* region note prose */
.note-prose { max-width: 64ch; }
.note-prose p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 12px; }

/* ---------- Recommended provider module ---------- */
.rec-module {
  background: var(--deep);
  color: #e9f1ee;
  border-radius: 4px;
  padding: 44px 46px;
  position: relative;
  overflow: hidden;
  background-image:
    repeating-radial-gradient(circle at 88% 18%,
      rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px,
      transparent 1px, transparent 16px);
}
.rec-module .legend { color: #86c3b6; margin-bottom: 16px; }
.rec-module .legend::before { background: var(--vermilion); }
.rec-module h2 {
  color: #fff; font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px; letter-spacing: -.015em; max-width: 24ch;
  line-height: 1.14;
  font-variation-settings: "opsz" 72;
  text-wrap: balance;
}
.rec-module p { color: #c3d6d0; font-size: 15.5px; margin: 0 0 10px; max-width: 60ch; }
.rec-module .btn { margin-top: 18px; }
.rec-module .rec-note {
  font-size: 12.5px; color: #7fa39a; font-style: italic;
  margin-top: 20px; max-width: 62ch;
}
.rec-module .mo-corner {
  position: absolute; right: -30px; bottom: -40px;
  width: 240px; opacity: .12; pointer-events: none;
}
.rec-module .mo-corner .land { fill: #fff; stroke: none; }
.rec-module .mo-corner .river { stroke: rgba(255,255,255,.4); }

/* ---------- Article body ---------- */
.article-head { padding: 62px 0 20px; }
.article-head .legend { margin-bottom: 20px; }
.article-head h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  max-width: 20ch;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.article-head .lede {
  font-size: 19.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  font-variation-settings: "opsz" 40, "SOFT" 3;
}
.article-head .rule { height: 1px; background: var(--line); margin-top: 30px; position: relative; }
.article-head .rule::before { content:""; position:absolute; left:0; top:-1px; width:46px; height:3px; background: var(--vermilion); }

.article-body { padding: 12px 0 8px; }
.article-body.lead-cap > .reading > p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-weight: 500;
  float: left;
  font-size: 62px;
  line-height: .82;
  padding: 6px 12px 0 0;
  color: var(--vermilion);
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.article-body h2 {
  font-size: 26px; letter-spacing: -.015em;
  margin: 40px 0 12px; line-height: 1.14;
  font-variation-settings: "opsz" 60;
}
.article-body h3 { font-size: 19.5px; margin: 30px 0 8px; }
.article-body p { margin: 0 0 18px; }
.article-body ul { margin: 0 0 20px; padding: 0; list-style: none; }
.article-body li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}
.article-body li::before {
  content: "";
  position: absolute; left: 2px; top: 11px;
  width: 8px; height: 8px;
  border: 1.6px solid var(--vermilion);
  border-radius: 50%;
}

/* ---------- FAQ register ---------- */
.faq-list { counter-reset: q; border-top: 1px solid var(--ink); }
.faq-list .qa {
  counter-increment: q;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 4px 26px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.faq-list .qa::before {
  content: counter(q, decimal-leading-zero);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--vermilion);
  font-variation-settings: "opsz" 60, "WONK" 1;
  grid-row: 1 / span 2;
}
.faq-list .qa h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.012em;
  font-variation-settings: "opsz" 48;
  align-self: start;
}
.faq-list .qa .qa-a { grid-column: 2; }
.faq-list .qa .qa-a p {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--ink-soft);
}
.faq-list .qa .qa-a p:last-child { margin-bottom: 0; }
.faq-list .qa .qa-a a { font-weight: 600; }

.callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 3px;
  padding: 20px 24px;
  font-size: 15.5px;
  color: var(--ink);
  margin: 28px 0;
}
.callout strong { color: var(--teal-ink); }

/* ---------- Crisis note ---------- */
.crisis-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--vermilion);
  background: var(--plate);
  border-radius: 3px;
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 36px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.crisis-note .cn-icon {
  flex: 0 0 auto; width: 26px; height: 26px; margin-top: 2px;
  color: var(--vermilion);
}
.crisis-note strong { color: var(--ink); }

/* ---------- Related strip ---------- */
.related {
  margin: 10px 0 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.related .rlabel {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint); display: block; margin-bottom: 10px;
}
.related a { font-weight: 600; text-decoration: none; }
.related a:hover { text-decoration: underline; text-decoration-color: var(--vermilion); }
.related .back {
  display: inline-block; margin-top: 14px;
  font-weight: 700; color: var(--ink); text-decoration: none;
}
.related .back:hover { color: var(--vermilion-d); }
.related .sep { color: var(--line); margin: 0 8px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep);
  color: #bcd0ca;
  margin-top: 20px;
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
  background-image:
    repeating-radial-gradient(circle at 12% 120%,
      rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px,
      transparent 1px, transparent 18px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brandmark { color: #fff; margin-bottom: 16px; }
.footer-brand .brandmark .wordmark b { color: #fff; }
.footer-brand .brandmark .wordmark small { color: #7fa39a; }
.footer-brand .glyph path.state { fill: #fff; }
.footer-brand .glyph path.river { stroke: rgba(255,255,255,.45); }
.footer-brand p { font-size: 14px; color: #9db7b0; margin: 0; max-width: 42ch; }
.footer-col h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #86c3b6; margin: 4px 0 16px;
}
.footer-col a {
  display: block; color: #c3d6d0; text-decoration: none;
  font-size: 14.5px; margin-bottom: 11px;
  transition: color .18s ease;
}
.footer-col a:hover { color: #fff; }
.disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: #7d9a92;
  line-height: 1.7;
  max-width: 96ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .mo-hero-map { max-width: 480px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap, .reading { padding: 0 20px; }
  .hero { padding: 44px 0 20px; }
  .section { padding: 42px 0; }
  .nav { gap: 16px; font-size: 13.5px; }
  .brandmark .wordmark b { font-size: 16.5px; }
  .reg-row { grid-template-columns: 76px 1fr; gap: 18px; }
  .reg-row .reg-arrow { display: none; }
  .reg-glyph { width: 64px; }
  .guide-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .rec-module { padding: 30px 26px; }
  .rec-module .mo-corner { width: 160px; right: -40px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .record.featured { padding: 24px 22px; }
  .records .record {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "main" "tags";
    column-gap: 0;
    padding: 26px 0 28px;
  }
  .records .record .record-top { margin-bottom: 14px; }
  .records .record h3::before { margin-bottom: 8px; }
  .faq-list .qa { grid-template-columns: 40px 1fr; gap: 2px 16px; }
  .faq-list .qa::before { font-size: 21px; }
  .faq-list .qa h2 { font-size: 20px; }
  .article-body.lead-cap > .reading > p:first-of-type::first-letter { font-size: 52px; }
  .related .sep { display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
