﻿:root {
  --ink-dark: #0d1120;
  --panel-dark: #121828;
  --selected-dark: #1a2340;
  --hairline-dark: #1f2740;
  --border-dark: #2a3450;
  --blue: #1e63c8;
  --blue-light: #7db6ff;
  --orange: #ff7a1a;
  --orange-deep: #d84f10;
  --yellow: #ffc021;
  --paper: #faf7f0;
  --ink: #12161f;
  --body: #54523f;
  --muted: #8a8371;
  --hairline: #d8d2c0;
  --faint: #b0a88f;
  --text-dark: #c5cfe6;
  --text-dark-strong: #dbe3f5;
  --muted-dark: #8a97ba;
  --faint-dark: #5f6d94;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body.is-city {
  background: var(--ink-dark);
  color: #fff;
}

button,
input {
  border-radius: 0;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Every tappable control fires on the FIRST tap. `manipulation` drops the
   double-tap-zoom watch iOS Safari applies to small targets — the thing that
   makes a quick first tap feel dead — while still allowing scroll and pinch
   zoom. The hero-place child spans are listed so a tap on the address text or
   the "Directions" pill counts too. */
a,
button,
summary,
input,
label,
.city-hero-place span {
  touch-action: manipulation;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -80px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  background: var(--ink-dark);
  color: #fff;
  border-bottom: 1px solid var(--hairline-dark);
}

.site-logo {
  display: block;
  width: auto;
  height: 48px;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: var(--text-dark-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* The current city is a first-class control, not fine print: a visible pill
   with the city in brand yellow. */
.location-button {
  appearance: none;
  border: 2px solid var(--border-dark);
  background: var(--panel-dark);
  color: var(--text-dark-strong);
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  min-height: 44px;
  padding: 8px 14px;
}

.location-button #locationLabel {
  color: var(--yellow);
  text-transform: uppercase;
}

.brand-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  background: var(--orange);
  box-shadow: 5px 5px 0 var(--blue);
  color: #fff;
  cursor: pointer;
  font-family: "Lilita One", sans-serif;
  font-size: 19px;
  line-height: 1;
  padding: 13px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* Press-down effect: hover only where hover really exists (mouse). On iOS the
   sticky first-touch hover shifted the button 2px under the finger — taps felt
   like they needed pressing twice. Touch gets a clean :active state instead. */
@media (hover: hover) and (pointer: fine) {
  .brand-button:hover {
    filter: brightness(.92);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--blue);
  }
}

.brand-button:active {
  filter: brightness(.9);
}

.brand-button:focus-visible {
  filter: brightness(.92);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--blue);
}

.brand-button:focus-visible,
.location-button:focus-visible,
.session-chip:focus-visible,
.date-chip:focus-visible,
.session-row:focus-visible,
.qty-button:focus-visible,
.footer-link:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* Sticky bottom book bar — the persistent booking CTA on MOBILE only (desktop
   makes .site-header sticky instead; see the min-width block near the responsive
   rules). home.js toggles .is-visible once the hero booking card scrolls away.
   Base state is display:none + styled-off, so desktop and the no-JS/pre-JS state
   never show it and there is no flash before home.js runs. It sits above page
   content but below open <dialog>s (native top layer) and below .skip-link
   (z-index 1000). Fixed position => no layout shift / no CLS. */
.sticky-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  padding: 9px 12px;
  /* Clear the iOS home indicator (viewport-fit=cover is set in the head). */
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: var(--ink-dark);
  border-top: 2px solid var(--blue);
  box-shadow: 0 -6px 20px rgba(4, 7, 15, .5);
  /* Off state: parked below the fold with taps disabled — visibility:hidden
     also drops it from the tap target and tab order. visibility flips only
     AFTER the slide-out finishes so the exit animates; on show it flips
     immediately. prefers-reduced-motion nukes these transitions globally. */
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .28s ease, opacity .28s ease, visibility 0s linear .28s;
}

.sticky-book-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .28s ease, opacity .28s ease, visibility 0s;
}

.sticky-book-bar .brand-button {
  width: 100%;
  min-height: 56px;
  border-width: 2px;
  box-shadow: none;
}

.sticky-book-bar .brand-button:active {
  filter: brightness(.88);
  transform: translateY(1px);
}

.home-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink-dark);
  color: #fff;
}

.home-hero-media,
.home-hero-shade,
.home-hero-dots {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-shade {
  background: linear-gradient(180deg, rgba(13, 17, 32, .1) 25%, rgba(13, 17, 32, .98) 100%);
}

.home-hero-dots {
  top: auto;
  height: 160px;
  opacity: .42;
  background-image: radial-gradient(rgba(125, 182, 255, .25) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 72px;
  padding: 58px 48px 44px;
}

.display-title,
.footer-title,
.city-name,
.booking-title,
.party-title {
  margin: 0;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
}

.display-title {
  max-width: 720px;
  color: #fff;
  font-size: clamp(72px, 7.2vw, 104px);
  line-height: .9;
  text-shadow: 6px 6px 0 var(--blue);
}

.display-title span,
.footer-title span {
  color: var(--yellow);
}

.hero-subline {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

/* Five words of proof under the subline — stars + source only, no invented
   aggregate rating or review count (add real numbers when Victor supplies them). */
.hero-rating {
  margin: 9px 0 0;
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-rating .star {
  letter-spacing: .12em;
}

.hero-proof {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

.hero-proof .star {
  font-style: normal;
}

.star {
  color: var(--yellow);
}

.hero-booking {
  border: 3px solid var(--blue);
  background: rgba(18, 24, 40, .96);
  box-shadow: 6px 6px 0 rgba(30, 99, 200, .45);
  padding: 20px;
}

.booking-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-head strong {
  font-family: "Lilita One", sans-serif;
  font-size: 19px;
  font-weight: 400;
}

.booking-status {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

/* Today's sessions: a side-scrollable strip of every remaining time — each
   chip is a link straight into that slot's booking. */
.session-chips {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.session-chips::-webkit-scrollbar {
  display: none;
}

.session-chip {
  flex: 0 0 auto;
  min-height: 44px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  border: 1px solid var(--blue-light);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 12px;
  text-decoration: none;
}

.session-chip[disabled] {
  border-color: var(--border-dark);
  color: var(--faint-dark);
  cursor: not-allowed;
  opacity: .75;
  text-decoration: line-through;
}

.session-chip.is-selected {
  border: 2px solid var(--yellow);
  background: var(--selected-dark);
}

.hero-booking .brand-button {
  width: 100%;
  margin-top: 14px;
}

.booking-reassurance {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: var(--muted-dark);
  font-size: 11px;
}

.booking-link {
  display: block;
  margin-top: 13px;
  color: var(--blue-light);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 10px 0;
}

/* The venue address as the booking card's footer — part of "where am I going",
   kept out of the hero copy stack. Same tappable maps link + Directions pill
   as the city pages. */
.card-place {
  display: block;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline-dark);
  color: var(--yellow);
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}

.card-place:active {
  opacity: .8;
}

.card-place .hero-directions {
  margin-left: 8px;
  font-size: 10.5px;
  padding: 1px 8px 2px;
  vertical-align: 1px;
}

/* ---- Homepage city chooser ------------------------------------------------
   The hero-booking card in "Pick your arcade" mode: a header, an optional
   remembered-city Continue primary, five full-width city LINKS (each a real
   <a>, so the chooser works with JS off), and a "Use my location" button.
   Boxy dark-panel look matching the card; 44px+ targets; :active press states;
   hover only where a real pointer exists (no sticky touch hover). */
.hero-chooser .chooser-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}

.chooser-head strong {
  font-family: "Lilita One", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.chooser-sub {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

/* Remembered city — a filled primary shortcut floated above the list. */
.arcade-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-bottom: 12px;
  padding: 12px 18px;
  border: 2px solid #fff;
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--blue);
  color: #fff;
  font-family: "Lilita One", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.arcade-continue[hidden] {
  display: none;
}

.arcade-continue:active {
  filter: brightness(.9);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--blue);
}

.arcade-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arcade-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--border-dark);
  background: var(--panel-dark);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.arcade-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0; /* let a long place ellipsize instead of shoving the chip off */
}

.arcade-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.arcade-place {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Status chip — yellow (open), orange (live count), muted (waitlist). Boxy to
   match the card; wraps within its max-width for the longest waitlist copy. */
.arcade-chip {
  flex: 0 0 auto;
  max-width: 46%;
  border: 1px solid var(--border-dark);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.arcade-chip.is-open { color: var(--yellow); border-color: rgba(255, 192, 33, .5); }
.arcade-chip.is-live { color: var(--orange); border-color: rgba(255, 122, 26, .55); }
.arcade-chip.is-soon { color: var(--muted-dark); border-color: var(--border-dark); }

.arcade-btn:active {
  border-color: var(--yellow);
  background: var(--selected-dark);
}

/* Secondary "Use my location" — outline button under the list. */
.arcade-locate {
  appearance: none;
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border: 2px solid var(--border-dark);
  background: transparent;
  color: var(--blue-light);
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
}

.arcade-locate:active {
  border-color: var(--yellow);
  background: var(--selected-dark);
}

.arcade-btn:focus-visible,
.arcade-continue:focus-visible,
.arcade-locate:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .arcade-btn:hover {
    border-color: var(--yellow);
    background: var(--selected-dark);
  }

  .arcade-continue:hover {
    filter: brightness(.92);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--blue);
  }

  .arcade-locate:hover {
    border-color: var(--blue-light);
  }
}

@media (max-width: 860px) {
  .chooser-head strong { font-size: 18px; }
  .arcade-name { font-size: 15px; }
  .arcade-btn { min-height: 54px; padding: 9px 12px; }
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink-dark);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
  font-family: "Lilita One", sans-serif;
  font-size: 15px;
  letter-spacing: .035em;
  line-height: 1;
  padding: 12px 0;
  text-transform: uppercase;
}

.ticker-track span {
  padding-right: 28px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.home-main {
  padding: 66px 48px 0;
}

/* On CITY pages the transplanted classic sections must carry the classic's own
   light canvas — city bodies are dark (video spec: "Behind the doors" is
   black-on-cream, exactly as on the old homepage). */
.is-city .home-main {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 56px;
}

.home-intro {
  max-width: 970px;
  margin: 0;
  color: var(--body);
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.5;
}

.home-intro strong {
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
}

.home-intro .accent {
  color: var(--orange-deep);
}

.doors-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: 58px;
  margin-top: 62px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.025em;
  line-height: 1.1;
}

.door-list {
  margin-top: 24px;
  border-top: 2px solid var(--ink);
}

.door-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hairline);
}

.door-row:last-child {
  border-bottom: 2px solid var(--ink);
}

.door-num,
.door-meta {
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.door-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
}

.door-meta {
  color: var(--muted);
  text-align: right;
}

.door-more {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.polaroids {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 8px 0;
}

.polaroid {
  margin: 0;
  padding: 11px 11px 14px;
  border: 1px solid var(--hairline);
  background: #fff;
}

.polaroid:first-child {
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 var(--blue);
}

.polaroid:last-child {
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 var(--orange);
}

.polaroid img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.polaroid figcaption {
  padding-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.review-pull {
  max-width: 1020px;
  margin: 76px 0 0;
}

.review-pull blockquote {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.28;
}

.review-pull cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.objections {
  padding: 62px 0 68px;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.objection-grid h3 {
  margin: 0;
  font-size: 16px;
}

.objection-grid p {
  margin: 7px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  background: var(--ink-dark);
  color: #fff;
  padding: 60px 48px 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  gap: 64px;
}

.footer-title {
  font-size: clamp(48px, 5vw, 66px);
  line-height: .97;
  text-shadow: 4px 4px 0 var(--blue);
}

.footer-locations {
  padding-top: 8px;
}

.footer-location {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-dark);
  text-decoration: none;
}

.footer-location strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.footer-location span {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.footer-location:first-child span {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin-top: 22px;
}

.footer-link {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-dark);
  color: var(--faint-dark);
  font-size: 12px;
}

.location-dialog,
.party-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 24px);
  margin: auto;
  border: 3px solid var(--blue);
  background: var(--panel-dark);
  box-shadow: 7px 7px 0 var(--blue);
  color: #fff;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* iOS Safari: freeze the page behind an open dialog (both support :has ≥15.4). */
html:has(dialog[open]) {
  overflow: hidden;
}

/* Browsers without native <dialog> (iOS <15.4) have no UA rule hiding closed
   dialogs — without this, both pickers render inline at the bottom of the page. */
.location-dialog:not([open]),
.party-dialog:not([open]) {
  display: none;
}

.location-dialog::backdrop,
.party-dialog::backdrop {
  background: rgba(4, 7, 15, .78);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--hairline-dark);
  padding-bottom: 15px;
}

.dialog-head h2 {
  margin: 0;
  font-family: "Lilita One", sans-serif;
  font-size: 28px;
  text-shadow: 3px 3px 0 var(--blue);
}

.dialog-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--blue-light);
  cursor: pointer;
  font-weight: 900;
}

.location-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.location-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border-dark);
  color: #fff;
  padding: 15px;
  text-decoration: none;
}

.location-card strong {
  font-family: "Archivo Black", sans-serif;
}

.location-card span {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
}

.location-card:focus-visible {
  border-color: var(--yellow);
  background: var(--selected-dark);
}

/* Hover only where a real pointer exists — on touch this sticky :hover lit up
   the last-tapped card and could eat the first tap on the next one. */
@media (hover: hover) and (pointer: fine) {
  .location-card:hover {
    border-color: var(--yellow);
    background: var(--selected-dark);
  }
}

/* City ticket pages */
.city-shell {
  min-height: 100vh;
  background: var(--ink-dark);
}

.city-topbar,
.city-bar,
.city-content,
.city-details,
.city-footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.city-topbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
}

.city-topbar .site-logo {
  height: 40px;
}

.city-home-link,
.city-switch-link {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
}

.city-bar-wrap {
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  background: var(--panel-dark);
}

.city-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 24px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
}

.city-bar strong {
  color: var(--yellow);
}

.city-switch-link {
  color: var(--blue-light);
}

button.city-switch-link {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 44px;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 800;
}

.location-card.is-current {
  border-color: var(--yellow);
  background: var(--selected-dark);
  cursor: default;
}

.location-card.is-current > span:last-child {
  color: var(--yellow);
}

.city-hero {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.city-hero img,
.city-hero video,
.city-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.city-hero img,
.city-hero video {
  object-fit: cover;
}

.city-hero-shade {
  background: linear-gradient(180deg, rgba(13, 17, 32, .05) 28%, rgba(13, 17, 32, .97) 100%);
}

.city-hero-place {
  display: block;
  margin-top: 6px;
  max-width: 560px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.35;
  text-shadow: 2px 2px 0 rgba(13, 17, 32, .85);
  text-decoration: none;
  padding: 4px 0;
}

.city-hero-place:active {
  opacity: .8;
}

/* The tap affordance on the hero address — reads as a small button so the
   address is obviously navigable, not just a caption. */
.hero-directions {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px 3px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  text-shadow: none;
  background: rgba(13, 17, 32, .55);
  vertical-align: 2px;
  white-space: nowrap;
}

.city-topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.city-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.city-fact-link {
  text-decoration: none;
  color: inherit;
}

.city-fact-link:active {
  background: var(--selected-dark);
}

.city-fact-link strong {
  color: var(--blue-light);
}

.city-hero-copy {
  position: absolute;
  left: max(24px, calc((100vw - 1112px) / 2));
  right: 24px;
  bottom: 28px;
}

.city-name {
  font-size: clamp(46px, 6vw, 76px);
  line-height: .98;
  text-shadow: 4px 4px 0 var(--blue);
}

.city-proof {
  margin-top: 9px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
}

/* ---- Opened-city hero: hard-sell text column + quick-pick card ----------
   Only .city-hero.has-quickpick (engine cities) opts in; waitlist heroes keep
   the fixed-height poster + absolute bottom copy above. The video + shade are
   still inset:0, so they fill this taller box and the ~480ms poster LCP is
   unchanged — only the copy layer differs. */
.city-hero.has-quickpick {
  height: auto;
  min-height: 420px;
}

/* VIDEO SPEC (Victor's Jul-21 recording): the game-room video is BRIGHT at the
   top — barely tinted until the copy zone takes over. */
.city-hero.has-quickpick .city-hero-shade {
  background: linear-gradient(180deg, rgba(13, 17, 32, .1) 25%, rgba(13, 17, 32, .98) 100%);
}

/* Old-design geometry (the Jul-21 reference's own era): tall stage, copy
   anchored low so the game-room video breathes above it. */
.city-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  min-height: 640px;
  padding: 58px max(24px, calc((100vw - 1112px) / 2)) 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 72px;
}

.city-hero-eyebrow {
  margin: 0 0 10px;
  color: var(--text-dark-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(13, 17, 32, .85);
}

.city-hero-headline {
  margin: 0;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(72px, 7.2vw, 104px); /* old display-title scale */
  line-height: .9;
  text-shadow: 6px 6px 0 var(--blue);
}

.city-hero-headline span {
  color: var(--yellow);
}

.city-hero-facts {
  margin: 16px 0 0;
  max-width: 560px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 1px 1px 0 rgba(13, 17, 32, .7);
}

/* Video spec: one flowing italic line — quote, attribution, stars together. */
.city-hero-review {
  margin: 16px 0 0;
  max-width: 540px;
  font-style: italic;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 1px 1px 0 rgba(13, 17, 32, .7);
}

.city-hero-review .star {
  font-style: normal;
  letter-spacing: .08em;
}

/* The quick-pick card — the reference hero-booking, rebuilt in current tokens. */
.quick-pick {
  border: 3px solid var(--blue);
  background: rgba(18, 24, 40, .96);
  box-shadow: 6px 6px 0 rgba(30, 99, 200, .45);
  padding: 20px;
}

/* One shared row like the classic booking-head: title left, meta right (the
   meta TEXT wraps; the row never stacks). */
.quick-pick-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.quick-pick-head strong {
  font-family: "Lilita One", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}

/* Reserved (empty) before availability so no fake meta shows and nothing shifts. */
.quick-pick-meta {
  min-height: 15px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

/* Video spec: ONE horizontally scrollable row of ALL upcoming times — the chip
   cut off at the edge is the scroll affordance. Height reserved so live chips
   never push the CTA down; scrollbar hidden like the reference. */
.quick-chips {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  min-height: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.quick-chips::-webkit-scrollbar {
  display: none;
}

.quick-chip {
  flex: 0 0 auto;
  min-width: 84px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-light);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  padding: 6px 14px;
}

.quick-chip:active {
  border-color: var(--yellow);
  background: var(--selected-dark);
}

.quick-chip.is-selected {
  border: 2px solid var(--yellow);
  background: var(--selected-dark);
}

.quick-chip:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.quick-pick-cta {
  width: 100%;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.1;
  padding: 12px 14px;
}

.quick-pick-ticks {
  display: flex;
  justify-content: space-between; /* classic booking-reassurance: side by side */
  gap: 20px;
  margin-top: 13px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 500; /* classic measurement (inherited card weight) */
}

/* Classic gap was a flat 13px; the 44px tap box stays (dead-tap law) but the
   text centers inside it instead of padding itself downward. */
.quick-pick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px; /* 13px visual gap once the 44px box centers its text */
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.quick-pick-link:active {
  color: var(--yellow);
}

/* Hover only where a real pointer exists (dead-tap law). */
@media (hover: hover) and (pointer: fine) {
  .quick-chip:hover {
    border-color: var(--yellow);
    background: rgba(125, 182, 255, .12);
  }

  .quick-pick-link:hover {
    color: var(--yellow);
  }
}

.city-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--hairline-dark);
}

.city-fact {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px;
  border-right: 1px solid var(--hairline-dark);
  text-align: center;
}

.city-fact:last-child {
  border-right: 0;
}

.city-fact span {
  color: var(--faint-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.city-fact strong {
  color: var(--text-dark-strong);
  font-size: 13px;
}

.city-content {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 1fr);
  gap: 58px;
  padding: 34px 24px 54px;
}

.booking-title,
.party-title {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  text-shadow: 3px 3px 0 var(--blue);
}

.booking-copy {
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.date-nav {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-top: 20px;
}

.date-arrow {
  flex: 0 0 34px;
  border: 2px solid var(--border-dark);
  background: transparent;
  color: var(--blue-light);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.date-arrow:active {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Touch devices swipe the strip natively — arrows are desktop affordances. */
@media (hover: none) and (pointer: coarse) {
  .date-arrow { display: none; }
}

.date-strip {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.date-strip::-webkit-scrollbar {
  display: none;
}

.date-chip {
  flex: 0 0 64px;
  min-height: 62px;
  scroll-snap-align: start;
  border: 2px solid var(--border-dark);
  background: transparent;
  color: var(--text-dark-strong);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.date-chip strong {
  display: block;
  margin-top: 3px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.date-chip em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 9px;
  color: var(--muted-dark);
}

.date-chip.is-selected {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.date-chip.is-selected em {
  color: var(--ink);
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.slot-price-line {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
}

.slot-scarcity {
  margin: 8px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.slot-group-heading {
  margin: 14px 0 0;
  color: var(--faint-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 8px;
}

.slot-chip {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--blue-light);
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 6px 4px;
}

.slot-chip strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
}

.slot-chip em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted-dark);
}

.slot-chip em.scarce {
  color: var(--orange);
}

.slot-chip.is-soldout,
.slot-chip[disabled] {
  border-color: var(--border-dark);
  color: var(--faint-dark);
  cursor: not-allowed;
  opacity: .5;
}

.slot-chip.is-selected {
  border: 2px solid var(--yellow);
  background: var(--selected-dark);
}

.slot-chip:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.session-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--blue-light);
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

.session-row strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
}

.session-row span {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.session-row .scarce {
  color: var(--orange);
}

.session-row[disabled] {
  border-color: var(--border-dark);
  color: var(--faint-dark);
  cursor: not-allowed;
  opacity: .55;
  text-decoration: line-through;
}

.session-row.is-selected {
  border: 2px solid var(--yellow);
  background: var(--selected-dark);
}

.session-row.is-selected span {
  color: var(--yellow);
}

.booking-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-dark);
}

.booking-footer .brand-button {
  width: 100%;
}

.booking-footer .brand-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(.55);
  opacity: .55;
}

.booking-note,
.booking-message {
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.booking-note {
  margin: 12px 0 0;
}

.booking-message {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--orange);
  font-weight: 800;
}

.booking-fallback,
.waitlist-box,
.city-aside-card {
  border: 1px solid var(--border-dark);
  background: var(--panel-dark);
  padding: 20px;
}

.booking-fallback,
.waitlist-box {
  margin-top: 20px;
}

.booking-fallback h3,
.waitlist-box h3,
.city-aside-card h2 {
  margin: 0;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.booking-fallback p,
.waitlist-box p,
.city-aside-card p,
.city-aside-card li {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 16px;
}

.waitlist-input {
  min-height: 52px;
  width: 100%;
  border: 2px solid var(--blue-light);
  background: var(--ink-dark);
  color: #fff;
  padding: 0 14px;
}

.city-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-aside-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.city-aside-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline-dark);
}

.city-aside-card li:last-child {
  border-bottom: 0;
}

.city-aside-card a {
  color: var(--blue-light);
  font-weight: 800;
}

.city-details-wrap {
  background: var(--paper);
  color: var(--ink);
}

.city-details {
  padding: 66px 24px 74px;
}

.city-intro {
  max-width: 900px;
  margin: 0;
  color: var(--body);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
}

.city-intro strong {
  color: var(--orange-deep);
  font-family: "Archivo Black", sans-serif;
}

.city-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.city-feature {
  border-top: 2px solid var(--ink);
  padding-top: 17px;
}

.city-feature h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 19px;
}

.city-feature p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.faq-block {
  margin-top: 58px;
}

.faq-list {
  margin-top: 20px;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--hairline);
  padding: 17px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  max-width: 820px;
  margin: 11px 0 0;
  color: var(--body);
  line-height: 1.65;
}

.city-footer {
  border-top: 1px solid var(--hairline-dark);
  background: var(--ink-dark);
}

.city-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 24px;
  color: var(--faint-dark);
  font-size: 12px;
}

.city-footer a {
  color: var(--muted-dark);
}

/* ---- City story layer -----------------------------------------------------
   The harvested "home page" selling band, sitting between the hero/facts and
   the #tickets calendar for story-first (ad/direct) arrivals. Kept on the dark
   shell surface so it flows out of the cinematic hero straight into booking as
   one experience; the light reference band (features + FAQ) still lives below
   #tickets. Only opened cities render it. Every image is lazy + explicitly 16:9
   sized, so this band never touches the hero LCP and never shifts layout. No
   :hover rules of its own — the single link reuses .brand-button (already
   hover-gated and 52px tall). */
.city-story {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 46px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.story-headline {
  margin: 0;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.025em;
  line-height: 1.05;
  text-shadow: 3px 3px 0 var(--blue);
}

.story-headline span {
  color: var(--yellow);
}

.story-eyebrow {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Beat 1 — what-is-this explainer: copy beside one lead shot. */
.story-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

.story-lead {
  margin: 16px 0 0;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.6;
}

.story-ticks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.story-ticks li {
  position: relative;
  padding: 9px 0 9px 27px;
  border-bottom: 1px solid var(--hairline-dark);
  color: var(--text-dark-strong);
  font-size: 14px;
  font-weight: 700;
}

.story-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.story-cta {
  margin-top: 24px;
}

/* Framed room photography — a white-edged card with a hard brand offset,
   echoing the homepage polaroids but squared to the grid (no rotation). */
.story-shot {
  margin: 0;
  border: 3px solid #fff;
  background: var(--panel-dark);
  box-shadow: 8px 8px 0 rgba(255, 122, 26, .42);
}

.story-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-shot figcaption {
  padding: 9px 12px 11px;
  color: var(--text-dark-strong);
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
}

/* Beat 2 — rooms tease. */
.story-sub {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  font-weight: 700;
}

.story-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.story-room {
  display: flex;
  flex-direction: column;
}

.story-room .story-shot {
  border-width: 2px;
  box-shadow: 5px 5px 0 rgba(30, 99, 200, .5);
}

.story-room-copy {
  padding-top: 13px;
}

.story-room-tag {
  color: var(--blue-light);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-room-copy h3 {
  margin: 5px 0 0;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.story-room-copy p {
  margin: 6px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.story-room-more {
  margin: 22px 0 0;
  color: var(--text-dark-strong);
  font-size: 14px;
  font-weight: 800;
}

/* Beat 3 — proof band (genuine player reviews). */
.story-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.story-quote {
  margin: 0;
  border: 1px solid var(--border-dark);
  background: var(--panel-dark);
  padding: 20px;
}

.story-quote blockquote {
  margin: 0;
  color: var(--text-dark-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.story-quote figcaption {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 13px;
}

.story-quote figcaption strong {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
}

.story-quote .star {
  letter-spacing: .1em;
}

@media (max-width: 860px) {
  .city-story {
    padding: 30px 18px 22px;
    gap: 40px;
  }

  .story-explainer {
    display: block;
  }

  .story-shot-lead {
    margin-top: 24px;
  }

  .story-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .story-room-copy h3 {
    font-size: 16px;
  }

  .story-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-cta {
    width: 100%;
  }
}

.party-dialog {
  width: min(480px, calc(100vw - 28px));
  padding: 0;
}

.party-dialog .dialog-head {
  padding: 14px 18px;
}

.party-body {
  padding: 22px 18px 0;
}

.party-context {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.qty-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border: 1px solid var(--border-dark);
  background: var(--panel-dark);
  padding: 16px 14px;
}

.qty-panel strong {
  font-family: "Archivo Black", sans-serif;
}

.qty-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted-dark);
}

.addon-panel {
  border-color: rgba(255, 201, 40, 0.72);
  background: rgba(255, 201, 40, 0.08);
}

.addon-panel[hidden],
.summary-row[hidden] {
  display: none;
}

.qty-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--blue-light);
  background: transparent;
  color: var(--blue-light);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.qty-value {
  min-width: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  text-align: center;
}

.order-summary {
  margin-top: 18px;
  padding: 15px 0 20px;
  border-top: 1px solid var(--hairline-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 14px;
}

.summary-row.total {
  margin-top: 14px;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.order-status {
  margin: 24px 0;
  border: 2px solid var(--yellow);
  background: var(--panel-dark);
  padding: 24px;
}

.order-status h3 {
  margin: 8px 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  text-transform: uppercase;
}

.order-status p {
  color: var(--muted-dark);
  line-height: 1.6;
}

.order-ticket-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.order-ticket-codes code {
  border: 1px solid var(--blue-light);
  background: rgba(57, 194, 255, 0.08);
  padding: 8px 10px;
  color: #fff;
  font-weight: 900;
}

.ticket-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--blue-light);
  background: var(--ink-dark);
  padding: 12px;
}

.ticket-qr-label {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticket-qr img {
  display: block;
  background: #fff;
  border: 4px solid #fff;
}

.ticket-qr code {
  border: 0;
  background: transparent;
  padding: 0;
  letter-spacing: .06em;
}

.order-email-note {
  color: var(--text-dark-strong) !important;
  font-weight: 700;
}

.order-screenshot-tip {
  color: var(--yellow) !important;
  font-weight: 900;
}

.qty-button[disabled] {
  border-color: var(--border-dark);
  color: var(--faint-dark);
  cursor: not-allowed;
  opacity: .5;
}

.party-actions {
  padding: 14px 18px 22px;
  border-top: 1px solid var(--hairline-dark);
}

.party-actions .brand-button {
  width: 100%;
}

/* Touch feedback: the tap highlight is cleared globally, so controls that don't
   instantly repaint their own state get a visible press here — without it a
   registered tap can look like nothing happened and gets tapped again. (Date,
   slot and session controls already flip to .is-selected on tap.) */
.location-button:active,
.location-card:active,
.session-chip:active,
.qty-button:active,
.dialog-close:active {
  border-color: var(--yellow);
  background: var(--selected-dark);
}

/* Desktop only: the header rides along so Book is always one reach away, with a
   lift-off shadow once scrolled (home.js toggles .is-scrolled, only on state
   change). MOBILE IS INTENTIONALLY EXCLUDED — there the header still scrolls
   away exactly as before and the sticky bottom book bar is the persistent CTA.
   Do NOT move position:sticky onto the base .site-header rule, or mobile will
   inherit it. z-index sits below open <dialog>s (native top layer) and below
   .skip-link (1000); 861px is the exact complement of the mobile 860px rule. */
@media (min-width: 861px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 800;
  }

  .site-header.is-scrolled {
    box-shadow: 0 3px 16px rgba(4, 7, 15, .5);
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  /* Reveal the sticky book bar on mobile; its actual visibility is then driven
     by the .is-visible toggle from home.js (hidden until past the hero card). */
  .sticky-book-bar {
    display: block;
  }

  .site-logo {
    height: 42px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    gap: 14px;
  }

  .location-button {
    max-width: 128px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .brand-button {
    min-height: 44px;
    padding: 8px 13px;
    border-color: var(--ink-dark);
    box-shadow: 3px 3px 0 var(--blue-light);
    color: var(--ink-dark);
    font-size: 14px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .home-hero {
    padding-bottom: 20px;
  }

  .home-hero-media,
  .home-hero-shade,
  .home-hero-dots {
    height: 470px;
    bottom: auto;
  }

  .home-hero-inner {
    display: block;
    padding: 0 18px;
  }

  .hero-copy {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 22px;
  }

  .display-title {
    font-size: 48px;
    text-shadow: 4px 4px 0 var(--blue);
  }

  .hero-subline {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-booking {
    padding: 16px;
    box-shadow: 5px 5px 0 rgba(30, 99, 200, .4);
  }

  .booking-head strong {
    font-size: 17px;
  }

  .booking-reassurance {
    gap: 14px;
  }

  .home-main {
    padding: 34px 18px 0;
  }

  .home-intro {
    font-size: 19px;
  }

  .doors-grid {
    display: block;
    margin-top: 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .door-row {
    grid-template-columns: 26px minmax(0, 1fr) 92px;
    gap: 8px;
    padding: 13px 0;
  }

  .door-name {
    font-size: 17px;
  }

  .door-meta {
    font-size: 10px;
  }

  .polaroids {
    gap: 21px;
    padding: 32px 8px 0;
  }

  .polaroid img {
    height: 190px;
  }

  .review-pull {
    margin-top: 44px;
  }

  .review-pull blockquote {
    font-size: 21px;
  }

  .objections {
    padding: 34px 0;
  }

  .objection-grid {
    display: block;
    margin-top: 14px;
    padding-top: 0;
  }

  .objection-grid article {
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .site-footer {
    padding: 34px 18px 28px;
  }

  .footer-grid {
    display: block;
  }

  .footer-title {
    font-size: 38px;
    text-shadow: 3px 3px 0 var(--blue);
  }

  .footer-grid .brand-button {
    width: 100%;
    margin-top: 22px;
  }

  .footer-locations {
    margin-top: 22px;
  }

  .footer-location strong {
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 28px;
  }

  .city-topbar,
  .city-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .city-hero {
    height: 230px;
  }

  /* Engine cities: hero grows to fit the stacked text + card; the card lands
     directly under the hero text, before the facts strip / story scroll. */
  .city-hero.has-quickpick {
    height: auto;
    min-height: 0;
  }

  .city-hero-inner {
    display: block;
    padding: 0 18px 20px;
  }

  .city-hero-inner {
    min-height: 0;
  }

  /* Video spec: a full photo zone above the copy — headline starts ~300px down. */
  .city-hero-text {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
  }

  .city-hero-headline {
    font-size: 48px; /* old mobile display-title */
    text-shadow: 4px 4px 0 var(--blue);
  }

  .city-hero-facts {
    font-size: 15px;
  }

  .quick-pick {
    padding: 16px;
    box-shadow: 5px 5px 0 rgba(30, 99, 200, .4);
  }

  .city-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }

  .city-name {
    font-size: 38px;
    text-shadow: 3px 3px 0 var(--blue);
  }

  .city-proof {
    font-size: 12px;
  }

  .city-fact {
    min-height: 68px;
    padding: 10px 7px;
  }

  .city-fact strong {
    font-size: 12px;
  }

  .city-content {
    display: block;
    padding: 24px 18px 34px;
  }

  .booking-title {
    font-size: 27px;
  }

  .date-strip {
    gap: 6px;
  }

  .date-chip {
    flex-basis: 58px;
    min-height: 56px;
  }

  .session-row {
    min-height: 54px;
  }

  .slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 7px;
  }

  .slot-chip {
    min-height: 46px;
  }

  .city-aside {
    margin-top: 28px;
  }

  .city-details {
    padding: 38px 18px 46px;
  }

  .city-intro {
    font-size: 19px;
  }

  .city-feature-grid {
    display: block;
    margin-top: 28px;
  }

  .city-feature {
    margin-top: 22px;
  }

  .city-footer-inner {
    display: block;
    padding: 26px 18px;
  }

  .city-footer-inner div:last-child {
    margin-top: 14px;
  }

  .waitlist-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .city-home-link {
    font-size: 12px;
  }

  .city-topbar {
    gap: 10px;
  }

  .city-topbar-links {
    gap: 10px;
  }

  .city-call {
    font-size: 13px;
  }

  .city-hero-place {
    font-size: 14px;
  }

  .hero-directions {
    margin-left: 7px;
    font-size: 11px;
  }

  .city-bar {
    font-size: 11.5px;
  }

  .city-switch-link {
    max-width: 120px;
    text-align: right;
  }

  .city-fact strong {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  *, *::before, *::after { transition: none !important; }
}
