/* ============================================================
 * NeonBela — Landing Site Base Styles
 * Builds on website/css/tokens.css (verbatim copy of the
 * NeonBela Design System tokens). No hardcoded colors — every
 * value comes from a token.
 * ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--text-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin-inline: auto; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-header) 90%, transparent);
  backdrop-filter: var(--fx-blur);
  -webkit-backdrop-filter: var(--fx-blur);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.brand {
  font-family: "Orbitron", var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 1px var(--text-primary), 0 0 3px color-mix(in srgb, var(--text-primary) 35%, transparent);
}
.brand:hover { text-decoration: none; }
.brand .hl {
  color: var(--accent-brand);
  text-shadow: 0 0 1px var(--accent-brand), 0 0 3px color-mix(in srgb, var(--accent-brand) 35%, transparent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--text-primary); text-decoration: none; }

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding-inline: 0.65rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--fx-radius);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
}
.language-switch:hover {
  border-color: var(--accent-brand);
  color: var(--text-primary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--fx-radius);
  color: var(--text-primary);
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; display: block; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-block: 5rem 4rem;
  overflow: hidden;
}
.hero::before {
  /* radial glow — ambient CRT light behind the hero */
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 30%, var(--accent-brand), transparent 55%);
  opacity: 0.14;
  filter: blur(100px);
  pointer-events: none;
}
.hero::after {
  /* grid overlay, faded toward the bottom */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--accent-brand) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-brand) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.06;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-secondary);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-4xl);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  margin-block: 1rem 1.25rem;
}
.hero h1 .hl { color: var(--accent-brand); }

.hero .lede {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  max-width: 60ch;
  margin-inline: auto;
}

/* ---------- City picker ---------- */

.city-picker {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.city-picker .eyebrow { margin-bottom: 0.25rem; }
.city-picker-note { font-size: var(--fs-sm); color: var(--text-muted); }
.city-picker select {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--fx-radius);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: 0.6rem 0.9rem;
}

.picker-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 0.75rem 1.5rem;
  border-radius: var(--fx-radius);
  border: 1px solid;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  border-color: var(--accent-brand);
  color: var(--accent-brand);
  background: color-mix(in srgb, var(--accent-brand) 10%, transparent);
}
.btn-primary:hover { background: var(--accent-brand); color: var(--text-on-neon); }

.btn-ghost {
  border-color: var(--border-subtle);
  color: var(--text-secondary);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--border-strong); color: var(--text-primary); }

/* ---------- Sections ---------- */

.section { padding-block: 4rem; border-top: 1px solid var(--border-subtle); }

.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-3xl);
  letter-spacing: var(--tracking-tight);
}
.section-head h2 .hl { color: var(--accent-brand); }
.section-head p { color: var(--text-secondary); margin-top: 0.5rem; max-width: 60ch; margin-inline: auto; }

/* ---------- Feature cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-options-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
}
.contact-options-grid > .card {
  display: flex;
  flex-direction: column;
}
.contact-options-grid > .card > .btn,
.contact-card-actions {
  margin-top: auto;
}
.contact-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.contact-options-grid .contact-card-actions .btn { margin-top: 0; }
.contact-card-secondary-link {
  color: var(--text-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-brand) 75%, transparent);
  text-underline-offset: 0.25rem;
}
.contact-card-secondary-link:hover {
  color: var(--text-primary);
  text-decoration-color: var(--accent-brand);
}
.municipal-feature-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
.municipal-operations-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.municipal-operations-grid .card { height: 100%; }
.municipal-paired-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.25rem;
}
.card h3 { font-size: var(--fs-lg); font-weight: 700; margin: 0.9rem 0 0.35rem; }
.card p { color: var(--text-secondary); font-size: var(--fs-sm); }

.icon-badge {
  display: inline-flex;
  padding: 6px;
  border-radius: var(--fx-radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.icon-badge svg { width: 20px; height: 20px; }

/* Issue-category accents — the color IS the signal (brand guide). */
.card[data-accent="power"]     .icon-badge { color: var(--issue-power); }
.card[data-accent="water"]     .icon-badge { color: var(--issue-water); }
.card[data-accent="sanitation"] .icon-badge { color: var(--issue-sanitation); }
.card[data-accent="road"]      .icon-badge { color: var(--issue-road); }
.card[data-accent="security"]  .icon-badge { color: var(--issue-security); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
}
.step .step-num {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--accent-brand);
}
.step h3 { margin: 0.75rem 0 0.35rem; font-size: var(--fs-lg); }
.step p { color: var(--text-secondary); font-size: var(--fs-sm); }

.status-chip {
  display: inline-block;
  font-size: var(--fs-xxs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 2px 8px;
  border: 1px solid;
  border-radius: 3px;
  margin-top: 0.75rem;
}
.status-chip.open     { color: var(--status-open);     border-color: var(--status-open); }
.status-chip.progress { color: var(--status-progress); border-color: var(--status-progress); }
.status-chip.resolved { color: var(--status-resolved); border-color: var(--status-resolved); }

/* ---------- Inner pages ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 4.5rem 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -45% -15%;
  background: radial-gradient(circle at 50% 40%, var(--accent-brand), transparent 48%);
  opacity: 0.12;
  filter: blur(95px);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--accent-brand) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-brand) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.045;
  -webkit-mask-image: radial-gradient(ellipse 70% 85% at 50% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 85% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin-inline: auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-3xl);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  margin-block: 1rem 1rem;
}
.page-hero h1 .hl { color: var(--accent-brand); }
.page-hero .lede { color: var(--text-secondary); font-size: var(--fs-lg); max-width: 60ch; margin-inline: auto; }

.prose { max-width: 65ch; margin-inline: auto; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--text-secondary); }

.card .btn { margin-top: 1.25rem; }

/* ---------- Contact-page advertising disclosure ---------- */

.advertise-disclosure {
  max-width: 900px;
  margin-inline: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  scroll-margin-top: 5rem;
}
.advertise-disclosure--card {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.advertise-disclosure--card:hover,
.advertise-disclosure--card:focus-within {
  border-color: var(--accent-brand);
  box-shadow: var(--fx-glow) color-mix(in srgb, var(--accent-brand) 65%, transparent);
  transform: translateY(-2px);
}
.advertise-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  list-style: none;
}
.advertise-disclosure summary:focus-visible {
  outline: 2px solid var(--accent-brand);
  outline-offset: -2px;
}
.advertise-disclosure summary::-webkit-details-marker { display: none; }
.advertise-disclosure summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--text-primary);
}
.advertise-summary-lede {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-secondary);
}
.advertise-disclosure summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent-brand);
  font-size: var(--fs-2xl);
  line-height: 1;
}
.advertise-disclosure--card:hover summary::after,
.advertise-disclosure--card:focus-within summary::after {
  text-shadow: var(--fx-glow) var(--accent-brand);
}
.advertise-disclosure[open] summary { border-bottom: 1px solid var(--border-subtle); }
.advertise-disclosure[open] summary::after { content: "−"; }
.advertise-disclosure-content { padding: 1.75rem; }
.advertise-disclosure-content > .lede { color: var(--text-secondary); max-width: 65ch; }
.advertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.advertise-grid article {
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-primary) 45%, transparent);
}
.advertise-grid h3, .advertise-rate-note h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.advertise-grid p, .advertise-rate-note p { color: var(--text-secondary); font-size: var(--fs-sm); }
.advertise-grid p + p { margin-top: 1rem; }
.advertise-rate-note {
  margin-top: 1rem;
  padding: 1.25rem;
  border-left: 3px solid var(--accent-brand);
  background: color-mix(in srgb, var(--accent-brand) 6%, var(--bg-primary));
}
.advertise-rate-note .btn { margin-top: 1.25rem; }

/* Keep the different support paths easy to compare at a glance. */
.support-options-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.support-options-grid .card p { margin-bottom: 1.25rem; }
.support-options-grid .card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Inner-page visual rhythm ---------- */

.section--panel {
  position: relative;
  background: linear-gradient(125deg, color-mix(in srgb, var(--bg-secondary) 92%, transparent), var(--bg-primary));
}
.section--glow {
  position: relative;
  overflow: hidden;
}
.section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-brand), transparent 52%);
  opacity: 0.055;
  pointer-events: none;
}
.section--glow .container { position: relative; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.story-card {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  padding: 1.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% 45%;
  width: 14rem;
  height: 14rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.16;
  pointer-events: none;
}
.story-card[data-story="scattered"] { color: var(--accent-warning); }
.story-card[data-story="shared"] { color: var(--accent-brand); }
.story-card .eyebrow { color: currentColor; }
.story-card h3 { color: var(--text-primary); font-size: var(--fs-xl); margin: 0.85rem 0 0.45rem; }
.story-card p:not(.eyebrow) { color: var(--text-secondary); }

.section--name {
  position: relative;
  overflow: hidden;
}
.section--name::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, var(--issue-power), transparent 22%),
    radial-gradient(circle at 80% 65%, var(--accent-brand), transparent 25%);
  opacity: 0.07;
  pointer-events: none;
}
.section--name .container { position: relative; }

.card[data-audience] { position: relative; overflow: hidden; }
.card[data-audience]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: currentColor;
  opacity: 0.75;
}
.card[data-audience="resident"] { color: var(--issue-water); }
.card[data-audience="staff"] { color: var(--accent-success); }
.card[data-audience="municipality"] { color: var(--accent-highlight); }
.card[data-audience] h3 { color: var(--text-primary); }
.card[data-audience] p { color: var(--text-secondary); }
.card[data-audience] .icon-badge { color: currentColor; }

.section--privacy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-brand) 7%, var(--bg-primary)), var(--bg-primary));
}
.section--privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, var(--accent-brand) 1px, transparent 1px),
    linear-gradient(150deg, var(--accent-brand) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-brand) 1px, transparent 1px);
  background-size: 52px 30px;
  opacity: 0.035;
  pointer-events: none;
}
.section--privacy .container { position: relative; }
.privacy-card { background: color-mix(in srgb, var(--bg-secondary) 92%, transparent); }

.trust-callout {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-brand) 6%, var(--bg-secondary));
}
.trust-callout::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 0;
  width: 3px;
  background: var(--accent-brand);
}

.section--accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, color-mix(in srgb, var(--accent-brand) 9%, var(--bg-primary)), var(--bg-primary));
}
.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 115%, var(--accent-brand), transparent 45%);
  opacity: 0.1;
  pointer-events: none;
}
.section--accent .container { position: relative; }

/* Active page in nav */
.site-nav a[aria-current="page"] { color: var(--text-primary); }
.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent-brand);
  margin-top: 0.35rem;
}
.footer-nav a[aria-current="page"] { color: var(--text-primary); }

/* ---------- Contact details ---------- */

.contact-details {
  max-width: 560px;
  margin-inline: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
}
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.detail-row + .detail-row { border-top: 1px solid var(--border-subtle); }
.detail-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
}
.detail-value { color: var(--text-primary); font-size: var(--fs-sm); }
.contact-details .muted { color: var(--text-muted); padding-block: 0.9rem; }

.section--contact-details { padding-block: 2.5rem; }
.section--contact-details .section-head { margin-bottom: 2rem; }
.contact-note {
  margin-top: 1.25rem;
  color: var(--text-secondary);
}

/* ---------- 404 ---------- */

.notfound { text-align: center; padding-block: 4rem 3rem; }
.notfound-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-4xl);
  letter-spacing: var(--tracking-tight);
  color: var(--accent-brand);
  text-shadow: var(--fx-glow) var(--accent-brand);
}
.notfound h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-2xl);
  letter-spacing: var(--tracking-tight);
  margin-block: 0.75rem 0.5rem;
}
.notfound-lede { color: var(--text-secondary); max-width: 50ch; margin-inline: auto; }
.notfound-actions { margin-top: 1.75rem; display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-2xl);
  letter-spacing: var(--tracking-tight);
}
.cta-band p { color: var(--text-secondary); margin: 0.5rem auto 0; max-width: 55ch; }
.cta-actions { margin-top: 2.25rem; display: flex; justify-content: center; }

/* ---------- Footer ---------- */

.site-footer { margin-top: auto; border-top: 1px solid var(--border-subtle); padding-block: 2.5rem; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand .brand { font-size: var(--fs-lg); }
.footer-tagline { color: var(--text-muted); font-size: var(--fs-sm); margin-top: 0.35rem; max-width: 38ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.65rem 1.25rem; }
.footer-nav a { color: var(--text-secondary); font-size: var(--fs-sm); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-contact { color: var(--text-muted); font-size: var(--fs-sm); }
.footer-contact .eyebrow { margin-bottom: 0.35rem; }
.footer-contact a { color: var(--text-secondary); }

@media (min-width: 761px) {
  .footer-nav, .footer-contact { margin-top: calc(var(--fs-lg) + 0.35rem); }
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Mobile ---------- */

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem;
    gap: 0.75rem;
  }
  .site-nav.nav-open { display: flex; }
  .hero h1 { font-size: var(--fs-3xl); }
  .hero { padding-block: 3.5rem 3rem; }
  .steps { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .municipal-feature-grid { grid-template-columns: 1fr; }
  .municipal-operations-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .municipal-paired-grid { grid-template-columns: 1fr; }
  .advertise-disclosure summary, .advertise-disclosure-content { padding: 1.25rem; }
  .advertise-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .page-hero { padding-block: 3.5rem 2.75rem; }
  .detail-row { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .detail-value { overflow-wrap: anywhere; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
