/* ════════════════════════════════════════════════════════
   CITY PAGE — Shared styles for all city pages
   Import: <link rel="stylesheet" href="/css/city.css">
   ════════════════════════════════════════════════════════ */

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

:root {
  --cream:   #f4f0e6;
  --paper:   #ede9db;
  --parchment: #e4dfd0;
  --ink:     #1a1714;
  --muted:   #7a7060;
  --faint:   #b0a896;
  --line:    rgba(26,23,20,.09);
  --forest:  #006d37;
  --teal:    #40c6b3;
  --orange:  #fd8b00;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* bottom nav height */
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Visually hidden (SEO accessible, not visible) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── NAV ─────────────────────────────────────────────── */
.city-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  transition: background .3s, box-shadow .3s;
}
.city-nav.scrolled {
  background: rgba(244,240,230,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.city-nav__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem; letter-spacing: .1em;
  text-decoration: none; color: white;
  display: flex; align-items: center; gap: .6rem;
  transition: color .3s;
}
.city-nav__logo img { width: 28px; height: 28px; }
.city-nav.scrolled .city-nav__logo { color: var(--ink); }
.city-nav__cta {
  background: linear-gradient(135deg, var(--forest), var(--teal));
  color: white; text-decoration: none;
  padding: .45rem 1.1rem; border-radius: 99px;
  font-size: .82rem; font-weight: 600;
  transition: opacity .2s;
}
.city-nav__cta:hover { opacity: .88; }

/* ── HERO ────────────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.city-hero__photo {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a2e1e 0%, #006d37 55%, #003320 100%);
}
.city-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.6) saturate(1.15);
}
/* Hero carousel slides */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.6) saturate(1.15);
}
/* Prev / next arrows */
.hero-arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  padding: 0;
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }
.hero-arrow:active { transform: translateY(-50%) scale(.92); }
.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }
@media (max-width: 480px) { .hero-arrow { width: 38px; height: 38px; } }

/* Progress dots */
.hero-dots {
  position: absolute; bottom: 1.1rem; right: 1.5rem; z-index: 3;
  display: flex; gap: .45rem; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.3); transition: background .4s, transform .4s;
  cursor: pointer;
}
.hero-dot.is-active { background: rgba(255,255,255,.9); transform: scale(1.25); }
.city-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.62) 50%,
    rgba(0,0,0,.88) 100%);
}
.city-hero__content {
  position: relative; z-index: 2;
  padding: 0 1.5rem 3rem;
  max-width: 900px;
}
@media (min-width: 640px) { .city-hero__content { padding: 0 2.5rem 3.5rem; } }

.city-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px; padding: .3rem .85rem;
  margin-bottom: 1.25rem;
  animation: cityFadeUp .6s ease forwards .1s; opacity: 0;
}
.city-hero__badge::before {
  content: '•'; color: #fd8b00; font-size: .8rem; line-height: 1;
}
.city-hero__region {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: .5rem;
  animation: cityFadeUp .6s ease forwards .15s; opacity: 0;
}
.city-hero__name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 13vw, 10rem);
  line-height: .9; letter-spacing: .02em;
  color: white; text-shadow: 0 4px 40px rgba(0,0,0,.4);
  animation: cityFadeUp .7s ease forwards .2s; opacity: 0;
}
.city-hero__tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-style: italic;
  color: rgba(255,255,255,.82); margin-top: .5rem;
  animation: cityFadeUp .7s ease forwards .35s; opacity: 0;
}
.city-hero__stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.75rem;
  animation: cityFadeUp .7s ease forwards .5s; opacity: 0;
}
.city-hero__stat { display: flex; flex-direction: column; gap: .1rem; }
.city-hero__stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.85rem; line-height: 1; color: white;
}
.city-hero__stat-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.city-hero__actions {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem;
  animation: cityFadeUp .7s ease forwards .6s; opacity: 0;
}
.btn-start {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fd8b00; color: white;
  border: none; cursor: pointer;
  border-radius: 99px; padding: .85rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 20px rgba(253,139,0,.35);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn-start:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(253,139,0,.45); }
.btn-preview {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  color: white; border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px; padding: .85rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: .9rem;
  cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.btn-preview:hover { background: rgba(255,255,255,.22); }

@keyframes cityFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Stats divider rule */
.city-hero__stats-rule {
  width: 100%; height: 1px;
  background: rgba(255,255,255,.18);
  margin: 1.6rem 0 1.2rem;
  animation: cityFadeUp .7s ease forwards .45s; opacity: 0;
}

/* ── WHY SECTION ─────────────────────────────────────── */
.city-why {
  padding: 5rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.city-why__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .city-why__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .city-why__right { order: -1; }
}
.city-why__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 1.5rem; display: block;
}
.city-why__eyebrow::before { content: '— '; }
.city-why__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08; color: var(--ink);
  margin-bottom: 1.25rem;
}
.city-why__body {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 480px;
}
.stubbs-bubble {
  display: inline-flex; align-items: flex-start; gap: 1rem;
  background: white; border-radius: 1.25rem;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 4px 24px rgba(26,23,20,.08);
  border: 1px solid var(--line);
  max-width: 460px;
}
.stubbs-bubble__avatar { width: 40px; height: 40px; flex-shrink: 0; }
.stubbs-bubble__avatar img { width: 100%; height: 100%; object-fit: contain; }
.stubbs-bubble__text {
  font-family: 'Permanent Marker', cursive;
  font-size: .95rem;
  line-height: 1.5; color: var(--ink);
}
/* Photo column */
.city-why__photo-wrap {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.city-why__photo-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.city-why__caption-card {
  background: #1a1a1a;
  border-radius: 0 0 24px 24px;
  padding: 1.5rem 1.75rem;
}
.city-why__caption-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem; color: white; line-height: 1.35;
}

/* ── TOUR PREVIEW SECTION ────────────────────────────── */
.city-tour-section {
  padding: 0 0 4rem;
  max-width: 1100px; margin: 0 auto;
}
.section-head {
  padding: 0 1.5rem; margin-bottom: 1.5rem;
}
.section-head__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--forest);
  display: block; margin-bottom: .5rem;
}
.section-head__eyebrow::before { content: '— '; }
.section-head__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1; color: var(--ink);
}
/* Permanent Marker accent in headings (e.g. "von Spots.") */
.pm-accent {
  font-family: 'Permanent Marker', cursive;
  font-size: .9em;
  color: var(--orange);
  display: block;
}
.section-head__sub {
  font-size: .88rem; color: var(--muted);
  margin-top: .4rem; line-height: 1.6; max-width: 520px;
}

/* Leaflet interactive map */
.city-lmap-wrap {
  position: relative;
  margin: 0 1.5rem 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 280px;
  background: #eee6d0;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
@media (min-width: 640px) { .city-lmap-wrap { height: 360px; } }
.city-lmap { width: 100%; height: 100%; }

/* Stats overlay — sits above Leaflet tiles (comes after .city-lmap in DOM → paints on top) */
.city-map__stats {
  position: absolute; top: .85rem; right: .85rem;
  display: flex; gap: .5rem;
  z-index: 400;
}
.city-map__stat-pill {
  background: rgba(244,240,230,.92); backdrop-filter: blur(8px);
  border-radius: 99px; padding: .3rem .75rem;
  font-size: .72rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: .3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.city-map__stat-pill .material-symbols-outlined { font-size: 14px; color: var(--forest); }

/* Leaflet custom pin */
.lf-pin {
  width: 26px; height: 34px;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.lf-pin > span {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--pin-color);
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; line-height: 1;
}
.lf-pin::after {
  content: '';
  width: 2px; height: 8px;
  background: var(--pin-color);
  border-radius: 0 0 2px 2px;
}
.lf-pin.is-dim > span,
.lf-pin.is-dim::after { opacity: .22; }

/* Leaflet layer tone-down */
.leaflet-container { font-family: inherit; }
.leaflet-tile-pane { filter: saturate(.82) brightness(1.03); }

/* Tour bearbeiten button */
.tour-edit-row {
  display: flex; justify-content: center;
  padding: 1.25rem 1.5rem .5rem;
}
.btn-tour-edit {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #006d37 0%, #40c6b3 100%);
  color: #fff; border: none; border-radius: 99px;
  padding: .75rem 1.75rem;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,109,55,.3);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}
.btn-tour-edit:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,109,55,.38); }
.btn-tour-edit:active { transform: translateY(0); }

/* Category filter tabs */
.city-cat-tabs {
  display: flex; gap: .5rem;
  overflow-x: auto; padding: 0 1.5rem .75rem;
  scrollbar-width: none;
}
.city-cat-tabs::-webkit-scrollbar { display: none; }
.city-cat-tab {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: 99px;
  font-size: .78rem; font-weight: 600;
  background: white; color: var(--muted);
  border: 1.5px solid var(--line);
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.city-cat-tab:hover { border-color: var(--forest); color: var(--forest); }
.city-cat-tab.is-on { background: var(--cat-color); color: white; border-color: var(--cat-color); }
.city-cat-tab__badge {
  background: rgba(255,255,255,.25); border-radius: 99px;
  padding: .05rem .4rem; font-size: .68rem;
}
.city-cat-tab:not(.is-on) .city-cat-tab__badge {
  background: var(--line); color: var(--muted);
}

/* Spot carousel */
.spot-reel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: .5rem 1.5rem 2.5rem;
  scrollbar-width: none;
}
.spot-reel::-webkit-scrollbar { display: none; }
.spot-reel__empty {
  padding: 1rem; color: var(--muted); flex-shrink: 0;
}

.spot-grid-card {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.spot-grid-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #2a3a2a;
  overflow: hidden;
  flex-shrink: 0;
}
.spot-grid-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.spot-grid-card__num {
  position: absolute; top: .6rem; left: .6rem;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: .75rem; color: white;
  border: 2px solid rgba(255,255,255,.4);
}
.spot-grid-card__chip {
  position: absolute; top: .6rem; right: .6rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 99px; padding: .2rem .55rem;
  font-size: .57rem; font-weight: 700; letter-spacing: .07em;
  color: rgba(27,28,26,.8);
  display: flex; align-items: center; gap: .25rem;
  text-transform: uppercase;
}
.spot-grid-card__chip .material-symbols-outlined { font-size: 11px; }
.spot-grid-card__body {
  padding: .9rem 1rem 1rem;
  flex: 1; display: flex; flex-direction: column; gap: .35rem;
}
.spot-grid-card__name {
  font-family: 'Archivo Black', sans-serif;
  font-size: .95rem; color: rgb(27,28,26); line-height: 1.2;
}
.spot-grid-card__desc {
  font-size: .75rem; color: rgb(108,123,109);
  line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.spot-grid-card__foot {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; margin-top: auto;
}
.spot-grid-card__star { color: var(--orange); font-weight: 700; }
.spot-grid-card__tag { color: rgba(27,28,26,.35); }

/* ── CATEGORY SECTION ────────────────────────────────── */
.city-cats-section {
  background: white;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.city-cats-section .section-head { padding: 0; margin-bottom: 2rem; }
.cat-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
/* Bento spans */
@media (min-width: 768px) {
  .cat-grid > .cat-card:first-child { grid-column: span 2; grid-row: span 2; flex-direction: column; }
  .cat-grid > .cat-card:first-child .cat-card__icon { width: 48px; height: 48px; border-radius: .75rem; margin-bottom: .4rem; }
  .cat-grid > .cat-card:first-child .cat-card__icon .material-symbols-outlined { font-size: 24px; }
  .cat-grid > .cat-card:first-child .cat-card__title { font-size: 1.35rem; }
  .cat-grid > .cat-card:first-child .cat-card__short { font-size: .88rem; }
  .cat-grid > .cat-card:first-child .cat-card__desc { font-size: .8rem; }
  .cat-grid > .cat-card:last-child { grid-column: span 2; }
}
.cat-card {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.1rem; border-radius: 1rem;
  background: var(--cat-bg); border: 1.5px solid transparent;
  transition: border-color .18s;
}
.cat-card:hover { border-color: var(--cat-color); }
.cat-card__icon {
  width: 36px; height: 36px; border-radius: .6rem; flex-shrink: 0;
  background: var(--cat-color); display: flex; align-items: center; justify-content: center;
}
.cat-card__icon .material-symbols-outlined { font-size: 18px; color: white; }
.cat-card__body { min-width: 0; }
.cat-card__head { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .2rem; }
.cat-card__title { font-weight: 700; font-size: .88rem; color: var(--cat-text); }
.cat-card__count { font-size: .72rem; color: var(--cat-text); opacity: .65; }
.cat-card__short { font-size: .78rem; font-weight: 600; color: var(--cat-text); margin-bottom: .25rem; }
.cat-card__desc { font-size: .75rem; color: var(--cat-text); opacity: .75; line-height: 1.5; }

/* ── TOP HIGHLIGHTS ──────────────────────────────────── */
.city-highlights-section {
  padding: 4rem 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.highlights-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 1.75rem;
}
@media (min-width: 480px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
.hl-card {
  border-radius: 1.25rem; overflow: hidden;
  background: white; border: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(26,23,20,.06);
  transition: transform .25s, box-shadow .25s;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(26,23,20,.12); }
.hl-card__img-wrap { position: relative; overflow: hidden; height: 180px; }
.hl-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.hl-card:hover .hl-card__img { transform: scale(1.04); }
.hl-card__img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--paper), var(--parchment));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.hl-card__num {
  position: absolute; top: .65rem; left: .65rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(244,240,230,.9); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', sans-serif; font-size: .85rem; color: var(--ink);
}
.hl-card__body { padding: 1.1rem 1.1rem 1.25rem; }
.hl-card__name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem; line-height: 1.25; color: var(--ink); margin-bottom: .4rem;
}
.hl-card__desc {
  font-size: .8rem; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hl-card__foot {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .75rem; padding-top: .65rem; border-top: 1px solid var(--line);
}
.hl-card__rating {
  display: flex; align-items: center; gap: .25rem;
  font-size: .75rem; color: var(--muted);
}
.hl-card__rating .material-symbols-outlined { font-size: 13px; color: var(--orange); }

/* ── FAQ ─────────────────────────────────────────────── */
.city-faq-section {
  padding: 4rem 1.5rem;
  max-width: 760px; margin: 0 auto;
}
.faq-list { margin-top: 1.75rem; }
.faq-item {
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600; font-size: .95rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--forest); flex-shrink: 0; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 1.1rem;
  font-size: .88rem; color: var(--muted); line-height: 1.75;
}

/* ── CTA BAND ────────────────────────────────────────── */
.city-cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--teal) 100%);
  padding: 4rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.city-cta-band__orb-1 {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.07); top: -80px; right: -60px;
}
.city-cta-band__orb-2 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05); bottom: -60px; left: -30px;
}
.city-cta-band__stubbs {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  display: block; position: relative; z-index: 1;
}
.city-cta-band__eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: .6rem; position: relative; z-index: 1;
}
.city-cta-band__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem); letter-spacing: .03em;
  color: white; margin-bottom: .75rem; position: relative; z-index: 1;
}
.city-cta-band__sub {
  font-size: .9rem; color: rgba(255,255,255,.78);
  max-width: 400px; margin: 0 auto 1.75rem; line-height: 1.65;
  position: relative; z-index: 1;
}
.btn-cta-main {
  display: inline-flex; align-items: center; gap: .6rem;
  background: white; color: var(--ink);
  border: none; cursor: pointer; border-radius: 99px;
  padding: .9rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none; position: relative; z-index: 1;
}
.btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.28); }
.city-cta-band__meta {
  margin-top: 1.1rem; font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  position: relative; z-index: 1;
}

/* ── SEO TEXT ────────────────────────────────────────── */
.city-seo-section {
  padding: 4rem 1.5rem;
  max-width: 760px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.city-seo-section .section-head { padding: 0; margin-bottom: 1.5rem; }
.seo-body p { font-size: .93rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem; }
.seo-body p:last-child { margin-bottom: 0; }

/* ── CITY FOOTER ─────────────────────────────────────── */
.city-footer {
  background: var(--paper); color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 1.5rem;
}
.city-footer__brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; margin-bottom: 1.5rem;
}
.city-footer__brand img { width: 28px; height: 28px; }
.city-footer__brand-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem; letter-spacing: .08em; color: var(--ink);
}
.city-footer__links {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  margin-bottom: 1.5rem;
}
.city-footer__links a {
  color: var(--muted); text-decoration: none; font-size: .82rem;
  transition: color .15s;
}
.city-footer__links a:hover { color: var(--ink); }
.city-footer__copy { font-size: .75rem; color: var(--faint); }

/* ── BOTTOM NAV ──────────────────────────────────────── */
.city-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(244,240,230,.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  display: flex; align-items: stretch;
}
.city-bottom-nav__item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .2rem; text-decoration: none;
  color: var(--faint); font-size: .6rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .15s;
}
.city-bottom-nav__item .material-symbols-outlined { font-size: 22px; }
.city-bottom-nav__item:hover,
.city-bottom-nav__item.is-active { color: var(--forest); }

/* Error state */
.city-error {
  text-align: center; padding: 3rem 1.5rem;
}
.city-error__title {
  font-family: 'Archivo Black', sans-serif; font-size: 1.25rem;
  color: var(--ink); margin-bottom: .75rem;
}
.city-error__text { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.city-error__link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--forest); color: white; text-decoration: none;
  border-radius: 99px; padding: .6rem 1.25rem;
  font-weight: 600; font-size: .88rem;
}
