* { box-sizing: border-box; }

:root {
  --navy: #071e41;
  --navy-deep: #0b2a5b;
  --text: #071e41;
  --muted: #5f6b7a;
  --line: #d9e1ec;
  --bg: #ffffff;
  --soft: #f3f6fb;
  --active: #e36a4f;
  --coral: #e36a4f;
  --cream: #f4eadc;
  --imminent: #9aa3b2;
  --danger: #b4233c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  min-height: 100dvh;
  min-height: 100svh;
}

.app-shell {
  display: flex;
  flex-direction: column;
  height: 100svh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg { display: block; }
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
button, input { font: inherit; }
button { cursor: pointer; }
button:hover { transform: none; }

.topbar { display: none; }
.panel-toggle, .panel-close, .panel-scrim { display: none; }

.left-column,
.panel {
  flex: 1 1 auto;
  min-height: 0;
  background: var(--bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.screen[hidden] { display: none !important; }

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 22px 42px;
  color: #fff;
  background: var(--navy);
}

.hero-skyline {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: min(280px, 78%);
  height: 110px;
  color: #fff;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 38px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
  color: currentColor;
}

.brand-mark svg { width: 32px; height: 36px; }
.brand strong { display: block; font-size: 22px; letter-spacing: -0.04em; }
.brand small { display: block; margin-top: 3px; color: rgb(255 255 255 / 0.86); font-size: 12px; font-weight: 500; line-height: 1.35; }

.hero-compact {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 34px;
}

.hero-compact::after { height: 28px; }
.brand-center { justify-self: center; grid-column: 2; }
.brand-center strong { font-size: 18px; }
.hero-back { color: #fff; }

.screen-body {
  padding: 8px 20px calc(36px + env(safe-area-inset-bottom, 0px));
}

.screen-home h1,
.screen-address h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.address-search { display: grid; gap: 12px; }

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #cfd8e6;
  border-radius: 14px;
  background: #fff;
}

.search-field:focus-within {
  border-color: var(--navy-deep);
  box-shadow: 0 0 0 3px rgb(11 42 91 / 0.12);
}

.field-icon { width: 20px; height: 20px; color: var(--navy); flex: 0 0 20px; }
.search-field input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: none;
  color: var(--navy);
  background: transparent;
  font-size: 16px;
}

.primary-button,
.search-button,
.secondary-button,
.ghost-button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: none;
}

.primary-button,
.search-button {
  color: #fff;
  background: var(--navy-deep);
}

.primary-button svg,
.search-button svg { width: 18px; height: 18px; }

.secondary-button,
.ghost-button,
.card-button.is-outline {
  border: 1.5px solid var(--navy-deep);
  color: var(--navy-deep);
  background: #fff;
}

.secondary-button svg,
.card-button svg { width: 18px; height: 18px; }

.street-suggestions {
  max-height: 180px;
  margin: 0;
  padding: 4px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  list-style: none;
  box-shadow: 0 10px 22px rgb(7 30 65 / 0.1);
}

.street-suggestions button {
  width: 100%;
  margin: 0;
  padding: 12px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  font-weight: 650;
  text-align: left;
}

.street-suggestions button:hover { background: var(--soft); }

.search-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.search-status[data-state="loading"] { color: var(--navy-deep); }
.search-status[data-state="error"] { color: var(--danger); }

.quick-actions { display: grid; gap: 10px; margin-top: 4px; }

.map-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 4px 12px rgb(7 30 65 / 0.06);
  font-weight: 700;
}

.map-row span { display: inline-flex; align-items: center; gap: 10px; }
.map-row svg { width: 20px; height: 20px; }
.row-chevron { width: 18px; height: 18px; color: var(--navy-deep); }

.scope-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: #eef3fa;
}

.scope-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: #fff;
}

.scope-icon svg { width: 18px; height: 18px; }
.scope-card p { margin: 0; color: #233a61; font-size: 13px; line-height: 1.45; }

.public-layer-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.layer-button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 48px; padding: 9px; border: 1.5px solid var(--navy-deep); border-radius: 13px; color: var(--navy-deep); background: #fff; font-size: 12px; font-weight: 750; }
.layer-button svg { width: 19px; height: 19px; }
.layer-button-icon { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 5px; color: #fff; background: var(--navy-deep); font-size: 14px; font-weight: 800; }
.layer-button.is-active { color: #fff; background: var(--navy-deep); }
.layer-button.is-active .layer-button-icon { color: var(--navy-deep); background: #fff; }

.status-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: -6px 0 16px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef3fa;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.badge svg { width: 14px; height: 14px; }

.status-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.status-card-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.status-card h2 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.status-card .subtitle { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.status-live {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3fa;
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.status-card-icon { width: 40px; height: 40px; color: var(--navy-deep); }
.status-meta { display: grid; gap: 6px; color: var(--navy); font-size: 13px; font-weight: 650; }
.status-meta span { display: inline-flex; align-items: center; gap: 8px; }
.status-meta svg { width: 16px; height: 16px; color: var(--muted); }
.status-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 6px; }
.status-actions:has(.is-solid) { grid-template-columns: 1fr 1fr; }
.status-actions:has(.is-solid):not(:has(.is-outline)) { grid-template-columns: 1fr; }
.card-button { min-height: 44px; font-size: 13px; }
.card-button.is-solid { color: #fff; background: var(--navy-deep); }
.street-only { margin: 0; color: #9a3412; font-size: 12px; }

.event-card .map-event-when {
  display: block;
  margin: 4px 0 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}
.event-card .location { margin: 0; font-size: 14px; font-weight: 700; }
.event-card .stretch { margin: 2px 0 0; color: var(--muted); font-size: 12px; }

.report-row { margin: 12px -18px -18px; padding: 12px 18px 10px; border-top: 1px solid var(--line); text-align: center; }
.report-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 4px 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.report-link svg { width: 14px; height: 14px; }
.feedback-result { min-height: 1.2em; margin: 0; color: var(--navy); font-size: 12px; text-align: center; }

.also-now { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.also-now h3 { margin: 0 0 8px; color: var(--navy); font-size: 14px; }
.also-now ul { margin: 0; padding: 0; list-style: none; }
.also-now li + li { margin-top: 6px; }
.also-now-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 8px 6px;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: var(--soft);
  text-align: left;
}
.also-now-item strong { display: block; font-size: 13px; }
.also-now-when { display: block; color: var(--coral); font-size: 12px; font-weight: 700; }
.also-now-item > svg { width: 16px; height: 16px; color: var(--navy-deep); margin-top: 2px; }
.popup-sign .traffic-sign,
.popup-sign.popup-sign-sm .traffic-sign {
  width: 26px;
  height: 26px;
}

.upcoming-summary {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  padding: 10px 8px;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: var(--soft);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.upcoming-summary svg { width: 16px; height: 16px; color: var(--navy-deep); }

.disclaimer {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.minimap {
  display: block;
  width: 100%;
  height: 148px;
  margin: 0 0 22px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #edf1f5;
}

#address-minimap-canvas { width: 100%; height: 100%; pointer-events: none; }

.upcoming h2 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.upcoming ul { margin: 0; padding: 0; list-style: none; }
.upcoming li + li { margin-top: 8px; }

.upcoming-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 16px;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  text-align: left;
}

.upcoming-item svg { width: 18px; height: 18px; color: var(--navy-deep); }
.upcoming-item strong { display: block; font-size: 14px; }
.upcoming-item small { display: block; color: var(--muted); font-size: 12px; }
.upcoming-when { color: var(--navy); font-size: 11px; font-weight: 700; text-align: right; }

#address-updated { margin: 12px 0 0; color: var(--muted); font-size: 12px; }

.info-panel { background: #fff; }
.panel-heading { margin-bottom: 18px; }
.eyebrow { margin: 0 0 6px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.panel-intro { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.info-card { margin-top: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.info-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 16px; }
.info-card p { margin: 7px 0 0; color: #233a61; font-size: 14px; line-height: 1.5; }
.info-back { margin-top: 20px; }

.map-stage {
  display: none;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--bg);
}

body.view-map .left-column { display: none; }
body.view-map .map-stage { display: flex; }
body.view-info .map-stage { display: none; }

.map-chrome {
  flex: 0 0 auto;
  z-index: 5;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 10px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.map-toolbar {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--navy-deep);
  background: transparent;
}

.icon-button svg { width: 22px; height: 22px; }

.map-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border-radius: 999px;
  background: #eef3fa;
}

.map-range button {
  width: auto;
  min-height: 40px;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-deep);
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 750;
}

.map-range button.is-active {
  color: #fff;
  background: var(--navy-deep);
}

.map-canvas {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

#map {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #edf1f5;
  pointer-events: auto;
  touch-action: none;
}

.map-unavailable {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 28px 24px 72px;
  background: #edf1f5;
  color: var(--navy);
  text-align: center;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}
.map-unavailable[hidden] { display: none !important; }
.map-unavailable p { margin: 0; max-width: 22rem; }

.map-zoom {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 44px;
  display: none;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.2);
}
.map-zoom button {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  background: #fff;
  font-size: 20px;
  font-weight: 700;
}
.map-zoom button:last-child { border-bottom: 0; }

.map-legend {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  left: auto;
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--navy);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 8px 20px rgb(7 30 65 / 0.14);
  font-size: 12px;
  font-weight: 650;
  pointer-events: none;
}

.map-legend span { display: inline-flex; align-items: center; gap: 8px; }

.ribbon-swatch {
  width: 24px;
  height: 8px;
  border: 1.5px solid var(--cream);
  border-radius: 99px;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgb(7 30 65 / 0.06);
}
.ribbon-swatch.is-imminent {
  background: repeating-linear-gradient(90deg, var(--imminent) 0 6px, transparent 6px 10px);
  background-color: #e8edf3;
}
.civic-swatch {
  width: 12px;
  height: 16px;
  border-radius: 10px 10px 10px 2px;
  background: var(--navy);
  transform: rotate(180deg);
}
.legend, .layer-key { display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 12px; }

.civic-pin {
  position: absolute;
  z-index: 4;
  width: 44px;
  height: 44px;
  overflow: visible;
  cursor: pointer;
  pointer-events: auto;
  touch-action: auto;
}
.civic-marker {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 44px;
  transform: translateX(-50%);
  pointer-events: none;
}
.civic-pin-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 44px;
  overflow: visible;
  filter: drop-shadow(0 1px 2px rgb(7 30 65 / 0.28));
}
.civic-marker.is-selected .civic-pin-shape {
  filter: drop-shadow(0 0 0 3px #071e41) drop-shadow(0 1px 3px rgb(7 30 65 / 0.35));
}
.parking-pin { width: 44px; height: 44px; margin: 0; padding: 0; border: 3px solid #fff; border-radius: 50% 50% 50% 4px; color: #fff; background: var(--navy-deep); box-shadow: 0 2px 7px rgb(7 30 65 / 0.32); font-size: 22px; font-weight: 850; line-height: 1; transform: rotate(-45deg); }
.parking-pin span { display: block; transform: rotate(45deg); }
.parking-popup { display: grid; gap: 5px; min-width: 190px; padding: 3px 1px; color: var(--navy); font-family: inherit; }
.parking-popup strong { font-size: 14px; }
.parking-popup span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.parking-popup b { display: inline-flex; align-items: center; gap: 6px; color: #166534; font-size: 13px; }
.parking-popup i { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; }
.ribbon-hit { cursor: pointer; }

.map-banner {
  position: absolute;
  z-index: 4;
  top: 48px;
  left: 12px;
  right: 12px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  color: #9a3412;
  background: #fff7ed;
  box-shadow: 0 8px 20px rgb(7 30 65 / 0.12);
  font-size: 13px;
}

.map-event-card {
  position: absolute;
  z-index: 3;
  left: 12px;
  right: 12px;
  bottom: 44px;
  display: grid;
  gap: 8px;
  max-height: min(58%, 420px);
  overflow: auto;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgb(7 30 65 / 0.18);
  pointer-events: auto;
}

.map-event-card[hidden],
.map-banner[hidden] { display: none !important; }

.map-event-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.map-event-card h2 { margin: 0; font-size: 16px; }
.map-event-card .map-event-when { color: var(--coral); }
.map-event-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.map-event-details { margin: 0; padding-top: 8px; border-top: 1px solid var(--line); font-size: 12px; }
.map-event-details div { display: flex; justify-content: space-between; gap: 8px; margin-top: 4px; }
.map-event-details dt { color: var(--muted); }
.map-event-details dd { margin: 0; font-weight: 650; }
.map-event-secondary { margin: 0; padding-top: 8px; border-top: 1px solid var(--line); }
.map-event-secondary h3 { margin: 0 0 5px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.map-event-secondary ul { margin: 0; padding-left: 18px; font-size: 12px; font-weight: 650; }
.map-event-secondary li + li { margin-top: 3px; }

.same-street-upcoming {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.same-street-upcoming li + li { margin-top: 6px; }

.bottom-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 0 0 auto;
  flex-shrink: 0;
  z-index: 6;
  padding: 6px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: #fff;
}

.nav-item {
  display: grid;
  min-height: 52px;
  place-items: center;
  gap: 2px;
  margin: 0;
  padding: 6px 0 4px;
  border: 0;
  border-radius: 0;
  color: #8a93a3;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.nav-item svg { width: 22px; height: 22px; }
.nav-item span { font-size: 11px; font-weight: 650; }
.nav-item.is-active { color: var(--navy-deep); }
.nav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28%;
  right: 28%;
  height: 3px;
  border-radius: 99px;
  background: var(--navy-deep);
}

@media (min-width: 761px) {
  .app-shell {
    display: grid;
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    height: 100dvh;
  }

  .topbar {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 12px 28px;
    color: #fff;
    background: var(--navy);
  }

  .topbar .brand small { color: #cbd7e9; }
  .desktop-nav { display: flex; margin-left: auto; }
  .desktop-nav-item {
    width: auto;
    min-height: 38px;
    margin: 0;
    padding: 8px 14px;
    border: 1px solid rgb(255 255 255 / 0.32);
    border-radius: 10px;
    color: #fff;
    background: rgb(255 255 255 / 0.1);
    font-size: 13px;
    font-weight: 700;
  }

  .left-column,
  .panel {
    grid-column: 1;
    grid-row: 2;
    display: block;
    border-right: 1px solid var(--line);
  }

  body.view-map .left-column { display: block; }

  .hero { padding: 28px 28px 42px; }
  .hero-compact { padding: 18px 16px 32px; }
  .screen-body { padding: 8px 28px 32px; }
  .screen-home h1 { font-size: 32px; }

  .map-stage {
    display: flex;
    grid-column: 2;
    grid-row: 2;
  }

  body.view-info .map-stage { display: flex; }

  .map-chrome { padding: 12px 16px 10px; }
  .map-zoom { display: grid; }

  .screen-home .hero,
  .screen-address .hero-skyline,
  .screen-address .brand-center { display: none; }
  .screen-home .screen-body { padding-top: 28px; }
  .screen-address .hero-compact {
    display: flex;
    padding: 16px 16px 0;
    background: transparent;
    color: var(--navy);
  }
  .screen-address .hero-compact::after { display: none; }
  .screen-address .hero-back { color: var(--navy-deep); }

  .map-chrome { padding: 12px 16px 10px; }
  .map-event-card { right: 16px; bottom: 44px; }
  .bottom-nav { display: none; }
}
