:root {
  --ink: #0a1219;
  --ink-soft: #1c2a38;
  --paper: #dfe7ef;
  --paper-deep: #c8d4e0;
  --mist: #a8b8c8;
  --line: rgba(10, 18, 25, 0.14);
  --signal: #c47a1a;
  --signal-deep: #8f5610;
  --steel: #2f5168;
  --steel-bright: #3a6a88;
  --danger-soft: #6b2d2d;
  --focus: #0a5c8a;
  --max: 68rem;
  --nav-h: 4.25rem;
  --space: 1.25rem;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tap: 2.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(90, 138, 171, 0.22), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(196, 122, 26, 0.12), transparent 45%),
    linear-gradient(180deg, #e8eef4 0%, var(--paper) 35%, #d5e0ea 100%);
  min-height: 100vh;
  min-height: 100dvh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--steel);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

a:hover {
  color: var(--signal-deep);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn:focus-visible,
.filter-btn:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 2px;
}

.visually-hidden {
  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: 0.75rem;
  top: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-wrap {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(223, 231, 239, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  padding-left: max(var(--space), env(safe-area-inset-left));
  padding-right: max(var(--space), env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
  max-width: min(18rem, calc(100% - 5.5rem));
  min-width: 0;
}

.brand__mark {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  display: block;
}

.brand__text {
  display: block;
  min-width: 0;
}

.brand:hover,
.brand:focus-visible {
  color: var(--ink);
}

.brand__text > span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 1.5px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  min-width: var(--tap);
  min-height: var(--tap);
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    background: rgba(232, 238, 244, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.35rem max(var(--space), env(safe-area-inset-right)) 0.85rem max(var(--space), env(safe-area-inset-left));
    box-shadow: 0 0.75rem 1.25rem rgba(10, 18, 25, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.15rem;
    min-height: var(--tap);
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav a::after {
    display: none;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 max(var(--space), env(safe-area-inset-right)) 4rem max(var(--space), env(safe-area-inset-left));
}

.page-main {
  padding-top: 2rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 0 3.5rem;
  margin: 0 calc(-1 * var(--space));
  margin-left: calc(-1 * max(var(--space), env(safe-area-inset-left)));
  margin-right: calc(-1 * max(var(--space), env(safe-area-inset-right)));
  padding-left: max(var(--space), env(safe-area-inset-left));
  padding-right: max(var(--space), env(safe-area-inset-right));
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #0a1219;
  background-image:
    linear-gradient(105deg, rgba(10, 18, 25, 0.9) 0%, rgba(26, 58, 82, 0.72) 48%, rgba(10, 18, 25, 0.55) 100%),
    radial-gradient(circle at 80% 30%, rgba(196, 122, 26, 0.18), transparent 40%),
    url("../img/hero-road-night.jpg");
  background-size: cover;
  background-position: center;
  animation: heroPulse 14s var(--ease) infinite alternate;
}

@keyframes heroPulse {
  from {
    filter: saturate(1);
  }
  to {
    filter: saturate(1.15) brightness(1.04);
  }
}

.hero .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #f4f7fa;
  margin: 0 0 1.25rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  color: rgba(244, 247, 250, 0.92);
  max-width: 60%;
  margin: 0 0 0.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.28s forwards;
}

.hero .lead {
  font-size: 1rem;
  color: rgba(244, 247, 250, 0.85);
  max-width: 34rem;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.42s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}

.press-ctas {
  margin-bottom: 2rem;
  opacity: 1;
  animation: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__atmosphere,
  .hero .brand-mark,
  .hero h1,
  .hero .lead,
  .hero-ctas,
  .page-band {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  min-height: var(--tap);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--primary {
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}

.btn--primary:hover {
  background: #d99122;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: #f4f7fa;
  border-color: rgba(244, 247, 250, 0.55);
}

.btn--ghost:hover {
  border-color: #f4f7fa;
  color: #fff;
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--ink:hover {
  background: var(--ink-soft);
  color: #fff;
}

.section {
  padding: 3rem 0 1rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.section .section-sub {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.prose {
  max-width: 42rem;
  overflow-wrap: break-word;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-top: 2rem;
}

.prose .table-wrap {
  max-width: none;
  width: min(100%, calc(var(--max) - 2.5rem));
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.page-lede {
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.page-band {
  position: relative;
  margin-top: 0;
  margin-bottom: 1.75rem;
  margin-left: calc(-1 * max(var(--space), env(safe-area-inset-left)));
  margin-right: calc(-1 * max(var(--space), env(safe-area-inset-right)));
  min-height: 11rem;
  max-height: 15rem;
  display: flex;
  align-items: flex-end;
  padding: 2rem max(var(--space), env(safe-area-inset-right)) 1.5rem max(var(--space), env(safe-area-inset-left));
  overflow: hidden;
  opacity: 0;
  animation: riseIn 0.85s var(--ease) 0.05s forwards;
}

.page-band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #1c2a38;
  background-size: cover;
  background-position: center;
}

.page-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 25, 0.25) 0%, rgba(10, 18, 25, 0.72) 100%);
}

.page-band .page-title {
  color: #f4f7fa;
  margin: 0;
  position: relative;
  max-width: var(--max);
  width: 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.page-band--docs .page-band__bg {
  background-image: url("../img/band-city-hall.jpg");
  background-position: center 55%;
}

.page-band--street .page-band__bg {
  background-image: url("../img/band-downtown.jpg");
  background-position: center 80%;
}

.page-band--road .page-band__bg {
  background-image: url("../img/band-nature-1.jpg");
  background-position: center 25%;
}

.page-band--lake .page-band__bg {
  background-image: url("../img/band-nature-2.jpg");
  background-position: center 40%;
}

.page-band--shore .page-band__bg {
  background-image: url("../img/band-nature-3.jpg");
  background-position: center 60%;
}

.page-band--about .page-band__bg {
  background-image: url("../img/band-about.jpg");
  background-position: center 65%;
}

.page-band--sunshine .page-band__bg {
  background-image: url("../img/band-city-gov.jpg");
  background-position: center 35%;
}

.page-band--speakers .page-band__bg {
  background-image: url("../img/band-speakers.jpg");
  background-position: center 45%;
}

.page-band-credit {
  margin: -1.25rem 0 1.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted, #5a6a78);
  max-width: 40rem;
}

.hero + .page-band-credit {
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
}

.page-band-credit a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.page-band-credit a:hover {
  color: var(--ink, #1a2229);
}

.reply-yes {
  color: var(--ink, #1a2229);
  font-weight: 600;
}

.reply-no {
  color: var(--signal, #a33c2a);
  font-weight: 600;
}

.letter-entry {
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line, #d5dde5);
}

.letter-entry:last-child {
  border-bottom: 0;
}

.page-jump {
  margin: -0.75rem 0 1.75rem;
  font-size: 0.95rem;
  color: var(--muted, #5a6a78);
}

.page-jump a {
  color: inherit;
  text-underline-offset: 0.15em;
}

.page-jump a:hover {
  color: var(--ink, #1a2229);
}

.path-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .path-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .path-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.path-card {
  display: block;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--line, #d5dde5);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.path-card:hover {
  border-color: var(--signal, #a33c2a);
  background: #fff;
}

.path-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.path-card span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted, #5a6a78);
}

.filing-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}

.filing-card {
  border-top: 3px solid var(--signal);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem 1.1rem 1.15rem;
}

.filing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.filing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.filing-card p {
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.filing-card p:last-child {
  margin-bottom: 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.explore-grid a {
  display: block;
  padding: 1.15rem 1rem 1.25rem;
  border-top: 2px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  min-height: 6.5rem;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.explore-grid a:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--signal);
  color: var(--ink);
}

.explore-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.explore-grid span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  max-width: 100%;
}

.table-wrap:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.table-wrap caption,
table.data caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding: 0.75rem 0.85rem 0.35rem;
  font-size: 0.95rem;
}

table.data {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: auto;
}

table.data th,
table.data td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

table.data th {
  font-weight: 600;
  background: rgba(10, 18, 25, 0.05);
  white-space: nowrap;
  color: var(--ink);
}

table.data tr:last-child td {
  border-bottom: none;
}

table.data .npd {
  color: var(--danger-soft);
  font-weight: 600;
}

table.data--glance {
  min-width: 44rem;
}

table.data--glance th:nth-child(1),
table.data--glance td:nth-child(1) {
  width: 1%;
  white-space: nowrap;
}

table.data--glance th:nth-child(2),
table.data--glance td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
}

table.data--glance td:nth-child(3),
table.data--glance td:nth-child(4) {
  overflow-wrap: break-word;
}

.npd {
  color: var(--danger-soft);
  font-weight: 600;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--steel);
  margin-left: 0.4rem;
}

.timeline li {
  position: relative;
  padding: 0 0 1.75rem 1.5rem;
}

.js .timeline li {
  opacity: 0;
  transform: translateX(-0.5rem);
}

.js .timeline li.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .js .timeline li,
  .js .timeline li.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--signal);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--steel);
}

.timeline time {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.25rem;
}

.timeline strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  padding: 0.55rem 0.9rem;
  min-height: var(--tap);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: 2px;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.filter-status {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.record-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.record-list li {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.record-list li[hidden] {
  display: none !important;
}

.record-list a {
  font-weight: 600;
  text-decoration: none;
  flex: 1 1 14rem;
  overflow-wrap: anywhere;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

.record-list a:hover {
  text-decoration: underline;
}

.record-list a[href$=".pdf"]::after,
.record-list a[href*=".pdf"]::after {
  content: " (PDF)";
  font-weight: 500;
  font-size: 0.85em;
  white-space: nowrap;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  flex: 0 0 auto;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.stat {
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.callout {
  border-left: 3px solid var(--signal);
  padding: 0.75rem 0 0.75rem 1rem;
  margin: 1.5rem 0;
  background: rgba(196, 122, 26, 0.08);
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
}

.note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.glossary-list {
  margin: 0;
  padding: 0;
}

.glossary-list dt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.35rem;
  color: var(--ink);
}

.glossary-list dt:first-child {
  margin-top: 0;
}

.glossary-list dd {
  margin: 0 0 0.25rem;
  color: var(--ink-soft);
  max-width: 42rem;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 2rem max(var(--space), env(safe-area-inset-right)) max(3rem, calc(2rem + env(safe-area-inset-bottom))) max(var(--space), env(safe-area-inset-left));
  background: rgba(10, 18, 25, 0.04);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
}

.site-footer a:hover {
  color: var(--signal-deep);
}

@media (max-width: 640px) {
  :root {
    --space: 1rem;
    --nav-h: 3.75rem;
  }

  body {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .page-band {
    min-height: 8.5rem;
    max-height: 11rem;
    padding-top: 1.5rem;
    padding-bottom: 1.15rem;
  }

  .page-main {
    padding-top: 1.25rem;
  }

  .section {
    padding: 2.25rem 0 0.5rem;
  }

  .filters {
    gap: 0.4rem;
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  table.data {
    font-size: 0.88rem;
    min-width: 24rem;
  }

  table.data th,
  table.data td {
    padding: 0.6rem 0.65rem;
  }
}

@media (max-width: 380px) {
  .brand {
    max-width: calc(100% - 5rem);
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body::before,
  .site-header,
  .hero__atmosphere,
  .nav-toggle,
  .filters,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .no-print {
    display: none !important;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .print-only {
    display: block !important;
  }

  .table-wrap {
    overflow: visible;
    border: none;
  }

  table.data {
    min-width: 0;
  }
}

.print-only {
  display: none;
}
