/* ════════════════════════════════════════
   DWELLTRY, Municipalities page
   Matches homepage palette (black / white / gold #F0A800), Cormorant Garamond + Jost.splash + .nav-bar + .footer-v2.
════════════════════════════════════════ */

body {
  background: #000;
  color: #FFF;
}

.section-dark { background: #000; color: #FFF; }

/* ───────────── SNAP 1, HERO BAND ─────────────
   Snap panel; the .muni-snap-panel base rules (min-height, padding, flex centering) come from municipality.css which
   is loaded first.  Here we just add hero-specific dressing. */
.muni-hero-band {
  background: #000;
  color: #FFF;
  align-items: center;
  text-align: left;
}
.muni-hero-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px), radial-gradient(70% 60% at 80% 20%, rgba(240,168,0,0.10), transparent 70%);
  pointer-events: none;
}

/* The signature 45° gold diagonal line, pulled from the logo slash motif.
   Sits in the upper-right wedge of the hero. The bead is a brighter dot
   that pulses along the line to draw the eye. */
/* ── Topographic background, minimalist grey contour lines that drift
   slowly across the hero. The veil (blur + hatch + radial fade) keeps
   the headline crisp on top. ── */
.muni-topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}
.muni-topo-layer path.muni-topo-layer ellipse {
  stroke: rgba(255, 255, 255, 0.13);
  fill: none;
  vector-effect: non-scaling-stroke;
}
.muni-topo-layer--a { animation: muniTopoDriftA 38s linear infinite; }
.muni-topo-layer--b { animation: muniTopoDriftB 52s linear infinite; }
.muni-topo-layer--c {
  animation: muniTopoPulse 9s ease-in-out infinite;
  transform-origin: center center;
}
.muni-topo-layer--c ellipse { stroke: rgba(255, 255, 255, 0.09); }
@keyframes muniTopoDriftA {
  0%   { transform: translate(-2%, 0); }
  50%  { transform: translate(2%, -1%); }
  100% { transform: translate(-2%, 0); }
}
@keyframes muniTopoDriftB {
  0%   { transform: translate(1%, 1%); }
  50%  { transform: translate(-2%, -1%); }
  100% { transform: translate(1%, 1%); }
}
@keyframes muniTopoPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.06); opacity: 0.6; }
}

/* Veil, blurs the topo just enough that the lines stay decorative, layers the brand 45° hatch + a soft radial gold accent, and keeps the
   headline area extra dim so the type pops. */
.muni-topo-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(2.5px) saturate(0.85);
  -webkit-backdrop-filter: blur(2.5px) saturate(0.85);
  background:
    radial-gradient(58% 65% at 18% 55%, rgba(0,0,0,0.62), transparent 65%), repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 14px), radial-gradient(60% 60% at 88% 18%, rgba(240,168,0,0.10), transparent 70%);
}
/* (Old yellow-diagonal bead removed, replaced by the topographic background.) */

.muni-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.muni-hero .section-label {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.muni-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  color: #FFF;
}
.muni-hero-headline em { font-style: italic; color: var(--gold); }
.muni-hero-headline .gold-word { color: var(--gold); font-style: italic; }

.muni-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.8;
  max-width: 740px;
  opacity: 0.85;
  font-weight: 300;
}
.muni-hero-sub strong {
  color: var(--gold);
  font-weight: 400;
}

/* ───────────── SNAP 2, 50/50 FULL-BLEED MAP
   Lifted from homepage css/home.css .munis-section so the look
   and behavior matches exactly.
   ───────────── */
.munis-section {
  /* Breathing room at the bottom so the map + CTA aren't flush
     against the section boundary. */
  padding: 0 0 3rem !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #000;
}
.munis-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 3rem);
  min-height: calc(100dvh - 3rem);
  width: 100%;
}
.munis-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.munis-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #FFF;
  line-height: 1.1;
  margin: 0;
}
.munis-head h2 em { font-style: italic; color: var(--gold); }
.munis-content {
  padding: calc(var(--nav-h) + 2rem) clamp(2rem, 4vw, 4rem) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.munis-map {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #2a2d34;
  border-right: 1px solid rgba(240,168,0,0.18);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7);
}
.muni-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #2a2d34;
}
.muni-map-canvas .leaflet-tile-pane {
  filter: brightness(1.55) saturate(0) contrast(0.95);
}
.muni-map-canvas .leaflet-container {
  background: #2a2d34;
  font-family: 'Jost', sans-serif;
  cursor: grab;
}
.muni-map-canvas .leaflet-container:active { cursor: grabbing; }
.munis-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(15,17,23,0.55) 100%);
  pointer-events: none;
  z-index: 401;
}
.muni-map-canvas .leaflet-control-attribution {
  background: rgba(0,0,0,0.55);
  color: rgba(232,230,223,0.55);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  padding: 2px 6px;
}
.muni-map-canvas .leaflet-control-attribution a { color: var(--gold); opacity: 0.85; }
.muni-map-canvas .leaflet-control-zoom { display: none; }

.munis-map-corner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.munis-map-corner span:last-child { color: rgba(255,255,255,0.55); opacity: 0.55; }

/* 14-city list, same hover-slide as the homepage */
.munis-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 0;
  padding: 0;
  list-style: none;
}
.munis-list li { border-bottom: 1px solid rgba(255,255,255,0.10); }
.munis-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
.munis-list a {
  display: block;
  padding: 1rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFF;
  opacity: 0.75;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.35s, opacity 0.35s, padding-left 0.35s;
}
.munis-list a span { position: relative; z-index: 1; }
.munis-list a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240,168,0,0.18) 0%, rgba(240,168,0,0.04) 60%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.munis-list a::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.munis-list a:hover,
.munis-list a.active {
  opacity: 1;
  padding-left: 2rem;
  color: var(--gold);
}
.munis-list a:hover::before,
.munis-list a.active::before { transform: translateX(0); }
.munis-list a:hover::after,
.munis-list a.active::after { width: 1.25rem; }

.munis-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.62;
  color: #FFF;
  max-width: 480px;
  margin: 0;
}

/* Map pin (Leaflet divIcon) */
.muni-pin-wrap { background: transparent !important; border: none !important; }
.muni-pin {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.muni-pin img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(240,168,0,0.55));
  transition: filter 0.2s, transform 0.2s;
}
.muni-pin:hover img,
.muni-pin.active img {
  transform: scale(1.18);
  filter: drop-shadow(0 0 14px rgba(240,168,0,0.95)) drop-shadow(0 0 4px rgba(255,255,255,0.4));
}
.muni-pin-label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0,0,0,0.92);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.55rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.muni-pin:hover .muni-pin-label,
.muni-pin.active .muni-pin-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Map zoom buttons (custom, bottom-right) */
.muni-map-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  z-index: 500;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.muni-map-zoom button {
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.muni-map-zoom button:hover { background: var(--gold); color: #000; }
.muni-map-zoom button:first-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

.muni-map-hint {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 500;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 0.85rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: opacity 0.6s;
}
.muni-map-hint.faded { opacity: 0; }
.muni-map-hint strong { color: var(--gold); font-weight: 500; }

/* Snap-panel override: the .munis-section is full-bleed left/right; we
   keep a small bottom pad so the map's zoom controls and the CTA don't
   sit flush against the section boundary. */
.muni-snap-panel.munis-section {
  padding: 0 0 3rem !important;
  display: block;          /* override flex-center so the split fills */
  align-items: stretch;
}

.muni-main-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.muni-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ───────────── MAP ───────────── */
.muni-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.muni-map-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
}

.muni-map-hint-inline {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.5;
  font-style: italic;
}

.muni-map-frame {
  flex: 1;
  min-height: clamp(420px, 64vh, 720px);
  border: 1px solid rgba(255,255,255,0.10);
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.muni-map-frame .leaflet-container {
  width: 100%;
  height: 100%;
  background: #000;
  filter: brightness(1.5) saturate(0);
}
/* Don't desaturate our pins */
.muni-map-frame .leaflet-marker-icon { filter: saturate(1) brightness(1); }

.muni-map-frame .leaflet-control-attribution { display: none; }

/* Custom zoom buttons */
.muni-map-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  z-index: 500;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.muni-map-zoom button {
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.muni-map-zoom button:hover { background: var(--gold); color: #000; }
.muni-map-zoom button:first-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

.muni-map-frame .muni-map-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 500;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 0.75rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: opacity 0.6s;
}
.muni-map-frame .muni-map-hint.faded { opacity: 0; }
.muni-map-frame .muni-map-hint strong { color: var(--gold); font-weight: 500; }

/* D-logo pin */
.muni-pin-wrap { background: transparent !important; border: none !important; }
.muni-pin {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.muni-pin img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(240,168,0,0.55));
  transition: filter 0.2s, transform 0.2s;
}
.muni-pin:hover img,
.muni-pin.active img {
  transform: scale(1.18);
  filter: drop-shadow(0 0 14px rgba(240,168,0,0.95)) drop-shadow(0 0 4px rgba(255,255,255,0.4));
}
.muni-pin-label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0,0,0,0.92);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.55rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.muni-pin:hover .muni-pin-label,
.muni-pin.active .muni-pin-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ───────────── CITY TILES ───────────── */
.muni-list-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.muni-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.muni-list-count {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.muni-list-count em { color: var(--gold); font-style: italic; font-size: 1.3rem; }

.muni-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.muni-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: #FFF;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 400;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}
.muni-tile::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(240,168,0,0.18), transparent 80%);
  transition: width 0.35s ease;
}
.muni-tile:hover,
.muni-tile.active {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(3px);
}
.muni-tile:hover::before,
.muni-tile.active::before { width: 100%; }

.muni-tile-name {
  position: relative;
  z-index: 1;
}
.muni-tile-arrow {
  position: relative;
  z-index: 1;
  color: var(--gold);
  opacity: 0.55;
  transition: opacity 0.25s, transform 0.25s;
}
.muni-tile:hover .muni-tile-arrow,
.muni-tile.active .muni-tile-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* List note + CTA */
.muni-list-note {
  margin-top: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.muni-list-note p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  opacity: 0.72;
  font-weight: 300;
}

/* ───────────── SNAP 3, "WHY THESE 14" EXPLAIN BLOCK ─────────────
   Light section, more informative than the old "ask anything" strip.
   2×2 card grid + a centered CTA at the bottom. */
.muni-explain {
  background: #FFF;
  color: #1A1A1A;
  align-items: center;
  text-align: left;
}
.muni-explain::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 14px), radial-gradient(60% 70% at 92% 12%, rgba(240,168,0,0.10), transparent 70%);
  pointer-events: none;
}
.muni-explain-inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.muni-explain-head { max-width: 920px; }
.muni-explain-head .section-label {
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.muni-explain-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
  color: #0E0E12;
}
.muni-explain-head h2 em { color: var(--gold); font-style: italic; }

.muni-explain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.muni-explain-card {
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(240,168,0,0.02);
  padding: 1.25rem 1.25rem 1.4rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.muni-explain-card:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.06);
  transform: translateY(-3px);
}
.muni-explain-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.muni-explain-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #0E0E12;
  margin: 0 0 0.55rem;
}
.muni-explain-card p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.72);
  margin: 0;
}

.muni-explain-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.muni-explain-cta-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.55);
  font-style: italic;
}
/* Inverted ghost button on white */
.muni-explain-cta .btn-ghost {
  border-color: #0E0E12;
  color: #0E0E12;
}
.muni-explain-cta .btn-ghost--solid {
  background: var(--gold);
  border-color: var(--gold) !important;
  color: #000 !important;
}
.muni-explain-cta .btn-ghost--solid:hover {
  background: #F9C215;
  border-color: #F9C215 !important;
}

/* Legacy (kept harmless in case any old markup remains) */
.muni-cta {
  background: #FFF;
  color: #1A1A1A;
  padding: 6.5rem clamp(1.5rem, 6vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.muni-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 14px), radial-gradient(50% 70% at 50% 50%, rgba(240,168,0,0.10), transparent 70%);
  pointer-events: none;
}
.muni-cta-inner { position: relative; max-width: 880px; margin: 0 auto; }
.muni-cta .section-label { color: var(--gold); margin-bottom: 1.5rem; display: inline-block; }
.muni-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.15;
  margin: 0 0 2.5rem;
  color: #0E0E12;
}
.muni-cta h2 em { color: var(--gold); font-style: italic; }
/* Ghost button on white, invert the border/color so it reads on light bg */
.muni-cta .btn-ghost {
  border-color: rgba(0,0,0,0.85);
  color: #0E0E12;
}
.muni-cta .btn-ghost:hover {
  background: #0E0E12;
  color: #FFF;
  border-color: #0E0E12;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1100px) {
  .muni-explain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .muni-main-grid { grid-template-columns: 1fr; }
  .muni-map-frame { min-height: 380px; }
  /* Topo background simplifies on mobile via SVG itself */
}
@media (max-width: 560px) {
  .muni-tile-grid { grid-template-columns: 1fr; }
  .muni-hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .muni-explain-grid { grid-template-columns: 1fr; }
  .muni-explain-cta { flex-direction: column; align-items: flex-start; }
}
