/* Weed LV homepage preview — DICE nightlife system on the existing lux wall.
   Do not import DICE white, Foggy/Impact, Eventbrite blue, or Airbnb coral. */
:root {
  --lux-black: #0A0A0A;
  --lux-dark: #111111;
  --lux-card: #151515;
  --lux-card2: #1A1A1A;
  --lux-border: #252525;
  --lux-emerald: #2D6A4F;
  --lux-em-mid: #3A8A65;
  --lux-em-lt: #52B788;
  --lux-gold: #D4A017;
  --lux-gold-lt: #F0C040;
  --lux-gold-dk: #A07810;
  --lux-white: #FFFFFF;
  --lux-off: #E8E0D0;
  --lux-gray: #9A9A8A;
  --lux-dim: #5A5A50;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header: 76px;
  --flag: 32px;
  --filters: 58px;
  --green-300: #52B788;
  --green-500: #2D6A4F;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.age-ok .age-gate { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--lux-off);
  background: var(--lux-black);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
img.hero-truck { max-width: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lux-white);
  margin: 0;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--lux-gold); color: #0A0A0A;
  padding: 8px 14px; z-index: 400; font-size: 13px; font-weight: 600;
}
.skip:focus { left: 8px; }

.preview-flag {
  height: var(--flag);
  display: flex; align-items: center; justify-content: center;
  background: #1A1408;
  color: var(--lux-gold);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,160,23,0.28);
}

/* ===== HEADER (DICE: search lives in the chrome) ===== */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.header-inner {
  padding: 0 24px;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 16px 20px;
}
.logo img {
  height: 56px !important;
  width: auto !important;
  display: block;
}
.header-search {
  flex: 1 1 220px;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lux-card);
  border: 1px solid var(--lux-border);
  border-radius: 100px;
  padding: 4px 4px 4px 16px;
  height: 44px;
}
.header-search:focus-within {
  border-color: rgba(82,183,136,0.55);
}
.header-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--lux-off);
  font-size: 0.875rem;
  outline: none;
  height: 36px;
}
.header-search input::placeholder { color: var(--lux-dim); }
.btn-geo-sm {
  height: 34px !important;
  padding: 0 12px !important;
  border-radius: 100px !important;
  font-size: 0.6875rem !important;
  border-color: transparent !important;
}
.btn-geo-sm:hover { background: rgba(82,183,136,0.08) !important; color: var(--lux-em-lt) !important; }

.nav-desktop { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lux-gray);
  padding: 9px 12px;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}
.nav-desktop a:hover { color: var(--lux-off); }
.nav-desktop a.nav-found {
  color: var(--lux-gold);
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 100px;
  padding: 8px 16px;
  margin-left: 6px;
}
.nav-desktop a.nav-found:hover { color: var(--lux-gold-lt); border-color: rgba(212,160,23,0.55); background: rgba(212,160,23,0.06); }
.nav-desktop a.is-on { color: var(--lux-off); }
.nav-desktop a.nav-login { color: var(--lux-dim); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--lux-border);
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 16px; height: 1px;
  background: var(--lux-off); margin: 4px auto;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(212,160,23,0.12);
  background: #0A0A0A;
  padding: 8px 24px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile[hidden] { display: none !important; }
.nav-mobile a {
  font-size: 0.9375rem;
  color: var(--lux-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--lux-border);
}
.nav-mobile a.is-on { color: var(--lux-off); }

/* ===== HERO ===== */
.hero-truck-band { background: #050807; line-height: 0; }
img.hero-truck {
  display: block; width: 100%; height: auto;
  object-fit: contain;
}
@media (min-width: 901px) {
  .hero-truck-band { max-height: 42vh; overflow: hidden; }
  img.hero-truck {
    height: 42vh;
    object-fit: cover;
    object-position: center 46%;
  }
}
.hero-copy {
  padding: 28px 24px 36px;
  background: var(--lux-black);
}
.hero-inner { max-width: 1160px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lux-gold); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lux-gold); box-shadow: 0 0 8px var(--lux-gold);
}
.hero-copy h1 {
  font-size: clamp(3.1rem, 8.4vw, 5.6rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--lux-gold);
  font-weight: 600;
}
.hairline {
  width: 48px; height: 1px;
  background: var(--lux-gold);
  margin: 16px 0 14px;
  opacity: 0.7;
}
.hero-sub {
  max-width: 440px;
  color: var(--lux-gray);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 24px;
}
.search-row {
  display: flex; gap: 8px; max-width: 640px; flex-wrap: wrap;
}
.search-row input {
  flex: 1 1 220px; min-width: 0; height: 48px;
  background: var(--lux-card);
  border: 1px solid var(--lux-border);
  color: var(--lux-off);
  padding: 0 16px;
  font-size: 0.9375rem;
  border-radius: 6px; outline: none;
}
.search-row input:focus { border-color: rgba(82,183,136,0.55); }
.search-row input::placeholder { color: var(--lux-dim); }

.btn-ghost, .btn-gold, .btn-geo, .btn-search {
  height: 48px; padding: 0 18px; border-radius: 6px;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
}
.btn-ghost, .btn-geo {
  background: transparent; color: var(--lux-off);
  border: 1px solid rgba(232,224,208,0.22);
}
.btn-ghost:hover, .btn-geo:hover {
  border-color: rgba(82,183,136,0.45);
  color: var(--lux-em-lt);
  background: rgba(82,183,136,0.06);
}
.btn-geo.active {
  color: var(--lux-em-lt);
  border-color: rgba(82,183,136,0.5);
}
.btn-gold, .btn-search {
  background: linear-gradient(135deg, var(--lux-gold-dk), var(--lux-gold), var(--lux-gold-lt));
  color: #0A0A0A; border: none;
  box-shadow: 0 4px 20px rgba(212,160,23,0.28);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(212,160,23,0.4); }

.stats {
  display: flex; gap: 0; margin-top: 32px; max-width: 480px;
  border-top: 1px solid rgba(212,160,23,0.18);
}
.stat { flex: 1; padding: 16px 0 0; position: relative; }
.stat + .stat { padding-left: 24px; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 20px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, rgba(212,160,23,0.35), transparent);
}
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700; color: var(--lux-gold); line-height: 1.1;
}
.stat-label {
  display: block; margin-top: 4px;
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--lux-dim);
}

/* ===== FILTERS ===== */
.filters {
  position: sticky;
  top: var(--header);
  z-index: 90;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,160,23,0.12);
  border-bottom: 1px solid var(--lux-border);
}
.filters-inner {
  padding: 10px 24px;
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center;
}
.filter-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-label {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lux-dim); margin-right: 2px;
}
.filter-btn, .filter-tag, .view-toggle-btn {
  background: transparent;
  border: 1px solid var(--lux-border);
  color: var(--lux-gray);
  font-size: 0.75rem; font-weight: 500;
  padding: 6px 11px; border-radius: 100px;
  cursor: pointer; transition: all 0.2s var(--ease);
}
.filter-btn:hover, .filter-tag:hover { color: var(--lux-off); border-color: #3a3a3a; }
.filter-btn.active, .filter-tag.active {
  color: var(--lux-off);
  border-color: rgba(82,183,136,0.5);
  background: rgba(82,183,136,0.1);
}
.view-toggle-group { display: none; margin-left: auto; }
.view-toggle-btn { border-radius: 0; }
.view-toggle-btn:first-child { border-radius: 100px 0 0 100px; }
.view-toggle-btn:last-child { border-radius: 0 100px 100px 0; margin-left: -1px; }
.view-toggle-btn.active {
  color: #0A0A0A; background: var(--lux-gold); border-color: var(--lux-gold);
}
.filter-sort select {
  background: var(--lux-card); color: var(--lux-off);
  border: 1px solid var(--lux-border); border-radius: 6px;
  height: 32px; padding: 0 10px; font-size: 0.75rem;
}

.active-chips {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 0 24px 10px;
}
.active-chips[hidden] { display: none !important; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--lux-off);
  border: 1px solid rgba(82,183,136,0.4);
  background: rgba(82,183,136,0.08);
  border-radius: 100px; padding: 4px 8px 4px 12px;
}
.chip button {
  background: none; border: 0; color: var(--lux-em-lt);
  cursor: pointer; font-size: 1rem; line-height: 1; padding: 0 2px;
}
.chip-clear {
  background: none; border: 0; color: var(--lux-gold);
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.geo-bar {
  padding: 8px 24px 0; font-size: 0.75rem; color: var(--lux-gold);
  display: flex; align-items: center; gap: 8px;
}
.geo-bar[hidden] { display: none !important; }
.geo-clear {
  background: none; border: 1px solid rgba(212,160,23,0.35);
  color: var(--lux-gray); border-radius: 100px; padding: 3px 10px;
  cursor: pointer; font-size: 0.75rem;
}

/* ===== MARKET: Airbnb split on lux canvas ===== */
.market {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
  align-items: start;
  scroll-margin-top: calc(var(--header) + var(--filters) + 12px);
}
.market-list { padding: 32px 24px 80px 28px; min-width: 0; }
.listings-header {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,160,23,0.18);
}
.listings-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.listings-count {
  font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--lux-dim); white-space: nowrap;
}

.dispensary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Eventbrite image-led card, DICE flatness, lux tokens */
.dispensary-card {
  background: var(--lux-card);
  border: 1px solid var(--lux-border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}
.dispensary-card::before {
  content: '';
  position: absolute; top: 0; left: 18px; right: 18px; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.45), transparent);
}
.dispensary-card:hover, .dispensary-card.is-hot {
  border-color: rgba(82,183,136,0.45);
  transform: translateY(-2px);
}
.dispensary-card.is-featured { border-color: rgba(212,160,23,0.32); }
.dispensary-card.is-partner {
  border-color: rgba(82,183,136,0.55);
  background: linear-gradient(180deg, rgba(45,106,79,0.16), var(--lux-card) 42%);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
}
.dispensary-card.is-partner::before { display: none; }

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0c1210;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-logo-chip {
  position: absolute; right: 10px; bottom: 10px;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(232,224,208,0.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-logo-chip img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.card-logo-chip span {
  font-size: 0.875rem; font-weight: 700; color: var(--lux-em-lt);
}
.badge-feat, .badge-partner {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  z-index: 1;
}
.badge-feat {
  color: #0A0A0A;
  background: linear-gradient(135deg, var(--lux-gold-dk), var(--lux-gold), var(--lux-gold-lt));
}
.badge-partner {
  color: var(--lux-em-lt);
  background: rgba(10,10,10,0.82);
  border: 1px solid rgba(82,183,136,0.55);
}

.card-copy { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--lux-white); letter-spacing: -0.02em; line-height: 1.2;
}
.card-meta {
  font-size: 0.8125rem; color: var(--lux-gray);
  font-weight: 400; line-height: 1.4;
  margin: 0;
}
.card-meta .open { color: var(--lux-em-lt); font-weight: 600; }
.card-meta .closed { color: #C47A7A; font-weight: 600; }
.card-meta .sep { color: var(--lux-dim); margin: 0 0.35em; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
  border: 1px solid var(--lux-border); color: var(--lux-gray);
}
.tag-recreational { border-color: rgba(45,106,79,0.55); color: var(--lux-em-lt); }
.tag-delivery { border-color: rgba(212,160,23,0.35); color: var(--lux-gold); }
.tag-lounge, .tag-consumption-lounge { border-color: rgba(212,160,23,0.45); color: var(--lux-gold-lt); }
.tag-24h { border-color: rgba(82,183,136,0.4); color: var(--lux-em-lt); }
.card-footer {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-top: 10px; margin-top: auto;
  border-top: 1px solid var(--lux-border);
}
.card-cta {
  display: inline-flex; align-items: center; height: 34px; padding: 0 14px;
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--lux-gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 6px;
}
.card-cta:hover { background: rgba(212,160,23,0.08); }
.partner-cta {
  border-color: rgba(82,183,136,0.5);
  color: var(--lux-em-lt);
}
.partner-cta:hover { background: rgba(82,183,136,0.08); }
.card-claim {
  font-size: 0.8125rem; color: var(--lux-dim); font-weight: 500;
}
.card-claim:hover { color: var(--lux-off); text-decoration: underline; text-underline-offset: 3px; }
.partner-note {
  font-size: 0.75rem; color: var(--lux-dim); margin: 0;
  font-weight: 300;
}
.is-partner .card-name { font-size: 1.5rem; }

.market-map {
  position: sticky;
  top: calc(var(--header) + 8px);
  height: calc(100vh - var(--header) - 8px);
  border-left: 1px solid rgba(212,160,23,0.18);
}
#dispensary-map { width: 100%; height: 100%; background: #0c0c0c; }
.leaflet-container { background: #0c0c0c; font-family: var(--font-body); }
.leaflet-popup-content-wrapper {
  background: var(--lux-card2) !important;
  color: var(--lux-off) !important;
  border: 1px solid rgba(212,160,23,0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
.leaflet-popup-tip { background: var(--lux-card2) !important; }
.leaflet-popup-content { margin: 12px 14px !important; }
.map-popup-name { font-family: var(--font-display); font-weight: 700; color: var(--lux-white); margin-bottom: 4px; }
.map-popup-meta { font-size: 0.8rem; color: var(--lux-gray); margin-bottom: 8px; }
.map-popup-link {
  display: inline-flex; margin-top: 4px;
  color: var(--lux-gold) !important;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pin {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lux-emerald);
  border: 2px solid var(--lux-em-lt);
  box-shadow: 0 0 0 2px rgba(10,10,10,0.6);
}
.pin.feat { background: var(--lux-gold-dk); border-color: var(--lux-gold); }
.pin.hot { transform: scale(1.25); background: var(--lux-em-lt); }

.loading-spinner, .empty-state {
  grid-column: 1 / -1; text-align: center; padding: 48px 16px;
  color: var(--lux-gray); border: 1px dashed var(--lux-border); border-radius: 14px;
}
.spinner {
  width: 28px; height: 28px; margin: 0 auto 12px;
  border: 2px solid var(--lux-border); border-top-color: var(--lux-gold);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--lux-dark);
  border-top: 1px solid rgba(212,160,23,0.15);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px 24px;
}
.footer-brand p { margin: 12px 0 0; font-size: 0.875rem; color: var(--lux-gray); font-weight: 300; max-width: 240px; }
.footer-brand img { height: 48px; width: auto; }
.footer-col h3 {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lux-gold); margin: 0 0 14px;
}
.footer-col a { display: block; font-size: 0.875rem; color: var(--lux-gray); padding: 4px 0; }
.footer-col a:hover { color: var(--lux-off); }
.footer-bottom {
  max-width: 1160px; margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid var(--lux-border);
  font-size: 0.75rem; color: var(--lux-dim);
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,10,10,0.88); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-box {
  width: 100%; max-width: 420px;
  background: var(--lux-card);
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 14px; padding: 40px 32px 32px;
  text-align: center; position: relative;
}
.age-box::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}
.age-box h2 { font-size: 2rem; margin-bottom: 8px; }
.age-box p { color: var(--lux-gray); font-weight: 300; margin: 0 0 8px; }
.age-q { color: var(--lux-off) !important; font-weight: 500 !important; margin: 20px 0 24px !important; }
.age-btns { display: flex; gap: 10px; justify-content: center; }
.age-yes {
  background: linear-gradient(135deg, var(--lux-emerald), var(--lux-em-mid));
  color: #fff; border: none; height: 44px; padding: 0 22px;
  border-radius: 6px; font-weight: 600; font-size: 0.875rem; cursor: pointer;
}
.age-no {
  background: transparent; color: var(--lux-gray);
  border: 1px solid var(--lux-border); height: 44px; padding: 0 22px;
  border-radius: 6px; font-weight: 500; font-size: 0.875rem; cursor: pointer;
}
.age-legal { font-size: 0.75rem !important; color: var(--lux-dim) !important; margin-top: 18px !important; }
.age-legal a { color: var(--lux-gold); }
.age-denied { display: none; }
.age-denied.show { display: block; }
.age-ask.hide { display: none; }

@media (max-width: 1100px) {
  .dispensary-grid { grid-template-columns: 1fr; }
  .dispensary-card.is-partner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --header: 122px; }
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .header-inner { flex-wrap: wrap; min-height: 64px; padding: 8px 16px 10px; }
  .logo img { height: 48px !important; }
  .header-search { order: 3; flex: 1 1 100%; max-width: none; }
  .view-toggle-group { display: flex; margin-left: 0; }
  .market { display: block; }
  .market-list { padding: 24px 16px 64px; }
  .market-map {
    position: relative; top: auto; height: 70vh;
    display: none; border-left: 0;
    border-top: 1px solid rgba(212,160,23,0.18);
  }
  body.map-mode .hero-truck-band,
  body.map-mode .hero-copy,
  body.map-mode .preview-flag,
  body.map-mode .site-footer { display: none; }
  body.map-mode .market-list { display: none; }
  body.map-mode .market-map {
    display: block;
    height: calc(100dvh - 148px);
  }
  body.map-mode .filters { top: var(--header); }
  .filters { position: sticky; top: var(--header); }
  .filters-inner { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .filter-group { flex-wrap: nowrap; }
  .hero-copy { padding: 24px 16px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats { flex-direction: column; }
  .stat + .stat { padding-left: 0; padding-top: 12px; }
  .stat + .stat::before { display: none; }
  .listings-header { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .filters-inner, .active-chips { padding-left: 16px; padding-right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
}
