/* Riviera Beach CRA prototype theme, Stoa Works
   World: Florida waterfront redevelopment. Indigo #333399 + heron orange #ff9900
   pulled from rbcra.com's own stylesheet. Motif: the waterline / nautical chart.
   Type: Archivo variable (signage display) + Atkinson Hyperlegible (body). */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("fonts/archivo-var.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/atkinson-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-italic.woff2") format("woff2");
}

:root {
  --indigo: #333399;
  --indigo-deep: #24246e;
  --ink: #181a45;
  --orange: #ff9900;
  --orange-text: #8f5000;
  --orange-soft: #ffb84d;
  --sand: #f8f4ec;
  --seafoam: #e9f3f0;
  --aqua: #7fd0c2;
  --white: #ffffff;
  --line: #d9d3c6;
  --display: "Archivo", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", "Verdana", sans-serif;
  --wide: 125%;
  --narrow: 80%;
  --maxw: 72rem;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration-thickness: from-font; text-underline-offset: 2px; }
a:hover { color: var(--indigo-deep); }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; border-radius: 2px; }
.room--indigo :focus-visible, .site-footer :focus-visible, .page-head :focus-visible, .masthead :focus-visible { outline-color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-stretch: var(--wide);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; max-width: 65ch; }

.eyebrow {
  font-family: var(--display);
  font-stretch: var(--narrow);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-text);
  display: block;
  margin: 0 0 0.6rem;
}
.room--indigo .eyebrow { color: var(--orange-soft); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  padding: 0.8rem 1.2rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- prototype banner ---------- */
.proto-banner {
  background: var(--ink);
  color: #f3efe5;
  font-size: 0.85rem;
  padding: 0.45rem clamp(1rem, 4vw, 2rem);
  border-bottom: 3px solid var(--orange);
}
.proto-banner p { margin: 0; max-width: none; }
.proto-banner a { color: var(--orange-soft); }

/* ---------- header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.lockup svg { flex: none; }
.lockup-name {
  font-family: var(--display);
  font-stretch: var(--wide);
  font-weight: 900;
  font-size: 1.28rem;
  line-height: 1.02;
  letter-spacing: 0.01em;
  display: block;
}
.lockup-sub {
  font-family: var(--display);
  font-stretch: var(--narrow);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--indigo);
  display: block;
  margin-top: 0.15rem;
}

.menu-btn {
  display: none;
  background: var(--indigo);
  color: var(--white);
  border: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
.menu-btn[aria-expanded="true"] { background: var(--ink); }

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.primary-nav a {
  display: inline-block;
  font-family: var(--display);
  font-stretch: 105%;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  /* tide-rise hover: water fills from the floor */
  background: linear-gradient(0deg, var(--aqua) 0 100%) no-repeat left bottom / 100% 0;
  transition: background-size 160ms ease;
  border-radius: 3px;
}
.primary-nav a:hover { background-size: 100% 38%; color: var(--ink); }
.primary-nav a[aria-current="page"] {
  box-shadow: inset 0 -4px 0 var(--orange);
}

/* header search */
.header-search {
  display: flex;
  flex: 1 1 16rem;
  max-width: 24rem;
}
.header-search input {
  flex: 1;
  min-width: 8rem;
  font: inherit;
  font-size: 0.97rem;
  padding: 0.55rem 0.8rem;
  border: 2px solid var(--ink);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: var(--sand);
  color: var(--ink);
}
.header-search input::placeholder { color: #4c4e6e; opacity: 1; }
.header-search button {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.97rem;
  background: var(--indigo);
  color: var(--white);
  border: 2px solid var(--indigo);
  border-radius: 0 4px 4px 0;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  min-height: 44px;
}
.header-search button:hover { background: var(--indigo-deep); border-color: var(--indigo-deep); }

@media (max-width: 920px) {
  .menu-btn { display: inline-block; }
  .primary-nav { display: none; width: 100%; }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; border-top: 1px solid var(--line); padding-top: 0.5rem; }
  .primary-nav a { display: block; padding: 0.8rem 0.5rem; font-size: 1.1rem; }
  .header-search { order: 5; max-width: none; }
}

/* ---------- masthead hero ---------- */
.masthead {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.masthead-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, rgba(24, 26, 69, 0.92) 18%, rgba(51, 51, 153, 0.35) 60%, rgba(24, 26, 69, 0.15) 100%);
}
.masthead .wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(3rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 10vw, 7rem);
}
.masthead h1 { color: var(--white); max-width: 17ch; }
.masthead .eyebrow { color: var(--orange-soft); }
.masthead p.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 52ch; color: #e8e6f2; }

.hero-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
  max-width: 36rem;
}
.hero-search input {
  flex: 1 1 14rem;
  font: inherit;
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.hero-search input::placeholder { color: #4c4e6e; opacity: 1; }
.hero-search button {
  font-family: var(--display);
  font-weight: 850;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: var(--orange);
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  min-height: 48px;
}
.hero-search button:hover { background: var(--orange-soft); }
.hero-quick { position: relative; z-index: 2; margin-top: 1.1rem; font-size: 0.95rem; }
.hero-quick a { color: #dcd9ee; margin-right: 1.1rem; }
.hero-quick a:hover { color: var(--white); }

/* wave-cut divider: sits at the bottom of a dark room, filled with the next room's color */
.wave-cut { display: block; width: 100%; height: clamp(26px, 4vw, 48px); position: relative; z-index: 3; margin-top: -1px; }

/* ---------- rooms ---------- */
.room { padding: clamp(2.6rem, 7vw, 5rem) 0; }
.room--sand { background: var(--sand); }
.room--seafoam { background: var(--seafoam); }
.room--white { background: var(--white); }
.room--indigo {
  background:
    repeating-linear-gradient(115deg, transparent 0 90px, rgba(127, 208, 194, 0.10) 90px 92px),
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(127, 208, 194, 0.05) 34px 35px),
    linear-gradient(180deg, var(--ink), var(--indigo-deep));
  color: #eceaf6;
}
.room--indigo h2, .room--indigo h3 { color: var(--white); }
.room--indigo a { color: var(--orange-soft); }
.room--indigo a:hover { color: var(--orange); }
.room--indigo p { color: #dcd9ee; }

.room-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.room-head p { margin: 0; }
.room-link { font-family: var(--display); font-weight: 800; white-space: nowrap; }

/* ---------- placards (the photo system) ---------- */
.placard-grid { display: grid; gap: clamp(1.2rem, 2.6vw, 1.8rem); grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr)); }
.placard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 0 rgba(24, 26, 69, 0.12);
  display: flex;
  flex-direction: column;
}
.placard-photo { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.placard-art {
  aspect-ratio: 3 / 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--seafoam) 55%, var(--aqua) 140%);
}
.placard-plate {
  position: relative;
  background: var(--indigo);
  color: var(--white);
  padding: 1.05rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.placard-tab {
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-55%);
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-stretch: var(--narrow);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 3px;
}
.placard-plate h3 { color: var(--white); margin: 0.35rem 0 0.35rem; }
.placard-plate h3 a { color: var(--white); text-decoration: none; }
.placard-plate h3 a:hover { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 3px; }
.placard-plate p { font-size: 0.95rem; color: #dcd9ee; margin: 0 0 0.8rem; }
.placard-meta { margin-top: auto; font-size: 0.85rem; color: var(--orange-soft); font-family: var(--display); font-stretch: var(--narrow); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- pipeline track (chart of buoys) ---------- */
.track { list-style: none; display: flex; margin: 0.9rem 0 0.2rem; padding: 0; }
.track li { flex: 1; position: relative; height: 22px; }
.track li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.28);
}
.track li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 11px;
  height: 11px;
  transform: translate(0, -50%) rotate(45deg);
  background: var(--indigo-deep);
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.track li.done::before { background: var(--aqua); }
.track li.done::after { background: var(--aqua); border-color: var(--aqua); }
.track li.now::before { background: linear-gradient(90deg, var(--aqua), var(--orange)); }
.track li.now::after { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.25); }
.track-stage { font-size: 0.85rem; color: #cfcce4; margin: 0.1rem 0 0; }
.track-stage strong { color: var(--orange-soft); font-family: var(--display); font-stretch: var(--narrow); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- front desk (programs) ---------- */
.desk { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); }
.desk-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--indigo);
  border-radius: 6px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.desk-col--biz { border-top-color: var(--orange); }
.desk-col h3 { margin-bottom: 0.2rem; }
.desk-col > p { font-size: 0.97rem; color: #3c3e63; }
.desk-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.desk-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.desk-list li:last-child { border-bottom: 0; }
.desk-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 1.05rem;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--aqua);
}
.desk-list a { font-weight: 700; text-decoration: none; }
.desk-list a:hover { text-decoration: underline; }
.desk-list .desk-note { display: block; font-size: 0.9rem; color: #4c4e6e; }

/* ---------- meeting band ---------- */
.meeting-band { display: grid; gap: 2rem; grid-template-columns: 1.2fr 1fr; align-items: start; }
@media (max-width: 760px) { .meeting-band { grid-template-columns: 1fr; } }
.next-meeting {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(127, 208, 194, 0.4);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
}
.next-meeting .date {
  font-family: var(--display);
  font-stretch: var(--wide);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--orange);
  display: block;
  line-height: 1.05;
}
.meeting-list { list-style: none; margin: 0; padding: 0; }
.meeting-list li { display: flex; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(127, 208, 194, 0.25); align-items: baseline; }
.meeting-list .when { font-family: var(--display); font-weight: 800; flex: none; width: 8.5rem; color: var(--aqua); }

/* ---------- news rail ---------- */
.news-rail { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)); }
.news-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
}
.news-item time { font-family: var(--display); font-stretch: var(--narrow); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-text); }
.news-item h3 { font-size: 1.12rem; margin: 0.3rem 0 0.4rem; }
.news-item h3 a { text-decoration: none; color: var(--ink); }
.news-item h3 a:hover { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 3px; }
.news-item p { font-size: 0.94rem; margin: 0; color: #3c3e63; }

/* ---------- district strip ---------- */
.district { display: grid; gap: 2rem; grid-template-columns: 1.1fr 1fr; align-items: center; }
@media (max-width: 820px) { .district { grid-template-columns: 1fr; } }
.district figure { margin: 0; }
.district img { border-radius: 6px; border: 1px solid var(--line); box-shadow: 0 3px 0 rgba(24, 26, 69, 0.12); }
.district figcaption { font-size: 0.85rem; color: #4c4e6e; margin-top: 0.5rem; }
.corridor-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.corridor-list li { padding: 0.6rem 0 0.6rem 1.6rem; position: relative; }
.corridor-list li::before { content: ""; position: absolute; left: 0; top: 1.18rem; width: 10px; height: 10px; transform: rotate(45deg); background: var(--orange); }
.corridor-list strong { font-family: var(--display); font-weight: 800; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 850;
  font-size: 1rem;
  text-decoration: none;
  background: var(--indigo);
  color: var(--white);
  border: 2px solid var(--indigo);
  border-radius: 4px;
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  min-height: 44px;
}
.btn:hover { background: var(--indigo-deep); border-color: var(--indigo-deep); color: var(--white); }
.btn--orange { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.btn--orange:hover { background: var(--orange-soft); border-color: var(--orange-soft); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--indigo); }
.btn--ghost:hover { background: var(--indigo); color: var(--white); }
.room--indigo .btn--ghost { color: var(--white); border-color: var(--aqua); }
.room--indigo .btn--ghost:hover { background: var(--aqua); color: var(--ink); border-color: var(--aqua); }
.room--indigo .btn--orange, .room--indigo .btn--orange:hover { color: var(--ink); }
.room--indigo .btn { color: var(--white); }
.room--indigo .btn--orange { color: var(--ink); }

/* ---------- page headers (inside pages) ---------- */
.page-head {
  background:
    repeating-linear-gradient(115deg, transparent 0 90px, rgba(127, 208, 194, 0.12) 90px 92px),
    linear-gradient(180deg, var(--ink), var(--indigo));
  color: #eceaf6;
}
.page-head .wrap { padding-top: clamp(2.2rem, 6vw, 3.8rem); padding-bottom: clamp(2.4rem, 6vw, 4rem); }
.page-head h1 { color: var(--white); }
.page-head p { color: #dcd9ee; font-size: 1.1rem; }
.page-head .eyebrow { color: var(--orange-soft); }

/* ---------- filters / chips ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; align-items: center; margin-bottom: 1.6rem; }
.filter-group { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }
.filter-label { font-family: var(--display); font-stretch: var(--narrow); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-text); margin-right: 0.2rem; }
.chip {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.93rem;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  cursor: pointer;
  min-height: 36px;
}
.chip[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.chip:hover { border-color: var(--indigo); color: var(--indigo); }
.chip[aria-pressed="true"]:hover { background: var(--indigo); border-color: var(--indigo); color: var(--white); }

/* ---------- search page ---------- */
.search-input-lg { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 38rem; }
.search-input-lg input {
  flex: 1 1 14rem;
  font: inherit;
  font-size: 1.15rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
}
.result-list { list-style: none; margin: 1.8rem 0 0; padding: 0; max-width: 46rem; }
.result-item { padding: 1.1rem 0 1.2rem; border-bottom: 1px solid var(--line); }
.result-item .result-type {
  display: inline-block;
  background: var(--seafoam);
  color: #0d5347;
  font-family: var(--display);
  font-stretch: var(--narrow);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 0.18rem 0.55rem;
  margin-bottom: 0.3rem;
}
.result-item .result-type--project { background: #e7e7f7; color: var(--indigo-deep); }
.result-item .result-type--news { background: #fdebd2; color: var(--orange-text); }
.result-item h3 { margin: 0.15rem 0 0.25rem; font-size: 1.2rem; }
.result-item p { margin: 0; font-size: 0.97rem; color: #3c3e63; }
.result-item mark { background: var(--orange-soft); color: var(--ink); padding: 0 0.1em; border-radius: 2px; }
.search-empty {
  margin-top: 2rem;
  padding: 2rem;
  border: 2px dashed var(--aqua);
  border-radius: 6px;
  max-width: 34rem;
  text-align: center;
  color: #3c3e63;
}

/* ---------- tables ---------- */
.data-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.97rem; }
.data-table caption { text-align: left; font-family: var(--display); font-weight: 800; font-size: 1.05rem; padding-bottom: 0.6rem; }
.data-table th { font-family: var(--display); font-stretch: var(--narrow); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; text-align: left; background: var(--ink); color: var(--white); padding: 0.6rem 0.8rem; }
.data-table td { padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table tbody tr:nth-child(even) { background: var(--sand); }

/* ---------- callouts / notes ---------- */
.note {
  background: var(--seafoam);
  border-left: 6px solid var(--aqua);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  max-width: 60ch;
}
.note--sample { background: #fdebd2; border-left-color: var(--orange); }

/* ---------- footer ---------- */
.site-footer {
  background:
    repeating-linear-gradient(115deg, transparent 0 90px, rgba(127, 208, 194, 0.08) 90px 92px),
    var(--ink);
  color: #cfcce4;
  border-top: 6px solid var(--orange);
}
.site-footer .wrap { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)); padding-top: 2.6rem; padding-bottom: 1rem; }
.site-footer h2 { color: var(--white); font-size: 1.05rem; font-stretch: var(--narrow); letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.28rem 0; }
.site-footer a { color: #e8e6f2; }
.site-footer a:hover { color: var(--orange-soft); }
.site-footer address { font-style: normal; }
.site-footer p { color: #cfcce4; }
.footer-legal { border-top: 1px solid rgba(127, 208, 194, 0.25); margin-top: 0.5rem; }
.footer-legal .wrap { display: block; padding-top: 1.1rem; padding-bottom: 1.4rem; font-size: 0.85rem; }
.footer-legal p { max-width: none; margin: 0 0 0.3rem; }

/* ---------- misc ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.stat-row { display: flex; flex-wrap: wrap; gap: 1.6rem 3rem; margin: 1.4rem 0 0; }
.stat-row .stat b { font-family: var(--display); font-stretch: var(--wide); font-weight: 900; font-size: clamp(1.7rem, 3.6vw, 2.6rem); display: block; color: var(--orange); line-height: 1; }
.stat-row .stat span { font-size: 0.92rem; }

.heron-empty { text-align: center; padding: 2rem 1rem; }
.heron-empty svg { margin: 0 auto 1rem; display: block; }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin: 0.35rem 0; }
