:root {
  color-scheme: light;
  --bg: #f4f0e7;
  --bg-soft: #ebe5d8;
  --surface: #fffdf7;
  --surface-strong: #ffffff;
  --surface-tint: #edf2ed;
  --ink: #17201e;
  --ink-soft: #33433f;
  --muted: #596762;
  --faint: #606d68;
  --line: #d8d7cf;
  --line-strong: #bfc5be;
  --green: #174f43;
  --green-bright: #267565;
  --green-soft: #dbe9e3;
  --orange: #ad3c1d;
  --orange-soft: #f6ded2;
  --gold: #825b18;
  --gold-soft: #f3e8c8;
  --blue: #285d78;
  --blue-soft: #dceaf0;
  --shadow: 0 18px 55px rgba(35, 51, 46, .09);
  --shadow-small: 0 8px 24px rgba(35, 51, 46, .07);
  --radius: 22px;
  --radius-small: 13px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", "Songti SC", STSong, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html.dark {
  color-scheme: dark;
  --bg: #101719;
  --bg-soft: #151f20;
  --surface: #172123;
  --surface-strong: #1b2829;
  --surface-tint: #1a2b28;
  --ink: #edf2ed;
  --ink-soft: #cbd5d1;
  --muted: #9eadaa;
  --faint: #8a9996;
  --line: #2c3938;
  --line-strong: #42514e;
  --green: #8cc8b9;
  --green-bright: #a5d8cc;
  --green-soft: #203c36;
  --orange: #f08a62;
  --orange-soft: #482b23;
  --gold: #e0ba66;
  --gold-soft: #3f3522;
  --blue: #91c6dc;
  --blue-soft: #243b46;
  --shadow: 0 20px 70px rgba(0, 0, 0, .28);
  --shadow-small: 0 10px 30px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color .25s ease, color .25s ease;
}
a { color: inherit; }
button, select { font: inherit; }
button { color: inherit; }
svg { display: block; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav-inner {
  width: min(1180px, calc(100% - 40px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.wordmark {
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: .69rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .36em;
}
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.archive-nav-link {
  padding: 4px 9px;
  border: 1px solid color-mix(in srgb, var(--orange) 42%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange-soft) 72%, transparent);
  color: var(--orange);
  font-weight: 800;
}
.nav-actions { display: flex; gap: 8px; }
.icon-button.section-nav-toggle { display: none; }
.section-nav-toggle svg { width: 19px; height: 19px; }
.section-nav-toggle span { font-size: .68rem; font-weight: 800; }
.icon-button {
  width: 44px;
  height: 44px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s, transform .2s, background .2s;
}
.icon-button:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.back-to-top { color: var(--ink); text-decoration: none; }
.back-to-top svg { width: 18px; height: 18px; }
.lang-button { font-size: .72rem; font-weight: 800; letter-spacing: .03em; }
.theme-button svg { position: absolute; width: 18px; height: 18px; transition: opacity .25s, transform .3s; }
.theme-button .sun-icon { opacity: 0; transform: rotate(90deg) scale(.65); }
.theme-button .moon-icon { opacity: 1; transform: rotate(0) scale(1); }
.dark .theme-button .sun-icon { opacity: 1; transform: rotate(0) scale(1); }
.dark .theme-button .moon-icon { opacity: 0; transform: rotate(-90deg) scale(.65); }

.hero {
  overflow: hidden;
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 2%, color-mix(in srgb, var(--green-soft) 78%, transparent) 0, transparent 33%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 70%, transparent), transparent 70%);
}
.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}
.eyebrow-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.eyebrow, .section-kicker {
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  font-size: .7rem;
  font-weight: 650;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green-bright) 15%, transparent); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.3vw, 5.15rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.045em;
}
.hero h1 span, .hero h1 em { display: block; text-wrap: balance; }
.hero h1 em { margin-top: .17em; color: var(--orange); font-weight: 400; }
.hero-lead { max-width: 660px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.13rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--green); background: var(--green); color: var(--surface); }
.dark .button-primary { color: #10201c; }
.button-ghost { background: var(--surface); }
.hero-fineprint { max-width: 650px; margin: 21px 0 0; color: var(--faint); font-size: .73rem; }

.route-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hub-map {
  width: 100%;
  height: min(52vw, 460px);
  min-height: 320px;
  background: color-mix(in srgb, var(--green-soft) 55%, var(--bg-soft));
  z-index: 0;
}
.hub-map .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: transparent;
}
.hub-map-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
}
.hub-pin-wrap {
  background: transparent !important;
  border: 0 !important;
}
.hub-pin {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 18%, transparent), var(--shadow-small);
}
.hub-pin.featured,
.hub-pin.accent {
  width: 20px;
  height: 20px;
  border-color: var(--orange);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--orange) 20%, transparent), var(--shadow-small);
}
.hub-popup {
  min-width: 160px;
  font-family: var(--sans);
}
.hub-popup strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
}
.hub-popup .hub-note {
  margin: 0;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
}
.hub-popup .hub-place,
.hub-popup .hub-coords {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.4;
}
.hub-popup a {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 750;
}
.dark .hub-map .leaflet-tile-pane { filter: brightness(.78) contrast(1.05) saturate(.9); }
.dark .hub-map .leaflet-control-attribution { background: rgba(16, 23, 25, .78); color: #b7c2bc; }
.dark .hub-map .leaflet-control-attribution a { color: #d7e4dc; }
.hub-tooltip {
  border: 0 !important;
  border-radius: 8px !important;
  background: color-mix(in srgb, var(--surface) 92%, var(--green-soft)) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow-small) !important;
  font: 700 12px var(--sans) !important;
  padding: 4px 8px !important;
}
.hub-tooltip::before { border-top-color: color-mix(in srgb, var(--surface) 92%, var(--green-soft)) !important; }
.route-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 21px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.route-card-footer div { display: flex; flex-direction: column; }
.route-card-footer div span, .route-time { color: var(--muted); font-size: .66rem; }
.route-card-footer strong { font-family: var(--serif); font-size: 1.03rem; font-weight: 600; }
.route-time { display: inline-flex; align-items: center; gap: 6px; text-align: right; }

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -1px 0 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
}
.kpi { min-height: 106px; padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.kpi:last-child { border-right: 0; }
.kpi-value { font-family: var(--serif); color: var(--green); font-size: 1.85rem; line-height: 1.1; }
.kpi span:last-child { margin-top: 4px; color: var(--muted); font-size: .72rem; font-weight: 650; }

.section-block { padding: 105px 0 8px; }
.section-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr); gap: clamp(36px, 7vw, 95px); align-items: end; margin-bottom: 38px; }
.section-heading h2 { max-width: 700px; margin: 9px 0 0; font-family: var(--serif); font-size: clamp(2rem, 3.7vw, 3.25rem); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.75; }
.compact-heading { grid-template-columns: 1fr; }

.tour-section { padding-top: 88px; }
.tour-heading { margin-bottom: 28px; }
.tour-facts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 14px;
}
.tour-fact-card,
.tour-parking-card,
.tour-plan-card,
.tour-source-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.tour-fact-card { padding: clamp(22px, 3vw, 32px); }
.tour-route-card {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green-soft) 78%, var(--surface)), var(--surface) 64%);
}
.tour-wave-card {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--blue-soft) 60%, var(--surface)), var(--surface) 70%);
}
.tour-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tour-badge.is-time { background: var(--blue-soft); color: var(--blue); }
.tour-badge.is-guide { background: var(--gold-soft); color: var(--gold); }
.tour-fact-card h3,
.tour-parking-card h3,
.tour-plan-card h3,
.tour-warning h3 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.16;
}
.tour-fact-card > p,
.tour-parking-copy > p,
.tour-warning p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.68;
}
.tour-route-block { margin-top: 23px; }
.tour-route-block > strong,
.tour-source-bar > strong {
  color: var(--faint);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tour-route { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tour-route-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--green) 28%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, var(--green-soft));
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
}
.tour-route-step:not(:last-child)::after { content: "→"; color: var(--faint); }
.tour-fact-card .tour-fineprint {
  margin-top: 16px;
  color: var(--faint);
  font-size: .69rem;
  line-height: 1.5;
}
.tour-wave-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 22px; }
.tour-wave {
  display: flex;
  min-width: 0;
  min-height: 74px;
  padding: 11px 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--blue) 34%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 82%, var(--blue-soft));
  text-align: center;
}
.tour-wave span { color: var(--faint); font-size: .58rem; font-weight: 850; text-transform: uppercase; }
.tour-wave time { color: var(--blue); font-family: var(--serif); font-size: 1.28rem; font-weight: 650; line-height: 1.25; }
.tour-time-anchors { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.tour-time-anchors span { padding: 5px 8px; border-radius: 7px; background: var(--bg-soft); color: var(--ink-soft); font-size: .68rem; font-weight: 750; }
.tour-parking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: color-mix(in srgb, var(--gold-soft) 38%, var(--surface));
}
.tour-parking-copy { min-width: 0; }
.tour-parking-copy .tour-parking-boundary { color: var(--orange); font-weight: 700; }
.tour-arrival-time {
  display: flex;
  min-width: 0;
  padding: 22px;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--gold) 40%, var(--line));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--surface) 78%, var(--gold-soft));
}
.tour-arrival-time > span { color: var(--gold); font-size: .65rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.tour-arrival-time strong { margin-top: 5px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.65rem); font-weight: 600; line-height: 1.1; white-space: nowrap; }
.tour-arrival-time small { margin-top: 8px; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.tour-parking-alternatives,
.tour-parking-no-go {
  margin-top: 14px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.tour-parking-alternatives-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}
.tour-parking-alternatives-heading .section-kicker { color: var(--blue); }
.tour-parking-alternatives-heading h3,
.tour-parking-no-go-heading h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.16;
}
.tour-parking-alternatives-heading > p,
.tour-parking-no-go-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.68;
}
.tour-parking-alternative-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.tour-parking-option {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--surface) 88%, var(--blue-soft));
}
.tour-parking-option.tone-city {
  border-top-color: var(--orange);
  background: color-mix(in srgb, var(--surface) 88%, var(--orange-soft));
}
.tour-parking-option-badge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tour-parking-option.tone-city .tour-parking-option-badge { background: var(--orange-soft); color: var(--orange); }
.tour-parking-option h4 { margin: 13px 0 0; font-family: var(--serif); font-size: 1.18rem; line-height: 1.25; }
.tour-parking-option-facts { display: grid; gap: 0; margin: 17px 0 0; }
.tour-parking-option-facts > div {
  display: grid;
  grid-template-columns: minmax(66px, .25fr) minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.tour-parking-option-facts dt,
.tour-parking-option-note > strong {
  color: var(--faint);
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tour-parking-option-facts dd,
.tour-parking-option-facts address {
  margin: 0;
  color: var(--ink-soft);
  font-size: .72rem;
  font-style: normal;
  line-height: 1.52;
}
.tour-parking-option-note { margin-top: 14px; padding: 13px 14px; border-radius: 10px; background: color-mix(in srgb, var(--bg-soft) 75%, transparent); }
.tour-parking-option-note.is-boundary { border-left: 3px solid var(--orange); background: color-mix(in srgb, var(--orange-soft) 35%, var(--surface)); }
.tour-parking-option-note p { margin: 6px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.56; }
.tour-parking-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tour-parking-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--green);
  font-size: .65rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}
.tour-parking-link.is-map { color: var(--blue); }
.tour-parking-link:hover { border-color: currentColor; background: var(--bg-soft); }
.tour-parking-estimate { margin: 16px 0 0; color: var(--faint); font-size: .68rem; line-height: 1.55; }
.tour-parking-conditional {
  margin-top: 14px;
  padding: 15px 17px;
  border: 1px dashed color-mix(in srgb, var(--orange) 50%, var(--line));
  border-radius: 11px;
  background: color-mix(in srgb, var(--orange-soft) 34%, var(--surface));
}
.tour-parking-conditional strong { color: var(--orange); font-size: .75rem; }
.tour-parking-conditional p { margin: 7px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.55; }
.tour-parking-no-go { background: color-mix(in srgb, var(--orange-soft) 30%, var(--surface)); }
.tour-parking-no-go-heading { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr); gap: clamp(24px, 5vw, 70px); align-items: end; }
.tour-parking-no-go-heading h3 { color: var(--orange); }
.tour-parking-no-go-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.tour-parking-no-go-item { min-width: 0; padding: 17px; border: 1px solid color-mix(in srgb, var(--orange) 30%, var(--line)); border-radius: 11px; background: var(--surface); }
.tour-parking-no-go-item h4 { margin: 0; font-size: .78rem; line-height: 1.4; }
.tour-parking-no-go-item p { margin: 8px 0 0; color: var(--muted); font-size: .67rem; line-height: 1.55; }
.tour-parking-no-go-item .tour-parking-links { margin-top: 12px; }
.tour-plan-card { margin-top: 14px; padding: clamp(24px, 4vw, 38px); }
.tour-plan-heading .section-kicker { display: block; color: var(--gold); }
.tour-plan-heading h3 { margin-top: 6px; }
.tour-plan-intro { margin: 8px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.tour-plan-list {
  counter-reset: tour-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.tour-plan-item {
  counter-increment: tour-step;
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--surface) 88%, var(--bg-soft));
}
.tour-plan-item::before {
  content: counter(tour-step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--faint);
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 700;
}
.tour-plan-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.tour-plan-meta time { color: var(--green); font-family: var(--serif); font-size: 1rem; font-weight: 700; }
.tour-plan-tone { padding: 3px 6px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); font-size: .56rem; font-weight: 850; text-transform: uppercase; }
.tour-plan-item.tone-official .tour-plan-tone { background: var(--blue-soft); color: var(--blue); }
.tour-plan-item.tone-walk .tour-plan-tone { background: var(--green-soft); color: var(--green); }
.tour-plan-item h4 { margin: 9px 0 0; font-size: .84rem; line-height: 1.42; }
.tour-plan-item p { margin: 7px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.55; }
.tour-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-top: 14px;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--orange) 45%, var(--line));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--orange-soft) 58%, var(--surface));
}
.tour-warning-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: var(--surface); font-weight: 900; }
.tour-warning h3 { margin: 1px 0 0; color: var(--orange); font-family: var(--sans); font-size: .98rem; }
.tour-warning p { margin-top: 7px; }
.tour-source-bar { display: flex; align-items: flex-start; gap: 24px; margin-top: 14px; padding: 19px 22px; box-shadow: none; }
.tour-source-bar > strong { flex: 0 0 auto; padding-top: 11px; }
.tour-source-list { display: flex; flex-wrap: wrap; gap: 7px; min-width: 0; }
.tour-source-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}
.tour-source-list a:hover { border-color: var(--green); background: var(--green-soft); }

.parking-traffic-section { padding-top: 96px; }
.parking-map-heading .section-kicker { color: var(--blue); }
.parking-view-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 14px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

html:not(.nav-ready) .parking-view-tabs,
html:not(.nav-ready) .parking-geographic-map-actions,
html:not(.nav-ready) .parking-map-toolbar {
  display: none;
}
.parking-view-tabs [role="tab"] {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
}
.parking-view-tabs [role="tab"]:hover { color: var(--green); }
.parking-view-tabs [role="tab"][aria-selected="true"] {
  border-color: var(--green);
  background: var(--green);
  color: var(--surface);
}
.parking-view-panel[hidden] { display: none !important; }
.parking-geographic-intro {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: end;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--green-soft) 38%, var(--surface));
  box-shadow: var(--shadow-small);
}
.parking-geographic-intro h3 { margin: 7px 0 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.2; }
.parking-geographic-intro p { margin: 0; color: var(--ink-soft); font-size: .79rem; line-height: 1.68; }
.parking-geographic-map { background: color-mix(in srgb, var(--green-soft) 45%, var(--bg-soft)); }
.parking-geographic-fallback { display: grid; height: 100%; place-content: center; gap: 9px; padding: 28px; text-align: center; }
.parking-geographic-fallback strong { font-family: var(--serif); font-size: 1.2rem; }
.parking-geographic-fallback p { max-width: 520px; margin: 0; color: var(--muted); font-size: .74rem; }
.parking-geographic-map-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 8px; }
.parking-geographic-map-actions .parking-map-touch-toggle { margin-top: 0; }
.parking-geographic-map-actions .parking-map-touch-toggle[hidden] + .parking-geographic-reset { grid-column: 1 / -1; }
.parking-geographic-reset {
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--green);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
}
.parking-geographic-reset:hover { border-color: var(--green); background: var(--green-soft); }
.parking-geographic-tile-error {
  position: absolute;
  z-index: 700;
  right: 10px;
  bottom: 10px;
  left: 10px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--orange) 52%, var(--line));
  border-radius: 9px;
  background: color-mix(in srgb, var(--surface) 92%, var(--orange-soft));
  color: var(--orange);
  font-size: .68rem;
  font-weight: 750;
  line-height: 1.45;
}
.parking-geographic-popup > p { margin: 8px 0 0; color: #33433f; font-size: .69rem; line-height: 1.5; }
.parking-geographic-popup a { color: #174f43; text-underline-offset: 2px; }
.parking-geographic-osm-link { display: inline-flex; margin-top: 10px; font-size: .68rem; font-weight: 800; }
.parking-geographic-no-navigation { display: block; margin-top: 7px; color: #ad3c1d; font-size: .62rem; }
.parking-geographic-boundary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid color-mix(in srgb, var(--orange) 42%, var(--line));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--orange-soft) 44%, var(--surface));
}
.parking-geographic-boundary strong { color: var(--orange); font-size: .78rem; }
.parking-geographic-boundary p { max-width: 760px; margin: 6px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.6; }
.parking-geographic-map .leaflet-control-zoom a { width: 44px; height: 44px; font-size: 1.25rem; line-height: 44px; }
.dark .parking-geographic-map .leaflet-tile-pane { filter: brightness(.78) contrast(1.05) saturate(.9); }
.dark .parking-geographic-map .leaflet-control-attribution { background: rgba(16, 23, 25, .82); color: #b7c2bc; }
.dark .parking-geographic-map .leaflet-control-attribution a { color: #d7e4dc; }
.parking-map-evidence {
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--blue) 28%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--blue-soft) 32%, var(--surface));
  box-shadow: var(--shadow-small);
}
.parking-map-evidence > div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.parking-map-evidence strong { margin-top: 12px; font-family: var(--serif); font-size: clamp(1.18rem, 2.2vw, 1.7rem); line-height: 1.2; }
.parking-map-evidence small { margin-top: 5px; color: var(--muted); font-size: .72rem; }
.parking-map-evidence p { margin: 0; color: var(--ink-soft); font-size: .77rem; line-height: 1.68; }

.parking-map-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
  margin-top: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}
.parking-map-toolbar fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.parking-map-toolbar legend { margin-bottom: 8px; color: var(--faint); font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.parking-map-filter-row { display: flex; flex-wrap: wrap; gap: 7px; }
.parking-map-filter-button {
  display: inline-flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 11px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--muted);
  cursor: pointer;
  font-size: .67rem;
  font-weight: 750;
  line-height: 1.2;
}
.parking-map-filter-button.is-layer { flex-direction: row; }
.parking-map-filter-button small { color: var(--faint); font-size: .56rem; font-weight: 650; }
.parking-map-filter-button:hover { border-color: var(--green); color: var(--green); }
.parking-map-filter-button[aria-pressed="true"] { border-color: var(--green); background: var(--green); color: var(--surface); }
.parking-map-filter-button[aria-pressed="true"] small { color: color-mix(in srgb, var(--surface) 78%, transparent); }
.parking-map-caveat { margin: 12px 3px 0; color: var(--faint); font-size: .67rem; line-height: 1.55; }

.parking-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, .66fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}
.parking-map-shell {
  position: sticky;
  top: 82px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.parking-traffic-map {
  position: relative;
  width: 100%;
  height: 570px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.parking-map-fallback {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
}
.parking-map-fallback img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}
.parking-traffic-map.is-diagram-error .parking-map-fallback { grid-template-rows: auto auto auto; place-content: center; padding: 30px; }
.parking-map-fallback strong { font-family: var(--serif); font-size: 1.22rem; }
.parking-map-fallback p { max-width: 510px; margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.6; }
.parking-map-fallback a { color: var(--green); font-size: .71rem; font-weight: 750; }
.parking-map-touch-toggle {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
}
.parking-map-touch-toggle[aria-pressed="true"] { background: var(--blue); color: var(--surface); }
.parking-map-line-legend { display: flex; flex-wrap: wrap; gap: 7px 12px; padding: 10px 4px 2px; }
.parking-map-line-legend span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .59rem; font-weight: 720; }
.parking-line-swatch { display: inline-block; width: 28px; height: 4px; border-radius: 999px; background: #d5a900; }
.parking-line-swatch.kind-oneway { background: repeating-linear-gradient(90deg, #e86018 0 4px, transparent 4px 8px); }
.parking-line-swatch.kind-closed { background: repeating-linear-gradient(90deg, #c73333 0 3px, transparent 3px 8px); }
.parking-line-swatch.kind-permit { background: repeating-linear-gradient(90deg, #df6ea6 0 12px, transparent 12px 18px); }
.parking-line-swatch.kind-test { background: repeating-linear-gradient(90deg, #22292b 0 5px, transparent 5px 9px); }

.parking-map-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.parking-map-panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.parking-map-panel-heading .section-kicker { color: var(--gold); }
.parking-map-panel-heading h3 { margin: 4px 0 0; font-family: var(--serif); font-size: 1.16rem; line-height: 1.28; }
.parking-map-panel-heading > p { flex: 0 0 auto; margin: 0; color: var(--faint); font-size: .61rem; }
.parking-map-list { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.parking-map-list-item { min-width: 0; }
.parking-map-list-item button {
  display: grid;
  width: 100%;
  min-height: 54px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 11px;
  background: color-mix(in srgb, var(--surface) 86%, var(--green-soft));
  cursor: pointer;
  text-align: left;
}
.parking-map-list-item.kind-general button { border-left-color: var(--gold); background: color-mix(in srgb, var(--surface) 86%, var(--gold-soft)); }
.parking-map-list-item.kind-ada button { border-left-color: var(--blue); background: color-mix(in srgb, var(--surface) 86%, var(--blue-soft)); }
.parking-map-list-item.kind-assigned button { border-left-color: var(--faint); background: color-mix(in srgb, var(--surface) 88%, var(--bg-soft)); }
.parking-map-list-item.kind-transit button { border-left-color: var(--orange); background: color-mix(in srgb, var(--surface) 88%, var(--orange-soft)); }
.parking-map-list-item button:hover { border-color: var(--green); transform: translateY(-1px); }
.parking-map-list-code {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--surface);
  font-size: .7rem;
  font-weight: 900;
}
.parking-map-list-copy { display: grid; min-width: 0; gap: 5px; }
.parking-map-list-meta { display: flex; min-width: 0; align-items: flex-start; justify-content: space-between; gap: 8px; }
.parking-map-list-meta strong { min-width: 0; font-size: .76rem; line-height: 1.35; }
.parking-map-list-meta em { flex: 0 0 auto; padding: 2px 5px; border-radius: 999px; background: var(--bg-soft); color: var(--faint); font-size: .51rem; font-style: normal; font-weight: 850; line-height: 1.4; text-transform: uppercase; }
.parking-map-list-copy > span:not(.parking-map-list-meta) { color: var(--ink-soft); font-size: .64rem; line-height: 1.45; }
.parking-map-list-copy small { color: var(--muted); font-size: .61rem; line-height: 1.5; }
.parking-map-empty { padding: 30px 12px; color: var(--muted); font-size: .72rem; text-align: center; }

.parking-map-marker-wrap { border: 0; background: transparent; }
.parking-map-marker {
  display: block;
  width: 26px;
  height: 26px;
  border: 3px solid #174f43;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9), 0 2px 9px rgba(14, 25, 22, .34);
}
.parking-map-marker.kind-general { border-color: #8b651a; }
.parking-map-marker.kind-ada { border-color: #285d78; border-radius: 7px; }
.parking-map-marker.kind-assigned { border-color: #66716e; }
.parking-map-marker.kind-transit { border-color: #ad3c1d; }
.parking-map-popup { color: #17201e; font-family: var(--sans); }
.parking-traffic-map .leaflet-popup-pane { z-index: 900; }
.parking-leaflet-popup .leaflet-popup-content { width: min(280px, calc(100vw - 100px)) !important; }
.parking-map-popup-title { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 9px; align-items: center; }
.parking-map-popup-title > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; background: #17201e; color: #fff; font-weight: 900; }
.parking-map-popup-title strong { display: block; font-size: .86rem; line-height: 1.3; }
.parking-map-popup-title em { display: block; margin-top: 2px; color: #596762; font-size: .58rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.parking-map-popup dl { display: grid; gap: 8px; margin: 13px 0 0; }
.parking-map-popup dl > div { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 8px; padding-top: 7px; border-top: 1px solid #d8d7cf; }
.parking-map-popup dt { color: #606d68; font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.parking-map-popup dd { margin: 0; color: #33433f; font-size: .66rem; line-height: 1.48; }
.parking-map-popup.is-traffic p { margin: 7px 0 0; color: #33433f; font-size: .69rem; line-height: 1.5; }
.parking-map-popup.is-traffic small { display: block; margin-top: 7px; color: #596762; font-size: .59rem; line-height: 1.45; }

.parking-map-warning {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid color-mix(in srgb, var(--orange) 42%, var(--line));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--orange-soft) 50%, var(--surface));
}
.parking-map-warning strong { color: var(--orange); font-size: .78rem; }
.parking-map-warning p { max-width: 770px; margin: 6px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.58; }
.parking-map-source-links { display: flex; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.parking-map-source-links a { display: inline-flex; min-height: 44px; align-items: center; padding: 7px 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); color: var(--green); font-size: .64rem; font-weight: 750; text-decoration: none; }
.parking-map-source-links a:hover { border-color: var(--green); }
.parking-traffic-map .leaflet-control-zoom a {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  line-height: 44px;
}
.parking-traffic-map .leaflet-image-layer { background: #fff; }
.parking-traffic-map.leaflet-container { background: #fff; }

.brand-house-heading .section-kicker { color: var(--blue); }
.brand-house-grid { display: block; }
.brand-house-lane + .brand-house-lane { margin-top: 38px; }
.brand-house-lane-heading { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(280px, 1.28fr); gap: 28px; align-items: end; margin-bottom: 16px; }
.brand-house-lane-heading h3 { margin: 0; font-family: var(--serif); font-size: 1.55rem; line-height: 1.18; }
.brand-house-lane-heading p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.62; }
.brand-house-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.brand-house-card {
  --brand-house-accent: var(--gold);
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-house-accent);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.brand-house-card.tone-public { --brand-house-accent: var(--green); }
.brand-house-card.tone-invite { --brand-house-accent: var(--orange); }
.brand-house-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-house-accent) 13%, var(--surface));
  color: var(--brand-house-accent);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1.35;
}
.brand-house-card > summary {
  display: grid;
  min-height: 154px;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 10px 14px;
  align-content: start;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}
.brand-house-card > summary::-webkit-details-marker { display: none; }
.brand-house-card > summary::after { content: "+"; grid-column: 2; grid-row: 1 / span 3; align-self: center; color: var(--brand-house-accent); font-size: 1.2rem; font-weight: 900; }
.brand-house-card[open] > summary::after { content: "−"; }
.brand-house-card > summary .brand-house-row-main,
.brand-house-card > summary .brand-house-row-date,
.brand-house-card > summary .brand-house-row-action { grid-column: 1; }
.brand-house-card-content { border-top: 1px solid var(--line); padding: 4px 18px 18px; }
.brand-house-card .brand-house-facts { padding: 0; }
.brand-house-card .brand-house-source-block { padding: 17px 0 0; }
.brand-house-card .brand-house-field-report { margin-right: 0; margin-left: 0; }
.brand-house-facts { margin: 0; padding: 0 20px; }
.brand-house-facts > div { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.brand-house-facts dt { color: var(--faint); font-size: .68rem; font-weight: 850; letter-spacing: .045em; line-height: 1.45; text-transform: uppercase; }
.brand-house-facts dd { margin: 0; color: var(--ink-soft); font-size: .75rem; line-height: 1.58; }
.brand-house-field-report { margin: 4px 20px 0; padding: 13px 14px; border-left: 3px solid var(--gold); border-radius: 9px; background: color-mix(in srgb, var(--gold-soft) 48%, var(--surface)); }
.brand-house-field-report strong { color: var(--gold); font-size: .68rem; line-height: 1.45; }
.brand-house-field-report p { margin: 6px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.brand-house-source-block { margin-top: auto; padding: 17px 20px 20px; }
.brand-house-source-block > strong { color: var(--faint); font-size: .68rem; font-weight: 850; letter-spacing: .045em; text-transform: uppercase; }
.brand-house-source-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.brand-house-source-links a { display: inline-flex; min-height: 44px; align-items: center; gap: 5px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--green); font-size: .72rem; font-weight: 750; line-height: 1.35; text-decoration: none; }
.brand-house-source-links a:hover { border-color: var(--green); background: var(--green-soft); }
.brand-house-row-list { display: grid; gap: 10px; }
.brand-house-row {
  --brand-house-accent: var(--gold);
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-house-accent);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.brand-house-row.tone-invite { --brand-house-accent: var(--orange); }
.brand-house-row.tone-public { --brand-house-accent: var(--green); }
.brand-house-row > summary {
  display: grid;
  min-height: 68px;
  grid-template-columns: minmax(210px, .8fr) minmax(260px, 1.2fr) auto 22px;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}
.brand-house-row > summary::-webkit-details-marker { display: none; }
.brand-house-row > summary::after { content: "+"; grid-column: 4; grid-row: 1; color: var(--brand-house-accent); font-size: 1.2rem; font-weight: 900; }
.brand-house-row[open] > summary::after { content: "−"; }
.brand-house-row-main { display: grid; gap: 7px; min-width: 0; }
.brand-house-row-main strong { color: var(--ink); font-family: var(--serif); font-size: 1.02rem; line-height: 1.3; }
.brand-house-row-date { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.brand-house-row-action { align-self: end; color: var(--green); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.brand-house-action-open { display: none; }
.brand-house-card[open] > summary .brand-house-action-closed,
.brand-house-row[open] > summary .brand-house-action-closed,
.brand-house-lane-fold[open] > summary .brand-house-action-closed { display: none; }
.brand-house-card[open] > summary .brand-house-action-open,
.brand-house-row[open] > summary .brand-house-action-open,
.brand-house-lane-fold[open] > summary .brand-house-action-open { display: inline; }
.brand-house-row-content { border-top: 1px solid var(--line); padding: 4px 18px 18px; }
.brand-house-row-location { margin: 14px 2px 4px; color: var(--muted); font-size: .75rem; line-height: 1.58; }
.brand-house-row .brand-house-facts { padding: 0; }
.brand-house-row .brand-house-source-block { padding: 17px 0 0; }
.brand-house-row .brand-house-field-report { margin-right: 0; margin-left: 0; }
.brand-house-evidence { margin-top: 14px; border-top: 1px solid var(--line); }
.brand-house-evidence > summary { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; cursor: pointer; color: var(--green); font-size: .72rem; font-weight: 800; }
.brand-house-evidence > summary span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 999px; background: var(--surface-tint); color: var(--muted); font-size: .66rem; }
.brand-house-evidence-content { padding-bottom: 2px; }
.brand-house-lane-fold { border: 1px solid var(--line); border-radius: var(--radius-small); background: color-mix(in srgb, var(--surface-tint) 62%, var(--surface)); }
.brand-house-lane-fold > summary { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 16px; cursor: pointer; color: var(--ink-soft); font-size: .76rem; font-weight: 800; list-style: none; }
.brand-house-lane-fold > summary::-webkit-details-marker { display: none; }
.brand-house-lane-fold > summary .brand-house-row-action { flex: 0 0 auto; }
.brand-house-lane-fold-content { padding: 12px; border-top: 1px solid var(--line); }
.brand-house-past-group { margin-top: 14px; border: 1px dashed var(--line-strong); border-radius: var(--radius-small); background: color-mix(in srgb, var(--surface-tint) 62%, transparent); }
.brand-house-past-group > summary { display: flex; min-height: 44px; align-items: center; padding: 10px 14px; cursor: pointer; color: var(--muted); font-size: .72rem; font-weight: 800; list-style-position: inside; }
.brand-house-past-group > .brand-house-card-grid,
.brand-house-past-group > .brand-house-row-list { padding: 0 12px 12px; }
.brand-house-guide-notes { margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.brand-house-guide-notes > summary { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 16px; cursor: pointer; list-style: none; }
.brand-house-guide-notes > summary::-webkit-details-marker { display: none; }
.brand-house-guide-notes > summary strong { color: var(--ink-soft); font-size: .76rem; }
.brand-house-guide-notes > summary span { color: var(--green); font-size: .68rem; font-weight: 800; }
.brand-house-guide-notes > summary::after { content: "+"; color: var(--blue); font-size: 1.1rem; font-weight: 900; }
.brand-house-guide-notes[open] > summary::after { content: "−"; }
.brand-house-guide-notes-content { padding: 0 14px 14px; border-top: 1px solid var(--line); }
.brand-house-directory-note { margin: 12px 0 0; padding: 14px 16px; border-left: 3px solid var(--blue); border-radius: 8px; background: var(--surface-tint); color: var(--muted); font-size: .74rem; line-height: 1.62; }
.brand-house-directory-note a { display: inline-flex; min-height: 44px; align-items: center; gap: 5px; color: var(--green); font-weight: 800; text-underline-offset: 3px; }
.brand-house-safety { display: flex; gap: 14px; margin-top: 14px; padding: 17px; border: 1px solid color-mix(in srgb, var(--orange) 42%, var(--line)); border-radius: var(--radius-small); background: color-mix(in srgb, var(--orange-soft) 43%, var(--surface)); }
.brand-house-safety > span { display: grid; flex: 0 0 auto; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--orange); color: var(--surface); font-weight: 900; }
.brand-house-safety strong { color: var(--orange); font-size: .8rem; }
.brand-house-safety p { margin: 6px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.58; }

.plan-track { display: grid; grid-template-columns: 1fr; gap: 14px; }
.plan-track::before { display: none; }
.plan-day {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.05fr);
  gap: 14px;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}
.plan-day-copy {
  position: relative;
  padding: 18px 18px 16px;
}
.plan-day-copy::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 0 18px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.plan-day.flagship .plan-day-copy::before {
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.plan-day-map {
  position: relative;
  min-height: 220px;
  height: 100%;
  background: color-mix(in srgb, var(--green-soft) 55%, var(--bg-soft));
  border-left: 1px solid var(--line);
}
.plan-day-map .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: transparent;
}
.plan-day-map .leaflet-control-zoom a {
  width: 44px;
  height: 44px;
  line-height: 44px;
}
.plan-map-status {
  position: absolute;
  z-index: 500;
  left: 10px;
  bottom: 10px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  pointer-events: none;
}
.plan-map-status.unavailable { color: var(--orange); }
.stop-pin-wrap {
  display: grid !important;
  place-items: center;
  background: transparent !important;
  border: 0 !important;
}
.stop-pin {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 16%, transparent), var(--shadow-small);
  color: var(--green);
  font-size: .58rem;
  font-weight: 850;
  line-height: 1;
}
.stop-pin.choice {
  border-color: var(--orange);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--orange) 18%, transparent), var(--shadow-small);
  color: var(--orange);
}
.stop-pin.optional,
.stop-pin.add-on {
  border-color: var(--orange);
  border-style: dashed;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 12%, transparent), var(--shadow-small);
  color: var(--orange);
}
.plan-day-map .plan-marker-leg { stroke: var(--ink-soft); }
.plan-day-map .plan-marker-origin {
  stroke: var(--ink-soft);
  fill: var(--surface);
}
.plan-stops-label {
  margin-top: 14px;
  color: var(--faint);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plan-route-graph { display: grid; gap: 10px; margin-top: 7px; }
.plan-route-group { display: grid; gap: 6px; }
.plan-route-group + .plan-route-group { padding-top: 8px; border-top: 1px dashed var(--line); }
.plan-route-group-label {
  color: var(--faint);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan-branch {
  display: grid;
  grid-template-columns: minmax(94px, 34%) 1fr;
  align-items: start;
  gap: 8px;
}
.plan-branch-label {
  padding-top: 5px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}
.plan-branch.kind-add-on .plan-branch-label { color: var(--green); }
.plan-stops { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.plan-stop-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px 4px 5px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.3;
}
.plan-stop-chip strong,
.plan-timeline-markers span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  min-height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--green);
  color: var(--surface);
  font-size: .55rem;
  font-weight: 850;
  line-height: 1;
}
.plan-stop-chip.kind-choice { background: color-mix(in srgb, var(--orange) 14%, transparent); color: var(--orange); }
.plan-stop-chip.kind-choice strong { background: var(--orange); }
.plan-stop-chip.kind-add-on,
.plan-stop-chip.is-optional { border: 1px dashed currentColor; background: transparent; }
.plan-stop-optional {
  color: var(--faint);
  font-size: .66rem;
  font-weight: 750;
}
.plan-branch-no-pin {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 750;
}
.plan-route-hint { font-size: .7rem; color: var(--faint); margin: 8px 0 0; line-height: 1.45; }
.dark .plan-day-map .leaflet-tile-pane { filter: brightness(.78) contrast(1.05) saturate(.9); }
.dark .plan-day-map .leaflet-control-attribution { background: rgba(16, 23, 25, .78); color: #b7c2bc; }
.dark .plan-day-map .leaflet-control-attribution a { color: #d7e4dc; }
.plan-date { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.plan-date strong { font-family: var(--serif); font-size: 1.12rem; }
.plan-date span { color: var(--faint); font-size: .67rem; font-weight: 750; text-transform: uppercase; }
.plan-day h3 { margin: 16px 0 6px; font-size: .89rem; line-height: 1.4; }
.plan-day p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.58; }
.plan-cost { display: inline-flex; margin-top: 15px; padding: 4px 7px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-size: .65rem; font-weight: 800; }
.plan-timeline {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 88%, var(--ink) 4%);
  overflow: hidden;
}
.plan-timeline summary {
  list-style: none;
  padding: 10px 12px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  cursor: pointer;
}
.plan-timeline summary::-webkit-details-marker { display: none; }
.plan-timeline summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: .95rem;
  line-height: 1;
}
.plan-timeline[open] summary::after { content: "−"; }
.plan-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-timeline-item {
  display: grid;
  grid-template-columns: minmax(88px, 28%) 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.plan-timeline-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-timeline-time strong {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.25;
}
.plan-tone {
  display: inline-flex;
  width: fit-content;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--line);
  color: var(--muted);
}
.plan-timeline-item.tone-core .plan-tone { background: var(--green-soft); color: var(--green); }
.plan-timeline-item.tone-optional .plan-tone { background: color-mix(in srgb, var(--orange) 18%, transparent); color: var(--orange); }
.plan-timeline-item.tone-alt .plan-tone { background: color-mix(in srgb, var(--ink) 8%, transparent); color: var(--ink); }
.plan-timeline-item.tone-transit .plan-tone { background: transparent; border: 1px dashed var(--line); color: var(--faint); }
.plan-timeline-title {
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.plan-timeline-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 5px;
}
.plan-timeline-markers span {
  min-width: 22px;
  min-height: 18px;
  background: var(--orange);
  font-size: .62rem;
}
.plan-timeline-note {
  margin: 4px 0 0;
  font-size: .66rem;
  line-height: 1.45;
  color: var(--muted);
}
.plan-timeline-hint {
  margin: 0;
  padding: 0 12px 12px;
  font-size: .68rem;
  line-height: 1.45;
  color: var(--faint);
}
.decision-note { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; margin-top: 18px; padding: 17px 19px; border: 1px solid var(--line); border-radius: var(--radius-small); background: color-mix(in srgb, var(--gold-soft) 58%, var(--surface)); color: var(--ink-soft); font-size: .82rem; }
.decision-icon { color: var(--gold); font-size: 1.1rem; }
.decision-note strong { margin-right: 5px; color: var(--ink); }

.filter-panel { margin-bottom: 22px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.filter-panel .filter-row + .filter-row { margin-top: 10px; }
.filter-panel .filter-row-secondary { padding-top: 10px; border-top: 1px solid var(--line); }
.filter-more {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-tint) 58%, var(--surface));
}
.filter-more > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 11px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .73rem;
  font-weight: 750;
  list-style: none;
}
.filter-more > summary::-webkit-details-marker { display: none; }
.filter-more > summary::after {
  content: "+";
  margin-left: auto;
  color: var(--green);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}
.filter-more[open] > summary::after { content: "−"; }
.filter-more > summary.has-active-filters { color: var(--green); }
.filter-more-content { padding: 10px; border-top: 1px solid var(--line); }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-row-secondary { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.filter-button {
  min-height: 44px;
  padding: 6px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.filter-button:hover { color: var(--ink); background: var(--bg-soft); }
.filter-button[aria-pressed="true"] { border-color: var(--green); background: var(--green-soft); color: var(--green); }
.filter-row-secondary .filter-button[aria-pressed="true"] { border-color: var(--orange); background: var(--orange-soft); color: var(--orange); }
.filter-note { margin: 8px 0 0; color: var(--faint); font-size: .7rem; line-height: 1.45; }

.filter-panel .live-clock-row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.live-clock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.live-clock strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}
.live-window-note {
  margin: 0;
  max-width: 420px;
  color: var(--orange);
  font-size: .74rem;
  line-height: 1.45;
}
.filter-panel .live-actions { margin-top: 12px; }
.filter-panel .live-status {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 650;
  line-height: 1.45;
}
.filter-panel .live-hint {
  margin: 8px 0 0;
  color: var(--faint);
  font-size: .7rem;
  line-height: 1.45;
}

.plan-day.is-today .plan-day-copy::before,
.day-group.is-today .day-heading time {
  color: var(--green);
}
.plan-day.is-today,
.day-group.is-today .day-heading {
  border-color: color-mix(in srgb, var(--green) 28%, var(--line));
}
.plan-day-past,
.day-group-past {
  border: 1px dashed var(--line);
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--bg-soft) 65%, var(--surface));
}
.plan-day-past { padding: 12px; margin-bottom: 12px; }
.plan-day-past > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.plan-day-past > summary::-webkit-details-marker,
.day-group-past > summary::-webkit-details-marker { display: none; }
.plan-day-past > summary::after,
.day-group-past > summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--green);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}
.plan-day-past[open] > summary::after,
.day-group-past[open] > summary::after { content: "−"; }
.plan-day-past[open] > summary { margin-bottom: 10px; }
.day-group-past { margin-bottom: 8px; }
.day-group-past > summary.day-heading-past {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: static;
  padding: 10px 12px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.day-group-past[open] .day-group { margin-top: 8px; }
.day-group-past[open] .day-group + .day-group { margin-top: 18px; }

.temporal-section.is-past { opacity: 1; }
.temporal-section.is-past { padding-top: 44px; }
.temporal-section.is-past > .section-heading { display: none; }
.temporal-section:not(.is-past):not([data-active-collapsible]) .temporal-section-summary { display: none; }
.temporal-section-details { margin: 0; }
.temporal-section-summary {
  min-height: 52px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--bg-soft) 72%, var(--surface));
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 780;
  letter-spacing: .02em;
}
.temporal-section-summary::marker { color: var(--orange); }
.temporal-past-badge {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .035em;
}
.temporal-active-hint {
  flex: 0 0 auto;
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
}
.temporal-section.is-past .temporal-active-hint,
.temporal-section:not(.is-past) .temporal-past-badge { display: none; }
.temporal-section-details[open] .temporal-section-content { margin-top: 18px; }
.temporal-section:not(.is-past) .temporal-section-details[open] .temporal-section-content { margin-top: 0; }
.temporal-section[data-active-collapsible]:not(.is-past) .temporal-section-details[open] .temporal-section-content { margin-top: 18px; }
.is-past { opacity: .72; }
.plan-day-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.plan-day-badge.is-past { background: var(--bg-soft); color: var(--faint); }
.event-area {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--faint);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .03em;
  vertical-align: middle;
}

.nearby-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.nearby-card { display: flex; flex-direction: column; gap: 10px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.nearby-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.nearby-top time { color: var(--green); font-family: var(--serif); font-size: 1.02rem; }
.nearby-card h3 { margin: 0; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; }
.nearby-summary, .nearby-why { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.58; }
.nearby-why strong { margin-right: 5px; color: var(--ink); }
.nearby-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 4px; }
.nearby-drive { color: var(--faint); font-size: .68rem; line-height: 1.4; }
.nearby-drive span { display: block; margin-bottom: 2px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.nearby-card .event-source { margin-top: auto; }
.schedule-results { display: grid; gap: 34px; }
.day-group { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 26px; align-items: start; }
.day-heading { position: sticky; top: 86px; }
.day-heading time { display: block; font-family: var(--serif); font-size: 1.65rem; line-height: 1.15; }
.day-heading span { display: block; margin-top: 6px; color: var(--muted); font-size: .72rem; }
.day-heading em { display: inline-flex; margin-top: 13px; padding: 4px 7px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-size: .64rem; font-style: normal; font-weight: 800; }
.event-list { display: grid; gap: 12px; }
.event-card { border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.event-card:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-small); }
.event-main { display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 18px; align-items: start; padding: 19px; }
.event-main.has-thumb { grid-template-columns: 64px 92px minmax(0, 1fr) auto; }
.event-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-soft);
}
.event-time { font-family: var(--serif); color: var(--green); font-size: 1.05rem; line-height: 1.25; }
.event-time small { display: block; margin-top: 4px; color: var(--faint); font-family: var(--sans); font-size: .62rem; }
.event-copy h3 { margin: 0; font-size: .97rem; line-height: 1.35; }
.event-location { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
.event-summary { margin: 10px 0 0; color: var(--ink-soft); font-size: .79rem; line-height: 1.58; }
.event-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag { display: inline-flex; align-items: center; padding: 4px 7px; border-radius: 6px; background: var(--bg-soft); color: var(--muted); font-size: .63rem; font-weight: 800; }
.tag.free { background: var(--green-soft); color: var(--green); }
.tag.paid { background: var(--gold-soft); color: var(--gold); }
.tag.alert { background: var(--orange-soft); color: var(--orange); }
.tag.checked { border: 1px solid var(--line-strong); background: var(--surface-tint); color: var(--ink-soft); }
.event-score { min-width: 86px; text-align: right; }
.event-score strong { display: block; color: var(--orange); font-family: var(--serif); font-size: 1.05rem; }
.event-score span { color: var(--faint); font-size: .62rem; }
.event-more { border-top: 1px solid var(--line); }
.event-more summary { list-style: none; padding: 11px 19px; color: var(--muted); font-size: .7rem; font-weight: 750; cursor: pointer; }
.event-more summary::-webkit-details-marker { display: none; }
.event-more summary::after { content: "+"; float: right; color: var(--green); font-size: 1rem; line-height: 1; }
.event-more[open] summary::after { content: "−"; }
.event-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 0 19px 18px; }
.event-detail p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.6; }
.event-detail strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.event-thumb-credit {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--faint);
  font-size: .64rem;
  line-height: 1.45;
}
.event-thumb-credit a { color: var(--muted); text-underline-offset: 2px; }
.event-thumb-credit a:hover { color: var(--green); }
.event-sources { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.event-source { display: inline-flex; width: fit-content; color: var(--green); font-size: .72rem; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.empty-state { padding: 35px; border: 1px dashed var(--line-strong); border-radius: var(--radius-small); color: var(--muted); text-align: center; }
.noscript { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-small); }

.stay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.stay-card { display: flex; min-height: 315px; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.stay-card.recommended { border-color: var(--green); box-shadow: inset 0 4px 0 var(--green); }
.stay-card.free-stay { border-color: color-mix(in srgb, var(--orange) 55%, var(--line)); box-shadow: inset 0 4px 0 var(--orange); }
.stay-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.stay-card h3 { margin: 0; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; }
.stay-badge { padding: 4px 7px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-size: .59rem; font-weight: 800; }
.stay-badge.free { background: var(--orange-soft); color: var(--orange); }
.stay-price { margin-top: 23px; color: var(--orange); font-family: var(--serif); font-size: 1.75rem; line-height: 1.15; }
.stay-price small { display: block; margin-top: 5px; color: var(--muted); font-family: var(--sans); font-size: .63rem; }
.stay-metrics { display: grid; gap: 8px; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line); }
.stay-metrics div { display: grid; gap: 2px; }
.stay-metrics dt { color: var(--faint); font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.stay-metrics dd { margin: 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.35; font-weight: 650; }
.stay-card > p { margin: 16px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.58; }
.stay-tradeoff { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); }
.stay-tradeoff span { display: block; color: var(--faint); font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.stay-tradeoff strong { display: block; margin-top: 4px; font-size: .73rem; line-height: 1.45; }
.price-method { display: grid; grid-template-columns: 210px 1fr auto; gap: 24px; align-items: center; margin-top: 14px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface-tint); }
.price-method > div span { display: block; color: var(--muted); font-size: .65rem; }
.price-method > div strong { display: block; margin-top: 3px; font-family: var(--serif); font-size: 1rem; }
.price-method p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.price-method a { color: var(--green); font-size: .71rem; font-weight: 750; white-space: nowrap; }

.commute-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: 14px; }
.commute-tool, .road-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.commute-tool { padding: 24px; }
.select-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 15px; align-items: end; }
.select-grid label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .65rem; font-weight: 750; }
.select-grid select { width: 100%; min-height: 44px; padding: 8px 35px 8px 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-strong); color: var(--ink); cursor: pointer; }
.select-arrow { padding-bottom: 10px; color: var(--faint); }
.commute-result { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.time-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.time-comparison.with-miles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.time-box { padding: 16px; border-radius: 11px; background: var(--bg-soft); }
.time-box.event-week { background: var(--orange-soft); }
.time-box.miles { background: color-mix(in srgb, var(--green-soft) 70%, var(--bg-soft)); }
.time-box span { display: block; color: var(--muted); font-size: .64rem; font-weight: 750; }
.time-box strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.time-box.event-week strong { color: var(--orange); }
.time-box.miles strong { color: var(--green); font-size: 1.2rem; }
.commute-advice { margin: 13px 0 0; color: var(--muted); font-size: .73rem; }
.road-card { padding: 24px; background: color-mix(in srgb, var(--surface) 78%, var(--green-soft)); }
.road-card-top { display: flex; align-items: center; gap: 15px; }
.road-sign { width: 44px; height: 50px; display: grid; place-items: center; border: 3px solid var(--surface); border-radius: 8px 8px 16px 16px; background: var(--blue); color: white; font-size: .9rem; font-weight: 850; box-shadow: 0 0 0 2px var(--blue); }
.road-card-top div span { color: var(--muted); font-size: .61rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.road-card h3 { margin: 2px 0 0; font-family: var(--serif); font-size: 1.35rem; }
.road-card > p { margin: 20px 0 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.65; }
.road-links { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 19px; }
.road-links a { color: var(--green); font-size: .7rem; font-weight: 750; }
.transport-tips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.transport-tip { padding: 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.transport-tip span { display: block; color: var(--orange); font-size: 1.05rem; }
.transport-tip strong { display: block; margin-top: 9px; font-size: .75rem; }
.transport-tip p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }

.sources-section { padding-bottom: 104px; }
.source-columns { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 14px; }
.source-columns > div { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--surface); }
.source-columns h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 1.08rem; }
.source-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin: 0; padding: 0; list-style: none; }
.source-list a { color: var(--ink-soft); font-size: .71rem; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.source-list a:hover { color: var(--green); }
.boundary-card { background: var(--surface-tint) !important; }
.boundary-card p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.62; }
.boundary-card p + p { margin-top: 13px; color: var(--ink-soft); font-weight: 650; }

footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .7rem; }
.footer-inner strong { margin-right: 12px; color: var(--ink); font-size: .66rem; letter-spacing: .24em; }
.footer-contact { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-contact span { color: var(--faint); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact a,
.footer-handle { color: var(--green); font-size: .78rem; font-weight: 700; text-underline-offset: 3px; }
.footer-contact a:hover { color: var(--ink); }
.footer-handle { letter-spacing: .02em; }
.only-en { display: none; }
html[lang="en"] .only-en { display: flex; }
html[lang="en"] .only-zh { display: none; }
.footer-inner > p:last-child { max-width: 520px; text-align: right; }

@media (max-width: 980px) {
  .nav-inner { gap: 12px; }
  .nav-links { min-width: 0; overflow-x: auto; gap: 10px; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; font-size: .72rem; }
  .nav-actions, .wordmark { flex: 0 0 auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .route-card { width: min(590px, 100%); justify-self: center; }
  .route-card-footer { align-items: flex-start; flex-direction: column; }
  .hub-map { height: 360px; min-height: 280px; }
  .plan-day { grid-template-columns: 1fr; }
  .plan-day-map {
    min-height: 200px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .plan-timeline-item { grid-template-columns: minmax(78px, 32%) 1fr; gap: 8px; }
  .tour-plan-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-parking-no-go-list { grid-template-columns: 1fr; }
  .parking-map-layout { grid-template-columns: 1fr; }
  .parking-map-shell { position: static; }
  .parking-map-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .parking-geographic-boundary { flex-direction: column; }
  .parking-map-source-links { width: 100%; justify-content: flex-start; }
  .brand-house-card-grid { grid-template-columns: 1fr; }
  .brand-house-row > summary { grid-template-columns: minmax(0, 1fr) 22px; gap: 8px 12px; padding: 14px; }
  .brand-house-row-main, .brand-house-row-date, .brand-house-row-action { grid-column: 1; }
  .brand-house-row > summary::after { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .brand-house-row-action { justify-self: start; white-space: normal; }
  .nearby-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .price-method { grid-template-columns: 1fr; gap: 9px; }
  .commute-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-inner, .hero-grid, main, .footer-inner { width: min(100% - 28px, 1180px); }
  .nav-inner { height: auto; min-height: 66px; flex-wrap: wrap; gap: 6px 12px; padding: 8px 0; }
  .nav-ready .icon-button.section-nav-toggle { width: 66px; display: flex; align-items: center; justify-content: center; gap: 5px; }
  .nav-links {
    order: 3;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
  .nav-ready .nav-links { display: none; }
  .nav-ready .nav-links.is-open { display: grid; }
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: .7rem;
    line-height: 1.2;
    white-space: normal;
  }
  .nav-links a.archive-nav-link { padding: 7px 9px; border-radius: 9px; }
  .nav-actions { margin-left: auto; gap: 4px; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .route-card { border-radius: 22px; }
  .route-card-footer { align-items: flex-start; flex-direction: column; }
  .route-time { text-align: left; }
  .kpi-strip { grid-template-columns: 1fr 1fr; }
  .kpi:nth-child(2) { border-right: 0; }
  .kpi:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-block { padding-top: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .section-heading h2 { font-size: clamp(1.95rem, 10vw, 2.7rem); }
  .brand-house-lane-heading { grid-template-columns: 1fr; gap: 8px; }
  .tour-facts-grid, .tour-parking-card { grid-template-columns: 1fr; }
  .tour-parking-alternatives-heading, .tour-parking-no-go-heading { grid-template-columns: 1fr; gap: 12px; }
  .tour-parking-alternative-list { grid-template-columns: 1fr; }
  .tour-arrival-time { width: min(100%, 360px); }
  .tour-source-bar { flex-direction: column; gap: 8px; }
  .tour-source-bar > strong { padding-top: 0; }
  .parking-view-tabs { display: flex; width: 100%; }
  .parking-view-tabs [role="tab"] { flex: 1 1 50%; }
  .parking-geographic-intro, .parking-map-evidence, .parking-map-toolbar { grid-template-columns: 1fr; }
  .parking-map-layout { gap: 10px; }
  .parking-traffic-map { height: 410px; min-height: 320px; }
  .parking-map-list { grid-template-columns: 1fr; }
  .parking-map-warning, .parking-geographic-boundary { flex-direction: column; }
  .parking-map-source-links { width: 100%; justify-content: flex-start; }
  .day-group { grid-template-columns: 1fr; gap: 12px; }
  .day-heading { position: static; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 12px; }
  .day-heading span, .day-heading em { margin-top: 0; }
  .event-main { grid-template-columns: 68px minmax(0, 1fr); gap: 13px; }
  .event-main.has-thumb { grid-template-columns: 56px 68px minmax(0, 1fr); }
  .event-main.has-thumb .event-thumb { width: 56px; height: 42px; grid-row: 1 / 3; align-self: start; }
  .event-main.has-thumb .event-score { grid-column: 2 / -1; }
  .event-score { grid-column: 2; min-width: 0; display: flex; align-items: baseline; gap: 6px; text-align: left; }
  .event-detail { grid-template-columns: 1fr; }
  .event-sources { grid-column: 1; }
  .source-columns { grid-template-columns: 1fr; }
  .source-list { grid-template-columns: 1fr; }
  .transport-tips { grid-template-columns: 1fr 1fr; }
  .footer-inner { padding: 26px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-inner > p:last-child { text-align: left; }
}

@media (max-width: 530px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .kpi { min-height: 92px; padding: 18px; }
  .kpi-value { font-size: 1.5rem; }
  .plan-track, .stay-grid, .nearby-grid, .tour-plan-list { grid-template-columns: 1fr; }
  .tour-fact-card, .tour-parking-card, .tour-parking-alternatives, .tour-parking-no-go, .tour-plan-card { padding: 20px; }
  .tour-parking-option { padding: 17px; }
  .tour-parking-option-facts > div { grid-template-columns: 1fr; gap: 4px; }
  .tour-parking-links, .tour-parking-link { width: 100%; }
  .tour-wave { min-height: 68px; padding: 9px 5px; }
  .tour-wave time { font-size: 1.08rem; }
  .tour-arrival-time strong { white-space: normal; }
  .tour-source-list, .tour-source-list a { width: 100%; }
  .temporal-section-summary { align-items: flex-start; flex-direction: column; }
  .parking-map-filter-button { flex: 1 1 calc(50% - 7px); }
  .parking-map-panel-heading { align-items: flex-start; flex-direction: column; }
  .parking-traffic-map { height: 340px; min-height: 280px; }
  .parking-map-source-links, .parking-map-source-links a { width: 100%; }
  .parking-map-source-links a { justify-content: center; }
  .parking-geographic-map-actions { grid-template-columns: 1fr; }
  .parking-geographic-map-actions .parking-geographic-reset { grid-column: 1; }
  .brand-house-facts > div { grid-template-columns: 1fr; gap: 4px; }
  .brand-house-source-links, .brand-house-source-links a { width: 100%; }
  .brand-house-source-links a { justify-content: center; }
  .plan-day:last-child { grid-column: auto; }
  .plan-branch { grid-template-columns: 1fr; gap: 3px; }
  .plan-branch-label { padding-top: 0; }
  .event-main { grid-template-columns: 1fr; }
  .event-main.has-thumb { grid-template-columns: 48px 1fr; gap: 10px 12px; }
  .event-main.has-thumb .event-thumb { width: 48px; height: 36px; grid-row: 1; }
  .event-main.has-thumb .event-time { grid-column: 2; }
  .event-main.has-thumb .event-copy { grid-column: 1 / -1; }
  .event-main.has-thumb .event-score { grid-column: 1 / -1; }
  .event-time { display: flex; align-items: baseline; gap: 7px; }
  .event-time small { display: inline; margin: 0; }
  .event-score { grid-column: 1; }
  .select-grid { grid-template-columns: 1fr; }
  .select-arrow { padding: 0; transform: rotate(90deg); justify-self: center; }
  .time-comparison, .transport-tips { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
