/* =========================================================================
   PLANET ROYALE - Cinematic snap-scroll
   Each section is a full-viewport panel. CSS scroll-snap drives the rhythm.
   Brand: Vice Royale (GTA Vice City × space arcade).
   Tokens are inlined here for max compatibility - no @import.
   ========================================================================= */

/* ---------------- Webfonts ---------------- */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Yellowtail&family=Pacifico&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=VT323&family=Press+Start+2P&display=swap");

:root {
  /* Brand colors */
  --pr-cosmos:        #0B0F2E;
  --pr-deep-navy:     #161E4D;
  --pr-purple:        #6A1B9A;
  --pr-pink:          #FF2D87;
  --pr-cyan:          #00E5FF;
  --pr-orange:        #FF7A1A;
  --pr-pulp-red:      #D7263D;
  --pr-green:         #2BB673;
  --pr-cream:         #F4EFE6;
  --pr-cream-shade:   #E6DFCF;

  /* Type stacks */
  --f-display:    "Anton", Impact, sans-serif;
  --f-chunk:      "Archivo Black", "Anton", Impact, sans-serif;
  --f-script:     "Yellowtail", "Pacifico", cursive;
  --f-hud:        "Space Grotesk", system-ui, sans-serif;
  --f-mono:       "Space Mono", ui-monospace, monospace;
  --f-pixel:      "Press Start 2P", monospace;
  --f-bitmap:     "VT323", monospace;

  /* Shadows */
  --shadow-3d:    3px 3px 0 #000, 6px 6px 0 var(--pr-pulp-red);
  --shadow-3d-l:  4px 4px 0 #000, 8px 8px 0 var(--pr-pulp-red);
  --glow-pink:    0 0 0 2px rgba(255,45,135,0.35), 0 0 28px rgba(255,45,135,0.55);
  --glow-cyan:    0 0 0 2px rgba(0,229,255,0.35),  0 0 28px rgba(0,229,255,0.55);
  --glow-green:   0 0 0 2px rgba(43,182,115,0.35), 0 0 28px rgba(43,182,115,0.45);
}

/* ---------------- Reset & base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background-color: #0B0F2E;
  color: var(--pr-cream);
  font-family: var(--f-hud);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; scroll-snap-type: y proximity; scrollbar-gutter: stable; }
body { min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   AGE GATE - sits above everything, first-visit only
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(106, 27, 154, 0.55) 0%, transparent 60%),
    radial-gradient(120% 80% at 80% 100%, rgba(255, 45, 135, 0.30) 0%, transparent 60%),
    var(--pr-cosmos);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: age-fade-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.age-gate[hidden] { display: none; }
.age-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.16) 0 1px, transparent 1px 3px);
}
@keyframes age-fade-in { from { opacity: 0; } to { opacity: 1; } }
.age-gate-card,
.age-gate-deny {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: var(--pr-cream);
  color: #0B0F2E;
  border: 6px solid #000;
  border-radius: 18px;
  padding: 32px 36px 28px;
  box-shadow: 12px 12px 0 #000;
  text-align: center;
  animation: age-pop 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes age-pop {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.age-gate-tag {
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--pr-pink);
  margin: 0 0 16px;
}
.age-gate-headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #0B0F2E;
  margin: 0 0 12px;
  letter-spacing: 0;
}
.age-gate-headline .scr {
  font-family: var(--f-script);
  color: var(--pr-pink);
  font-size: 0.78em;
  text-transform: none;
  display: inline-block;
  transform: rotate(-3deg) translateY(-0.04em);
  margin: 0 0.05em;
  font-weight: 400;
}
.age-gate-strap {
  font-family: var(--f-hud);
  font-size: 15px;
  line-height: 1.5;
  color: #444441;
  margin: 0 0 22px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.age-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 22px 0 16px;
}
.age-gate-dob {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  border: 0;
  margin: 0;
  padding: 0;
}
.age-gate-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.age-gate-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5F5E5A;
  text-align: center;
}
.age-gate-field input {
  background: #fff;
  border: 3px solid #0B0F2E;
  border-radius: 6px;
  padding: 10px 8px;
  font-family: var(--f-display);
  font-size: 32px;
  font-style: italic;
  text-align: center;
  width: 64px;
  color: #0B0F2E;
  text-transform: uppercase;
}
.age-gate-field.age-gate-year input { width: 110px; }
.age-gate-field input:focus {
  outline: 0;
  border-color: var(--pr-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.25);
}
.age-gate-field input::placeholder { color: rgba(11, 15, 46, 0.3); }
.age-gate-sep {
  font-family: var(--f-display);
  font-size: 32px;
  color: #0B0F2E;
  align-self: center;
  padding-bottom: 4px;
  user-select: none;
}
.age-gate-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444441;
  cursor: pointer;
  margin: 4px 0 8px;
}
.age-gate-remember input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--pr-pink);
  cursor: pointer; margin: 0;
}
.age-gate-error {
  background: var(--pr-pulp-red);
  color: #fff;
  padding: 10px 14px;
  border: 2px solid #000;
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.age-gate-fineprint {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5F5E5A;
  margin: 12px 0 0;
}
.age-gate-fineprint a {
  color: var(--pr-pink);
  border-bottom: 1px dashed var(--pr-pink);
}
.age-gate-deny .btn { display: none; }
@media (max-width: 720px) {
  .age-gate-card, .age-gate-deny { padding: 28px 24px 22px; }
  .age-gate-headline { font-size: 38px; }
  .age-gate-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   BOOT-UP LOADER
   ============================================================ */
.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0B0F2E;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: boot-fade-out 600ms 2400ms ease forwards;
}
.boot-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 3px);
  z-index: 1;
}
.boot-loader.gone {
  display: none;
}
.boot-frame {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 16px 24px;
  max-width: 520px;
  width: 90%;
}
.boot-line {
  font-family: var(--f-bitmap);
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.04em;
  color: var(--pr-cream);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  animation: boot-type 0.001s forwards;
}
.boot-line:nth-of-type(1) { animation-delay: 100ms;  }
.boot-line:nth-of-type(2) { animation-delay: 400ms;  }
.boot-line:nth-of-type(3) { animation-delay: 700ms;  }
.boot-line:nth-of-type(4) { animation-delay: 1000ms; }
.boot-line:nth-of-type(5) { animation-delay: 1300ms; }
.boot-line:nth-of-type(6) { animation-delay: 1900ms; }
@keyframes boot-type { to { opacity: 1; } }
.boot-brand {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 3px 3px 0 var(--pr-pulp-red), 6px 6px 0 #000;
  color: var(--pr-cream);
}
.boot-mono { color: var(--pr-cyan); }
.boot-ok   { color: var(--pr-green); }
.boot-press {
  font-family: var(--f-pixel);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--pr-pink);
  margin-top: 18px;
}
.boot-bar {
  margin: 12px 0 6px;
  height: 14px;
  background: rgba(244, 239, 230, 0.1);
  border: 2px solid var(--pr-cream);
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  animation: boot-type 0.001s 1500ms forwards;
}
.boot-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--pr-cyan);
  animation: boot-fill 1100ms 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes boot-fill { from { width: 0%; } to { width: 100%; } }
@keyframes boot-fade-out { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .boot-loader { animation: none; display: none; }
}

/* ============================================================
   ENTRANCE ANIMATIONS - IntersectionObserver adds .pr-in
   ============================================================ */
.panel-content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.panel.pr-in .panel-content > * { opacity: 1; transform: translateY(0); }
.panel.pr-in .panel-content > *:nth-child(1) { transition-delay: 60ms; }
.panel.pr-in .panel-content > *:nth-child(2) { transition-delay: 140ms; }
.panel.pr-in .panel-content > *:nth-child(3) { transition-delay: 220ms; }
.panel.pr-in .panel-content > *:nth-child(4) { transition-delay: 300ms; }
.panel.pr-in .panel-content > *:nth-child(5) { transition-delay: 380ms; }
.panel.pr-in .panel-content > *:nth-child(6) { transition-delay: 460ms; }
.panel.pr-in .panel-content > *:nth-child(7) { transition-delay: 540ms; }
.panel-meta, .scroll-cue {
  opacity: 0;
  transition: opacity 600ms ease 200ms;
}
.panel.pr-in .panel-meta, .panel.pr-in .scroll-cue { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .panel-content > *, .panel-meta, .scroll-cue {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ============================================================
   KEN BURNS - subtle slow zoom on hero photo
   ============================================================ */
.panel-hero {
  background-position: center;
  animation: ken-burns 28s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { background-size: 105% auto; background-position: 50% 50%; }
  to   { background-size: 115% auto; background-position: 52% 48%; }
}
@media (prefers-reduced-motion: reduce) {
  .panel-hero { animation: none; background-size: cover; }
}

/* ============================================================
   PER-PANEL SCANLINE INTENSITIES
   ============================================================ */
.panel-hero      .panel-scanlines { opacity: 1.0; }
.panel-theatre   .panel-scanlines { opacity: 0.85; }
.panel-deals     .panel-scanlines { opacity: 0.45; }
.panel-food      .panel-scanlines { opacity: 0.55; }
.panel-destinations .panel-scanlines { opacity: 0.4; }
.panel-functions .panel-scanlines { opacity: 0.85; }
.panel-drinks    .panel-scanlines { opacity: 0.7; }
.panel-visit     .panel-scanlines { opacity: 0.3; }

/* ---------------- Accessibility ---------------- */
.skip-link {
  position: absolute;
  top: -100px; left: 16px; z-index: 999;
  background: var(--pr-pink); color: #0B0F2E;
  padding: 12px 20px;
  border: 3px solid #000; border-radius: 8px;
  font-family: var(--f-chunk);
  text-transform: uppercase; font-size: 14px; letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 #000;
  transition: top 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--pr-cyan); outline-offset: 4px; border-radius: 4px; }

/* ============================================================
   NAV - slim sticky bar across the top of every panel
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 24px;
  pointer-events: none;
  transition: padding 0.3s cubic-bezier(.22,1,.36,1);
}
.nav.is-scrolled { padding: 8px 24px; }
.nav-inner {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 22px;
  background:
    linear-gradient(180deg, rgba(11, 15, 46, 0.88) 0%, rgba(11, 15, 46, 0.78) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 999px;
  max-width: 1240px;
  margin: 0 auto;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 32px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 45, 135, 0.0);
  transition:
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    padding 0.3s cubic-bezier(.22,1,.36,1);
}
.nav.is-scrolled .nav-inner {
  padding: 6px 10px 6px 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 22px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 45, 135, 0.18);
  border-color: rgba(244, 239, 230, 0.28);
}
.nav-brand {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--pr-cream);
  white-space: nowrap;
  text-shadow: 1px 1px 0 var(--pr-pulp-red), 2px 2px 0 #000;
  margin-right: 6px;
  transition: transform 0.18s, text-shadow 0.18s;
}
.nav-brand:hover {
  transform: translate(-1px, -1px);
  text-shadow: 2px 2px 0 var(--pr-pulp-red), 3px 3px 0 #000;
}
.nav-links {
  display: flex;
  gap: 4px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  color: var(--pr-cream);
  opacity: 0.96;
  padding: 9px 13px;
  border-radius: 8px;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  transition: color 0.18s, opacity 0.18s, background 0.22s, transform 0.18s, text-shadow 0.18s;
}
.nav-links a::before {
  /* Glow halo behind link on hover */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(255, 45, 135, 0.22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: -1;
}
.nav-links a::after {
  /* Animated underline - slides in from left, gradient cyan→pink */
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-cyan) 0%, var(--pr-pink) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(.22, 1, .36, 1);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 45, 135, 0.35);
  outline: none;
}
.nav-links a:hover::before,
.nav-links a:focus-visible::before { opacity: 1; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] {
  color: #fff;
  opacity: 1;
  background: rgba(255, 45, 135, 0.20);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--pr-pink);
  box-shadow: 0 0 10px rgba(255, 45, 135, 0.7);
}

.nav-cta { margin-left: auto; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--pr-cream);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.nav-toggle:hover {
  background: rgba(255, 45, 135, 0.18);
  border-color: var(--pr-pink);
}

/* ============================================================
   BUTTONS - flat solid, hard 3px black border + offset shadow
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-chunk);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border: 3px solid #000;
  border-radius: 6px;
  color: #0B0F2E;
  background: var(--pr-cream);
  box-shadow: 5px 5px 0 #000;
  transition: transform 120ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 120ms;
  white-space: nowrap;
}
.btn:hover  { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 #000; }
.btn:active { transform: translate(3px, 3px);   box-shadow: 2px 2px 0 #000; }
.btn-pink   { background: var(--pr-pink); }
.btn-cyan   { background: var(--pr-cyan); }
.btn-green  { background: var(--pr-green); }
.btn-orange { background: var(--pr-orange); }
.btn-cream  { background: var(--pr-cream); }
.btn-ghost  { background: transparent; color: var(--pr-cream); border-color: var(--pr-cream); box-shadow: none; }
.btn-ghost:hover { background: var(--pr-cream); color: #0B0F2E; }
.btn-sm   { font-size: 13px; padding: 9px 16px; box-shadow: 3px 3px 0 #000; }
.btn-lg   { font-size: 20px; padding: 18px 30px; box-shadow: 6px 6px 0 #000; }

/* Touch-device tap-target bump - WCAG 2.5.5 recommends 44×44px minimum */
@media (pointer: coarse) {
  .btn-sm { padding: 12px 18px; min-height: 44px; }
  .btn    { min-height: 44px; }
  .nav-links a, .nav-links button { min-height: 44px; }
}

/* ============================================================
   PANEL - full-viewport cinematic section
   ============================================================ */
.panel {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
  isolation: isolate;
  background-color: #0B0F2E;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}

/* Video background - fills the panel behind the overlay/scanlines */
.panel-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .panel-bg-video { display: none; }
}

/* Dark gradient overlay for legibility on photo panels */
.panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 25% 25%, rgba(255, 45, 135, 0.22), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.45) 0%, rgba(11, 15, 46, 0.92) 100%);
}
.panel-overlay.overlay-green {
  background:
    radial-gradient(120% 80% at 30% 25%, rgba(43, 182, 115, 0.30), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(255, 45, 135, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.50) 0%, rgba(11, 15, 46, 0.94) 100%);
}
.panel-overlay.overlay-orange {
  background:
    radial-gradient(120% 80% at 25% 25%, rgba(255, 122, 26, 0.28), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(255, 45, 135, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.45) 0%, rgba(11, 15, 46, 0.92) 100%);
}
.panel-overlay.overlay-amber {
  background:
    radial-gradient(120% 80% at 30% 25%, rgba(255, 122, 26, 0.32), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(255, 209, 102, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.45) 0%, rgba(11, 15, 46, 0.92) 100%);
}
.panel-overlay.overlay-pink {
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(255, 45, 135, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.50) 0%, rgba(11, 15, 46, 0.92) 100%);
}
.panel-overlay.overlay-purple {
  background:
    radial-gradient(120% 80% at 25% 30%, rgba(106, 27, 154, 0.45), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.55) 0%, rgba(11, 15, 46, 0.95) 100%);
}

/* CRT scanlines - subtle, 1px stripes */
.panel-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.16) 0 1px, transparent 1px 3px);
}

/* Content grid - top meta row, middle content, bottom scroll cue */
.panel-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 96px 7vw 40px;
  min-height: 100vh;
}

/* Top row: panel counter + locale */
.panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  opacity: 0.9;
}
.panel-meta .counter::before { content: "//  "; opacity: 0.5; }

/* Middle row: main content */
.panel-content {
  align-self: center;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin: 0;
}
.eyebrow-pink   { color: var(--pr-pink); }
.eyebrow-green  { color: var(--pr-green); }
.eyebrow-orange { color: var(--pr-orange); }
.eyebrow-cream  { color: var(--pr-cream); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: var(--shadow-3d-l);
  margin: 0;
}
.display .scr {
  font-family: var(--f-script);
  font-size: 0.5em;
  color: var(--pr-pink);
  text-transform: none;
  display: inline-block;
  transform: rotate(-4deg) translateY(-4px);
  margin: 0 8px 0 -2px;
  text-shadow: 3px 3px 0 #000;
  font-weight: 400;
}
.display.smaller { font-size: clamp(48px, 9vw, 140px); }

.strapline {
  font-family: var(--f-chunk);
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--pr-cream);
  max-width: 720px;
  margin: 0;
}
.body-line {
  font-family: var(--f-hud);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.85);
  max-width: 640px;
  margin: 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Bottom row: scroll cue */
.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--pr-cyan);
  text-transform: uppercase;
}
.scroll-cue .blink {
  animation: pr-blink 1.6s steps(2) infinite;
}
@keyframes pr-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0.2; }
}

/* ============================================================
   PANEL: HERO
   ============================================================ */
.panel-hero .display {
  font-size: clamp(64px, 13vw, 220px);
}
/* Hero lockup - small "Welcome to" eyebrow-display + big PLANET ROYALE on one line */
.hero-lockup {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.88;
}
.hero-lockup .display-pre {
  font-family: var(--f-display);
  font-size: 0.34em;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 var(--pr-pulp-red), 4px 4px 0 #000;
  margin-bottom: 0.06em;
  display: inline-block;
}
.hero-lockup .display-main {
  display: block;
  line-height: 0.88;
  white-space: nowrap;
}
.hero-lockup .scr {
  font-family: var(--f-script);
  color: var(--pr-pink);
  text-transform: none;
  font-size: 0.82em;
  display: inline-block;
  transform: rotate(-3deg) translateY(0.04em);
  margin: 0 0.04em 0 -0.02em;
  text-shadow: 3px 3px 0 #000;
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .hero-lockup .display-main { white-space: normal; }
  .hero-lockup .display-pre { font-size: 0.4em; }
  .hero-lockup .scr { font-size: 0.86em; }
}
.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 8px 14px 8px 8px;
  background: rgba(11, 15, 46, 0.78);
  border: 1.5px solid var(--pr-cyan);
  border-radius: 999px;
  margin-bottom: 8px;
  max-width: 100%;
}
.hero-ticker-tag {
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.05em;
  background: var(--pr-pink);
  color: #0B0F2E;
  padding: 5px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  animation: pr-blink 1.6s steps(2) infinite;
}
.hero-ticker-msg {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pr-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 720px) {
  .hero-ticker-msg { font-size: 11px; letter-spacing: 0.06em; }
}

/* eyebrow amber accent */
.eyebrow-amber { color: #FFD166 !important; }

/* ============================================================
   PANEL: THEATRE - redesigned with horizontal show card scroller
   ============================================================ */
.theatre-panel-content {
  gap: 18px;
}
.theatre-intro {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.theatre-intro .strapline { max-width: 640px; }

/* Horizontal scroller of show poster cards */
.show-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 7vw;
  padding: 12px 7vw 24px 0;
  margin: 8px -7vw 0;
  margin-left: 0;
  scrollbar-color: var(--pr-orange) rgba(11, 15, 46, 0.4);
  scrollbar-width: thin;
}
.show-scroller::-webkit-scrollbar { height: 8px; }
.show-scroller::-webkit-scrollbar-track {
  background: rgba(11, 15, 46, 0.4);
  border-radius: 999px;
}
.show-scroller::-webkit-scrollbar-thumb {
  background: var(--pr-orange);
  border-radius: 999px;
}
.show-poster-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--pr-cosmos);
  border: 3px solid #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 6px 6px 0 #000;
  display: flex;
  flex-direction: column;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms;
}
.show-poster-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}
.show-poster {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--pr-deep-navy);
  border-bottom: 3px solid #000;
  position: relative;
}
.show-poster-cta {
  background: linear-gradient(135deg, var(--pr-pink) 0%, var(--pr-orange) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  text-transform: uppercase;
  color: #0B0F2E;
  text-align: center;
  gap: 4px;
  padding: 16px;
}
.show-poster-cta-line {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.92;
  text-shadow: 2px 2px 0 var(--pr-cream);
}
.show-poster-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.show-stamp {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFD166;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
}
.show-poster-title {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 #000;
  margin: 4px 0 2px;
}
.show-poster-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.7);
  text-transform: uppercase;
  margin: 0 0 8px;
  flex: 1;
}
.show-poster-card .btn { align-self: flex-start; }

/* Quick-access date pill strip */
.show-date-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  background: rgba(11, 15, 46, 0.65);
  border: 2px solid rgba(255, 209, 102, 0.45);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-cream);
  transition: border-color 120ms, background 120ms, transform 120ms;
}
.date-pill > span:first-child {
  color: #FFD166;
  font-weight: 700;
}
.date-pill > span:nth-child(2) {
  color: var(--pr-cream);
  font-family: var(--f-chunk);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.date-pill .date-pill-link {
  color: var(--pr-green);
  border-bottom: 1px solid var(--pr-green);
  padding-bottom: 1px;
}
.date-pill:hover {
  border-color: var(--pr-orange);
  background: rgba(11, 15, 46, 0.85);
  transform: translateY(-1px);
}
.date-pill.date-pill-cta {
  background: var(--pr-pink);
  border-color: #000;
  color: #0B0F2E;
}
.date-pill.date-pill-cta > span:first-child {
  color: #0B0F2E;
}
.date-pill.date-pill-cta:hover {
  background: var(--pr-cream);
  color: #0B0F2E;
}

@media (max-width: 720px) {
  .show-scroller { gap: 12px; padding-bottom: 20px; }
  .show-poster-card { flex: 0 0 220px; }
  .show-poster-title { font-size: 22px; }
  .date-pill { padding: 8px 14px 8px 12px; gap: 8px; font-size: 10px; }
  .date-pill > span:nth-child(2) { font-size: 11px; }
}

/* ============================================================
   PANEL: THEATRE (legacy styles kept for theatre.html sub-page)
   ============================================================ */
.panel-theatre .show-meta {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pr-cream);
  margin: 0;
}
.show-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
  border-top: 1px dashed rgba(244, 239, 230, 0.25);
  padding-top: 18px;
}
.show-list-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin: 0 0 4px;
}
.show-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.14);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.show-item .show-date { color: var(--pr-cyan); }
.show-item .show-name { color: var(--pr-cream); font-family: var(--f-chunk); }
.show-item a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--pr-green);
  border-bottom: 1px solid var(--pr-green);
  padding-bottom: 1px;
}

/* ============================================================
   PANEL: DEALS
   ============================================================ */
.panel-deals {
  background-color: var(--pr-cosmos);
}
.panel-deals .panel-overlay {
  background:
    radial-gradient(120% 80% at 80% 25%, rgba(255, 45, 135, 0.30), transparent 60%),
    radial-gradient(120% 80% at 20% 80%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.55) 0%, rgba(11, 15, 46, 0.94) 100%);
}
.deal-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.deal-feature-text { display: flex; flex-direction: column; gap: 12px; }

/* Poster wall - today's deal at the front, two upcoming days peeking out behind */
.poster-wall {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: min(56vh, 540px);
  justify-self: end;
  perspective: 800px;
}
.poster-wall .poster-front,
.poster-wall .poster-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--pr-deep-navy);
  border: 6px solid var(--pr-cream);
  box-shadow: 6px 6px 0 #000;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.poster-wall .poster-back {
  border-color: rgba(244, 239, 230, 0.65);
  box-shadow: 4px 4px 0 #000;
  filter: brightness(0.65) saturate(0.8);
}
.poster-wall .poster-back-1 {
  transform: rotate(-7deg) translate(-12%, 4%) scale(0.9);
  z-index: 1;
}
.poster-wall .poster-back-2 {
  transform: rotate(6deg) translate(11%, 6%) scale(0.86);
  z-index: 0;
}
.poster-wall .poster-front {
  z-index: 2;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 #000;
}
.poster-wall:hover .poster-front { transform: rotate(0deg) translateY(-4px); box-shadow: 10px 10px 0 #000; }
.poster-wall:hover .poster-back-1 { transform: rotate(-9deg) translate(-15%, 4%) scale(0.9); }
.poster-wall:hover .poster-back-2 { transform: rotate(8deg) translate(14%, 6%) scale(0.86); }

/* "TODAY" sticker stamped on the front poster */
.poster-stamp {
  position: absolute;
  top: 14px;
  right: -10px;
  z-index: 3;
  background: var(--pr-pink);
  color: #0B0F2E;
  font-family: var(--f-pixel);
  font-size: 11px;
  padding: 8px 12px;
  border: 3px solid #000;
  border-radius: 4px;
  letter-spacing: 0.06em;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 #000;
}
.big-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  color: var(--pr-cream);
  text-shadow: 3px 3px 0 #000, 6px 6px 0 var(--pr-pink);
  margin: 0;
}
/* Mini-postcard day strip - each pill is a mini designed poster */
.deals-week {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 980px;
}
.deal-pill {
  position: relative;
  aspect-ratio: 1 / 1.25;
  background: var(--pr-deep-navy);
  background-size: cover;
  background-position: center;
  border: 3px solid #000;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms;
  box-shadow: 4px 4px 0 #000;
  isolation: isolate;
}
.deal-pill:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 #000; }
.deal-pill.active:not(.today) {
  border-color: var(--pr-cyan);
  box-shadow: 4px 4px 0 #000, var(--glow-cyan);
  transform: translateY(-4px);
}
/* Solid dark "label band" pinned to the bottom of each pill so the text reads
   loud and clear against any designed poster background. */
.deal-pill .deal-pill-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 46, 0.92) 30%, var(--pr-cosmos) 100%);
  padding: 28px 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  text-align: left;
  text-transform: uppercase;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}
.deal-pill .day-abbr {
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--pr-cyan);
  text-shadow: 1px 1px 0 #000;
}
.deal-pill .day-name {
  font-family: var(--f-chunk);
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--pr-cream);
  text-shadow: 1px 1px 0 #000, 2px 2px 0 rgba(0, 0, 0, 0.6);
}
.deal-pill .day-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 #000, 3px 3px 0 var(--pr-pulp-red);
  margin-top: 4px;
}

/* Today's pill - pink label band + glow + lifted */
.deal-pill.today {
  border-color: var(--pr-pink);
  box-shadow: 4px 4px 0 #000, var(--glow-pink);
  transform: translateY(-4px);
}
.deal-pill.today .deal-pill-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 45, 135, 0.92) 30%, var(--pr-pink) 100%);
  border-top-color: rgba(255, 255, 255, 0.18);
}
.deal-pill.today .day-abbr  { color: #0B0F2E; text-shadow: none; }
.deal-pill.today .day-name  { color: #0B0F2E; text-shadow: 1px 1px 0 rgba(255,255,255,0.4); }
.deal-pill.today .day-price { color: #0B0F2E; text-shadow: 2px 2px 0 var(--pr-cream); }
.deal-pill.today::after {
  content: "TODAY";
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--f-pixel);
  font-size: 8px;
  background: #0B0F2E;
  color: var(--pr-cyan);
  padding: 4px 6px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

/* ============================================================
   PANEL: FOOD / UBER EATS
   ============================================================ */
.panel-food {
  background-color: var(--pr-cosmos);
}
.food-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.food-feature-text { display: flex; flex-direction: column; gap: 14px; }

/* Designed signature highlights - bigger, more prominent than the old menu-list */
.food-highlights {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 580px;
}
.food-highlights li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(11, 15, 46, 0.55);
  border: 2px solid #000;
  border-left: 5px solid var(--pr-orange);
  border-radius: 0 8px 8px 0;
  transition: transform 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.food-highlights li:hover { transform: translateX(4px); }
.food-highlights .fh-tag {
  font-family: var(--f-pixel);
  font-size: 8px;
  letter-spacing: 0.06em;
  background: var(--pr-orange);
  color: #0B0F2E;
  padding: 5px 7px;
  border: 2px solid #000;
  border-radius: 3px;
  white-space: nowrap;
}
.food-highlights .fh-tag.tag-pink  { background: var(--pr-pink); }
.food-highlights .fh-tag.tag-cyan  { background: var(--pr-cyan); }
.food-highlights .fh-tag.tag-green { background: var(--pr-green); }
.food-highlights .fh-name {
  font-family: var(--f-chunk);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 1px 1px 0 #000;
}
.food-highlights .fh-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 var(--pr-orange);
  white-space: nowrap;
}

/* Drinks panel uses the same highlights but with purple accent */
.panel-drinks .food-highlights li { border-left-color: var(--pr-purple); }
.panel-drinks .food-highlights .fh-tag { background: #C4A8E0; }
.panel-drinks .food-highlights .fh-tag.tag-pink { background: var(--pr-pink); }
.panel-drinks .food-highlights .fh-price { text-shadow: 2px 2px 0 var(--pr-purple); }

/* Food + Drinks poster wall variants - slightly different rotations & widths */
.food-poster-wall .poster-front  { transform: rotate(-2deg); }
.drinks-poster-wall .poster-front{ transform: rotate(2deg); }

/* Stamp colour variants for food/drinks */
.poster-stamp.poster-stamp-orange { background: var(--pr-orange); color: #0B0F2E; }
.poster-stamp.poster-stamp-cyan   { background: var(--pr-cyan); color: #0B0F2E; transform: rotate(-8deg); }
.menu-list {
  margin-top: 14px;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
  max-width: 640px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.85);
}
.menu-list li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-transform: uppercase;
}
.menu-list li::before { content: "▸ "; color: var(--pr-pink); margin-right: 6px; }
.menu-list strong {
  font-family: var(--f-chunk);
  color: var(--pr-cream);
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ============================================================
   PANEL: DESTINATIONS
   ============================================================ */
.panel-destinations {
  background-color: var(--pr-cosmos);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
  height: clamp(420px, 56vh, 620px);
}
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--pr-cream);
  box-shadow: 6px 6px 0 #000;
  background-size: cover;
  background-position: center;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}
.dest-card:nth-child(1) { transform: rotate(-1deg); }
.dest-card:nth-child(2) { transform: rotate(1deg); }
.dest-card:nth-child(3) { transform: rotate(1deg); }
.dest-card:nth-child(4) { transform: rotate(-1deg); }
.dest-card:hover { transform: rotate(0) scale(1.015); box-shadow: 10px 10px 0 #000; }
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,15,46,0.85) 100%);
  z-index: 1;
}
.dest-card .dest-greet {
  position: absolute;
  top: 14px; left: 18px; z-index: 2;
  font-family: var(--f-script);
  color: var(--pr-pink);
  font-size: 28px;
  transform: rotate(-4deg);
  text-shadow: 2px 2px 0 #000;
}
/* Per-destination accent colour - script greet, name underline, meta tint */
.dest-arcade  { border-color: var(--pr-cyan); }
.dest-arcade .dest-greet { color: var(--pr-cyan); }
.dest-arcade .dest-meta  { color: var(--pr-cyan); }
.dest-arcade::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px; background: var(--pr-cyan);
  z-index: 2;
}

.dest-kitchen { border-color: var(--pr-orange); }
.dest-kitchen .dest-greet { color: var(--pr-orange); }
.dest-kitchen .dest-meta  { color: var(--pr-orange); }
.dest-kitchen::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px; background: var(--pr-orange);
  z-index: 2;
}

.dest-toms { border-color: var(--pr-purple); }
.dest-toms .dest-greet { color: #C4A8E0; }
.dest-toms .dest-meta  { color: #C4A8E0; }
.dest-toms::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px; background: var(--pr-purple);
  z-index: 2;
}

.dest-theatre { border-color: var(--pr-green); }
.dest-theatre .dest-greet { color: var(--pr-green); }
.dest-theatre .dest-meta  { color: var(--pr-green); }
.dest-theatre::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px; background: var(--pr-green);
  z-index: 2;
}
.dest-card .dest-name {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px; z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 3px 3px 0 #000;
  margin: 0;
}
/* Meta sits top-right so it stays clear of the big bottom name */
.dest-card .dest-meta {
  position: absolute;
  top: 16px; right: 18px; z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--pr-cyan);
  text-align: right;
  max-width: 60%;
  text-shadow: 1px 1px 0 #000, 0 0 8px rgba(0,0,0,0.6);
}

/* ============================================================
   PANEL: FUNCTIONS - slimmer than full-screen since content is light
   ============================================================ */
.panel-functions {
  background-color: var(--pr-cosmos);
  min-height: 60vh;
}
.panel-functions .panel-grid {
  min-height: 60vh;
  padding-top: 88px;
  padding-bottom: 32px;
  gap: 12px;
}
.panel-functions .panel-content { gap: 12px; }
.panel-functions .strapline { max-width: 640px; }
.panel-functions .scroll-cue { display: none; }
@media (max-width: 720px) {
  .panel-functions { min-height: 70vh; }
  .panel-functions .panel-grid { min-height: 70vh; }
}
.fn-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.fn-stats {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 640px;
}
.fn-stats li {
  padding: 12px 14px;
  background: rgba(22, 30, 77, 0.6);
  border-left: 4px solid var(--pr-pink);
  border-radius: 0 6px 6px 0;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pr-cream);
  text-transform: uppercase;
}
.fn-stats li:nth-child(2) { border-left-color: var(--pr-cyan); }
.fn-stats li:nth-child(3) { border-left-color: var(--pr-green); }
.fn-stats li:nth-child(4) { border-left-color: var(--pr-orange); }

/* Functions packages preview - House Packages get top-of-page visual
   hierarchy. They yield the best guaranteed revenue per booking, so they
   should visually dominate everything else on the functions page,
   especially the Drinks Tier section below. */
.fn-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 32px;
  max-width: 1080px;             /* match Drinks Tier width */
}
.fn-pkg {
  background: rgba(22, 30, 77, 0.85);
  border: 3px solid #000;
  border-radius: 14px;
  padding: 24px 24px 28px;       /* bigger than tier (22x22x26) */
  box-shadow: 6px 6px 0 #000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fn-pkg.featured {
  border-color: var(--pr-pink);
  box-shadow: 8px 8px 0 #000, 0 0 0 2px rgba(255,45,135,0.55), 0 0 32px rgba(255,45,135,0.18);
  transform: translateY(-8px);   /* mirror tier-supernova lift */
}
.fn-pkg-tag {
  font-family: var(--f-pixel);
  font-size: 10px;               /* up from 8 */
  letter-spacing: 0.06em;
  color: var(--pr-cyan);
  margin-bottom: 4px;
}
.fn-pkg.featured .fn-pkg-tag { color: var(--pr-pink); }
.fn-pkg-name {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.4vw, 60px);     /* exceeds .tier-name (36–56) */
  line-height: 0.9;
  margin: 0;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 #000, 4px 4px 0 var(--pr-pulp-red);
  text-transform: uppercase;
}
.fn-pkg-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.88);
  text-transform: uppercase;
  margin: 4px 0;
  flex: 1;
}
.fn-pkg-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(30px, 2.8vw, 44px);   /* exceeds .tier-price (28-40) */
  color: var(--pr-cream);
  margin: 0;
  text-shadow: 2px 2px 0 #000;
}
.fn-pkg-price .from,
.fn-pkg-price .per {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  vertical-align: middle;
  margin-right: 6px;
}
.fn-pkg-price .per { color: rgba(244, 239, 230, 0.6); margin-left: 4px; margin-right: 0; }
@media (max-width: 720px) {
  .fn-packages { grid-template-columns: 1fr; }
  .fn-pkg.featured { transform: none; }
}

/* ============================================================
   PANEL: DRINKS - Orbit / Supernova / Galactic
   ============================================================ */
.panel-drinks { background-color: var(--pr-cosmos); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  max-width: 1080px;
}
.tier {
  position: relative;
  background: rgba(22, 30, 77, 0.78);
  border: 3px solid #000;
  border-radius: 14px;
  padding: 22px 22px 26px;
  box-shadow: 6px 6px 0 #000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  isolation: isolate;
  overflow: hidden;   /* clip the hover shine-sweep so it can't spill out as a glare */
}
.tier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.tier-orbit::before    { background: var(--pr-cyan); }
.tier-supernova::before{ background: var(--pr-pink); }
.tier-galactic::before { background: var(--pr-orange); }
.tier-orbit    { border-color: var(--pr-cyan); }
.tier-supernova{ border-color: var(--pr-pink); transform: translateY(-8px); }
.tier-galactic { border-color: var(--pr-orange); }
.tier-supernova.featured {
  box-shadow: 6px 6px 0 #000, 0 0 0 2px rgba(255, 45, 135, 0.35);
}
.tier-tag {
  font-family: var(--f-pixel);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--pr-cyan);
  margin-bottom: 4px;
}
.tier-supernova .tier-tag { color: var(--pr-pink); }
.tier-galactic  .tier-tag { color: var(--pr-orange); }
.tier-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--pr-cream);
  margin: 0;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 var(--pr-pulp-red);
}
.tier-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.85);
  text-transform: uppercase;
  margin: 4px 0;
  flex: 1;
}
.tier-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--pr-cream);
  margin: 0;
  text-shadow: 2px 2px 0 #000;
}
.tier-price .from {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  vertical-align: middle;
  margin-right: 4px;
}
.tier-price .per {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}

/* Functions panel - compact headline (smaller than .display) */
.fn-headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 3px 3px 0 var(--pr-pulp-red), 6px 6px 0 #000;
  margin: 0 0 4px;
}
.fn-headline .scr {
  font-family: var(--f-script);
  color: var(--pr-pink);
  font-size: 0.78em;
  text-transform: none;
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 0.06em;
  text-shadow: 3px 3px 0 #000;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   FUNCTIONS FAQ - collapsible details/summary
   ============================================================ */
.fn-faq {
  margin: 28px 0 0;
  max-width: 720px;
}
.fn-faq-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin: 0 0 12px;
}
.fn-faq-item {
  background: rgba(11, 15, 46, 0.55);
  border: 2px solid #000;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.fn-faq-item summary {
  cursor: pointer;
  padding: 12px 16px;
  font-family: var(--f-chunk);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pr-cream);
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 120ms;
}
.fn-faq-item summary::-webkit-details-marker { display: none; }
.fn-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--pr-pink);
  transition: transform 200ms;
}
.fn-faq-item[open] summary::after { content: "−"; }
.fn-faq-item summary:hover { color: var(--pr-cyan); }
.fn-faq-item p {
  margin: 0;
  padding: 4px 16px 14px;
  font-family: var(--f-hud);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.85);
}

/* ============================================================
   PANEL: VISIT
   ============================================================ */
.panel-visit {
  background-color: var(--pr-cosmos);
}
.panel-visit .panel-overlay {
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(0, 229, 255, 0.18), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(255, 45, 135, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.42) 0%, rgba(11, 15, 46, 0.88) 100%);
}
.address-display {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: var(--shadow-3d-l);
  margin: 0;
}
.address-display em {
  font-family: var(--f-script);
  color: var(--pr-cyan);
  font-style: normal;
  font-size: 0.6em;
  display: inline-block;
  transform: rotate(-3deg);
  text-shadow: 3px 3px 0 #000;
}
.contact-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-row span { color: var(--pr-cyan); }
.contact-row span.contact-hours {
  color: var(--pr-cream);
  font-size: 15px;
  letter-spacing: 0.14em;
}
.contact-row span.contact-hours strong {
  color: var(--pr-orange);
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* ============================================================
   NAV CTA GROUP - Order + Table Booking side by side
   ============================================================ */
.nav-cta-group {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: center;
  flex-shrink: 0;
}
.nav-cta-group .btn { flex-shrink: 0; }

/* ============================================================
   BOOKING MODAL - postcard-styled table booking dialog
   ============================================================ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: book-fade-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.booking-modal[hidden] { display: none; }
@keyframes book-fade-in { from { opacity: 0; } to { opacity: 1; } }
.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 46, 0.92);
}
.booking-card {
  position: relative;
  width: min(820px, 100%);
  background: var(--pr-cream);
  color: #0B0F2E;
  border: 6px solid #000;
  border-radius: 18px;
  padding: 24px 24px 18px;
  box-shadow: 12px 12px 0 #000;
  transform: rotate(-1deg);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: book-pop 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes book-pop {
  from { transform: rotate(-3deg) translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: rotate(-1deg) translateY(0) scale(1); opacity: 1; }
}
.booking-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--pr-pink);
  color: #0B0F2E;
  border: 3px solid #000;
  border-radius: 999px;
  font-family: var(--f-chunk);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
  transition: transform 120ms, box-shadow 120ms;
  z-index: 2;
}
.booking-close:hover  { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.booking-close:active { transform: translate(2px, 2px);   box-shadow: 1px 1px 0 #000; }
.booking-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px dashed #0B0F2E;
  margin-bottom: 16px;
}
.booking-tag {
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.05em;
  background: var(--pr-pink);
  color: #0B0F2E;
  padding: 5px 8px;
  border: 2px solid #000;
  border-radius: 4px;
}
.booking-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #0B0F2E;
  text-transform: uppercase;
}
.booking-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #0B0F2E;
  letter-spacing: 0;
}
.booking-title em {
  font-family: var(--f-script);
  color: var(--pr-pink);
  font-style: normal;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-4deg);
}
.booking-strap {
  font-family: var(--f-hud);
  font-size: 14px;
  line-height: 1.5;
  color: #444441;
  margin: 0 0 14px;
  max-width: 580px;
}
.booking-strap a { color: var(--pr-pink); border-bottom: 1px solid var(--pr-pink); }

.booking-iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: block;
  color-scheme: dark;
}
@media (max-width: 720px) {
  .booking-iframe { min-height: 520px; }
}

/* ---- Tag colour variants ---- */
.booking-tag.tag-orange { background: var(--pr-orange); }
.booking-tag.tag-cyan   { background: var(--pr-cyan); color: #0B0F2E; }

/* ---- Map modal ---- */
.map-card { width: min(720px, 100%); }
.map-iframe {
  width: 100%;
  height: min(54vh, 460px);
  border: 3px solid #0B0F2E;
  border-radius: 8px;
  background: #0B0F2E;
  display: block;
  margin-bottom: 12px;
  box-shadow: 4px 4px 0 #000;
}
.map-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px;
}
@media (max-width: 720px) {
  .map-iframe { height: min(60vh, 380px); }
  .map-actions .btn { flex: 1 1 auto; }
}

/* Order modal sits a little narrower since there's no iframe */
.order-card { width: min(680px, 100%); }

/* Menu preview list */
.order-menu {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  border-top: 2px dashed #0B0F2E;
  border-bottom: 2px dashed #0B0F2E;
}
.order-menu li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name price"
    "meta price";
  gap: 0 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 15, 46, 0.12);
}
.order-menu li:last-child { border-bottom: 0; }
.order-name {
  grid-area: name;
  font-family: var(--f-chunk);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0B0F2E;
}
.order-meta {
  grid-area: meta;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5F5E5A;
  line-height: 1.4;
  margin-top: 2px;
}
.order-price {
  grid-area: price;
  align-self: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: #0B0F2E;
  text-shadow: 2px 2px 0 var(--pr-orange);
  letter-spacing: 0;
}

/* Launch row - big orange button + meta */
.order-launch {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}
.order-launch .btn { flex: 0 0 auto; }
.order-launch-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5F5E5A;
}
@media (max-width: 720px) {
  .order-menu li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name  price"
      "meta  meta";
  }
  .order-meta { grid-column: 1 / -1; }
  .order-launch .btn { width: 100%; justify-content: center; }
  .order-launch-meta { width: 100%; text-align: center; }
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-column: span 1;
}
.booking-field.span2 { grid-column: span 2; }
.booking-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0B0F2E;
}
.booking-field input,
.booking-field select {
  background: #fff;
  border: 3px solid #0B0F2E;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--f-hud);
  font-size: 15px;
  color: #0B0F2E;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field select {
  background-image: linear-gradient(45deg, transparent 50%, #0B0F2E 50%), linear-gradient(135deg, #0B0F2E 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: 0;
  border-color: var(--pr-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.25);
}
.booking-field input::placeholder { color: rgba(11, 15, 46, 0.45); }

.booking-error {
  background: var(--pr-pulp-red);
  color: var(--pr-cream);
  padding: 10px 14px;
  border: 2px solid #000;
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.booking-receipt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #0B0F2E;
  opacity: 0.65;
  text-transform: uppercase;
}
.booking-fineprint {
  font-family: var(--f-hud);
  font-size: 12px;
  color: #444441;
  margin: 6px 0 0;
  line-height: 1.5;
}
.booking-fineprint a {
  color: var(--pr-pink);
  border-bottom: 1px solid var(--pr-pink);
}

/* Booking-confirmed success state */
.booking-success {
  text-align: center;
  padding: 24px 8px 8px;
}
.booking-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--pr-green);
  border: 3px solid #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-chunk);
  font-size: 32px;
  color: #0B0F2E;
  box-shadow: 4px 4px 0 #000;
}
.booking-success p {
  font-family: var(--f-hud);
  font-size: 14px;
  line-height: 1.5;
  color: #444441;
  margin: 8px 0;
}

@media (max-width: 720px) {
  .booking-modal { padding: 12px; }
  .booking-card { padding: 24px 20px 20px; transform: rotate(0); }
  .booking-row { grid-template-columns: 1fr 1fr; }
  .booking-field, .booking-field.span2 { grid-column: span 1; }
  .booking-row .booking-field:nth-child(3) { grid-column: span 2; }
  .booking-title { font-size: 40px; }
}

/* ============================================================
   ACHIEVEMENT TOASTS - pixel-art notifications
   ============================================================ */
.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: var(--pr-cosmos);
  border: 3px solid var(--pr-green);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--glow-green), 4px 4px 0 #000;
  min-width: 240px;
  max-width: 320px;
  animation: toast-pop 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toast.fade { animation: toast-fade 320ms ease forwards; }
.toast .toast-icon {
  width: 28px; height: 28px;
  border: 2px solid var(--pr-green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-pixel);
  font-size: 12px;
  color: var(--pr-green);
  flex-shrink: 0;
}
.toast .toast-body { display: flex; flex-direction: column; gap: 2px; }
.toast .toast-tag {
  font-family: var(--f-pixel);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--pr-green);
}
.toast .toast-msg {
  font-family: var(--f-chunk);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pr-cream);
  line-height: 1.2;
}
@keyframes toast-pop {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes toast-fade {
  to { transform: translateX(60px); opacity: 0; }
}

/* ============================================================
   STICKY TODAY'S DEAL MINI-BAR
   ============================================================ */
.sticky-deal {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  background: var(--pr-cosmos);
  border: 2px solid var(--pr-pink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 #000, var(--glow-pink);
  max-width: calc(100vw - 32px);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-deal.show { transform: translateX(-50%) translateY(0); }
.sticky-deal-tag {
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.05em;
  background: var(--pr-pink);
  color: #0B0F2E;
  padding: 5px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.sticky-deal-msg {
  font-family: var(--f-chunk);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pr-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-deal-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-pink);
  border-bottom: 1px solid var(--pr-pink);
  padding-bottom: 1px;
  flex-shrink: 0;
}
.sticky-deal-close {
  background: transparent;
  border: 0;
  color: var(--pr-cream);
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.sticky-deal-close:hover { color: var(--pr-pink); }
@media (max-width: 720px) {
  .sticky-deal-msg { font-size: 12px; }
  .sticky-deal { padding: 6px 8px 6px 6px; gap: 8px; }
}

/* ============================================================
   OPEN / CLOSED BADGE
   ============================================================ */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(11, 15, 46, 0.78);
  border: 1.5px solid var(--pr-green);
  border-radius: 999px;
  margin-bottom: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-start;
}
.open-badge.closed { border-color: var(--pr-pulp-red); }
.open-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 12px var(--pr-green);
  animation: open-pulse 1.6s ease-in-out infinite;
}
.open-badge.closed .open-dot {
  background: var(--pr-pulp-red);
  box-shadow: 0 0 12px var(--pr-pulp-red);
}
@keyframes open-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.6; }
}
.open-status { color: var(--pr-cream); font-weight: 700; }
.open-meta { color: var(--pr-green); }
.open-badge.closed .open-meta { color: var(--pr-pulp-red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050823;
  padding: 80px 7vw 40px;
  scroll-snap-align: start;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand .footer-wordmark {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 3px 3px 0 var(--pr-pulp-red);
  margin: 0 0 12px;
}
.footer-brand .footer-tag {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  max-width: 260px;
  line-height: 1.5;
}
.footer h4 {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--pr-cream);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer a { color: rgba(244, 239, 230, 0.7); transition: color 120ms; }
.footer a:hover { color: var(--pr-pink); }
/* ============================================================
   FOOTER SEO LINK BLOCK
   - keyword-rich internal nav surfaced on every page
   - styled as small mono caps so it blends with the footer
   ============================================================ */
.footer-seo {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}
.footer-seo-inner p {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  margin: 0 0 12px;
}
.footer-seo-inner a {
  color: rgba(244, 239, 230, 0.7);
  text-decoration: none;
  white-space: nowrap;
}
.footer-seo-inner a:hover { color: var(--pr-pink); }
.footer-seo-meta {
  font-size: 10.5px !important;
  color: rgba(244, 239, 230, 0.4) !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  line-height: 1.7 !important;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-ack {
  font-family: var(--f-hud);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.55);
  max-width: 720px;
}
.footer-cheat {
  font-family: var(--f-pixel);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: rgba(244, 239, 230, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .deal-feature, .food-feature, .fn-feature { grid-template-columns: 1fr; gap: 32px; }
  .deal-feature .feat-img, .food-feature .feat-img { max-width: 360px; justify-self: start; }
  .poster-wall { max-width: 320px; height: min(48vh, 460px); justify-self: start; margin-left: 8%; }
  .deals-week { gap: 8px; }
  .deal-pill .day-price { font-size: 20px; }
  .panel-grid { padding: 96px 5vw 32px; }
  .show-item { grid-template-columns: 110px 1fr auto; gap: 10px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; gap: 14px; }
  .tier-supernova { transform: none; }
}

@media (max-width: 1180px) {
  .nav-links { gap: 2px; font-size: 12px; letter-spacing: 0.11em; }
  .nav-links a { padding: 8px 10px; }
}
@media (max-width: 980px) {
  .nav-links { gap: 1px; font-size: 11px; letter-spacing: 0.10em; }
  .nav-links a { padding: 7px 8px; }
}

@media (max-width: 720px) {
  .nav { padding: 10px 12px; }
  .nav-inner { gap: 8px; padding: 6px 8px 6px 14px; }
  .nav-brand { font-size: 18px; }
  .nav-links, .sep { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta-group { display: none; }
  .nav-inner.open {
    border-radius: 22px;
    flex-wrap: wrap;
    padding-bottom: 14px;
  }
  .nav-inner.open .nav-links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    gap: 4px;
    padding: 14px 4px 4px;
    margin: 0;
    border-top: 1px solid rgba(244, 239, 230, 0.18);
    animation: nav-slide-down 320ms cubic-bezier(.22, 1, .36, 1);
  }
  .nav-inner.open .nav-links a {
    padding: 12px 16px;
    font-size: 13px;
    letter-spacing: 0.18em;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.18s, color 0.18s;
  }
  .nav-inner.open .nav-links a:hover,
  .nav-inner.open .nav-links a:focus-visible {
    background: rgba(255, 45, 135, 0.16);
    color: var(--pr-cream);
    transform: none;
  }
  .nav-inner.open .nav-links a::after { display: none; }
  .nav-inner.open .nav-links a[aria-current="page"] {
    background: rgba(255, 45, 135, 0.22);
    color: var(--pr-cream);
    border-left: 3px solid var(--pr-pink);
  }
  .nav-inner.open .nav-cta-group {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    padding: 12px 4px 0;
    border-top: 1px solid rgba(244, 239, 230, 0.12);
  }
  .nav-inner.open .nav-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  @keyframes nav-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .panel-grid { padding: 88px 6vw 24px; gap: 18px; }
  .panel-meta { font-size: 11px; flex-direction: column; gap: 4px; align-items: flex-start; }
  .display { font-size: clamp(48px, 13vw, 88px) !important; }
  .panel-hero .display { font-size: clamp(56px, 16vw, 110px); }
  .strapline { font-size: 15px; }
  .actions { gap: 8px; }
  .btn-lg { font-size: 16px; padding: 14px 22px; box-shadow: 5px 5px 0 #000; }

  .deals-week { grid-template-columns: repeat(4, 1fr); }
  .deals-week .deal-pill:nth-child(n+8) { display: none; }
  .deal-pill .deal-pill-overlay { padding: 24px 8px 10px; gap: 2px; }
  .deal-pill .day-abbr  { font-size: 9px; }
  .deal-pill .day-name  { font-size: 13px; }
  .deal-pill .day-price { font-size: 22px; }
  .poster-wall { max-width: 260px; height: min(44vh, 380px); margin-left: 0; }
  .poster-stamp { font-size: 9px; padding: 6px 9px; top: 10px; right: -8px; }
  .deal-feature .feat-img, .food-feature .feat-img { max-width: 280px; transform: rotate(-1deg); }
  .menu-list { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; height: auto; gap: 14px; }
  .dest-card { aspect-ratio: 16 / 9; transform: rotate(0) !important; }
  .fn-stats { grid-template-columns: 1fr; }

  .footer { padding: 56px 6vw 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .footer-wordmark { font-size: 44px; }
  .address-display { font-size: clamp(38px, 11vw, 64px); }
  .show-item { grid-template-columns: 1fr; gap: 4px; }
  .show-item .show-date { font-size: 11px; }
}

/* ============================================================
   LIGHTBOX (universal - opt in by adding `data-lightbox="./url"`
   to any element; site.js wireLightbox() handles open/close.)
   ============================================================ */
[data-lightbox] {
  cursor: zoom-in;
}
[data-lightbox]:focus-visible {
  outline: 3px solid var(--pr-cyan);
  outline-offset: 4px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 15, 46, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open {
  display: flex;
  animation: lightbox-fade 0.2s ease-out;
}
.lightbox-stage {
  position: relative;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  border: 4px solid var(--pr-cream);
  background: #0B0F2E;
}
.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.78);
  white-space: nowrap;
}
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pr-cream);
  color: #0B0F2E;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s;
  z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: rotate(90deg);
  outline: none;
}
body.lightbox-open { overflow: hidden; }
@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
  .lightbox-caption { font-size: 10px; bottom: -22px; }
}

/* ============================================================
   PANEL: FOLLOW US (Instagram feed)
   ============================================================ */
.panel-follow {
  background-color: var(--pr-cosmos);
}
.panel-follow .panel-overlay {
  background:
    radial-gradient(120% 80% at 25% 25%, rgba(255, 45, 135, 0.32), transparent 60%),
    radial-gradient(120% 80% at 80% 80%, rgba(196, 168, 224, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 46, 0.55) 0%, rgba(11, 15, 46, 0.94) 100%);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 22px;
  max-width: 1100px;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  background-size: cover;
  background-position: center;
  background-color: #1a1f4f;
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(.22,1,.36,1);
}
.ig-tile:hover, .ig-tile:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  outline: none;
}
.ig-tile::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 0.22s;
}
.ig-tile:hover::after, .ig-tile:focus-visible::after { opacity: 1; }

.ig-tile-badge {
  position: absolute;
  top: 10px; right: 10px; z-index: 3;
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--pr-pink);
  color: var(--pr-cream);
  padding: 4px 8px;
  border-radius: 3px;
  box-shadow: 2px 2px 0 #000;
  transform: rotate(3deg);
}
.ig-tile-meta {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--pr-cream);
}
.ig-tile-caption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 1px 1px 0 #000;
}
.ig-tile-cta {
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s, transform 0.22s;
}
.ig-tile:hover .ig-tile-cta,
.ig-tile:focus-visible .ig-tile-cta {
  opacity: 1;
  transform: translateY(0);
}

.follow-actions { margin-top: 8px; }

/* Skeleton (pre-Behold) tiles - Instagram gradient + IG icon, clearly a
   loading state rather than a fake post. */
.ig-tile.ig-skeleton {
  background:
    linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--pr-cream);
}
.ig-tile.ig-skeleton::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.45) 100%);
  opacity: 1;
}
.ig-tile.ig-skeleton .ig-tile-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(11, 15, 46, 0.32);
  border: 2px solid var(--pr-cream);
  color: var(--pr-cream);
  box-shadow: 3px 3px 0 #000;
}
.ig-tile.ig-skeleton .ig-tile-skeleton-label {
  position: relative;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

/* When a third-party widget (Behold/Elfsight/etc) injects DOM into
   #ig-feed, the JS bootstrap adds .has-live-feed and the skeleton
   placeholder tiles get hidden. */
.ig-grid.has-live-feed .ig-skeleton,
.ig-grid.has-live-feed .ig-static { display: none; }

/* ─── Behold.so live-widget overrides ─────────────────────────────────
   When the live <behold-widget> renders, force it to:
   - take the full width of the panel (it ships inline-sized)
   - lose internal padding so it sits flush with our grid
   - use our brutalist square corners + cinema-pink hover ring
   The Behold widget exposes CSS custom properties (the --behold-* family)
   that it reads at render time. We also belt-and-brace with element/part
   selectors in case Behold ships shadow DOM. */
.ig-grid > behold-widget {
  display: block;
  width: 100%;
  grid-column: 1 / -1;       /* span the parent grid edge-to-edge */
  --behold-image-corner-radius: 0;
  --behold-image-gap: 14px;
  --behold-grid-gap: 14px;
  --behold-grid-columns: 4;
  --behold-image-aspect-ratio: 1;
  --behold-image-hover-effect-color: var(--pr-pink);
}
@media (max-width: 720px) {
  .ig-grid > behold-widget {
    --behold-grid-columns: 2;
    --behold-grid-gap: 10px;
  }
}
/* Behold sometimes ships with shadow parts - these `::part()` selectors
   only apply if the widget uses Shadow DOM with named parts. Harmless if
   it doesn't. */
.ig-grid > behold-widget::part(grid) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
}
.ig-grid > behold-widget::part(post) {
  border-radius: 0 !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
}
.ig-grid > behold-widget::part(image) {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 720px) {
  .ig-grid > behold-widget::part(grid) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 720px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ig-tile-badge { font-size: 9px; padding: 3px 6px; }
  .ig-tile-caption { font-size: 10px; }
  .ig-tile.ig-skeleton .ig-tile-icon { width: 52px; height: 52px; }
}

/* ============================================================
   VENUE SUB-PAGES (arcade / kitchen / majortoms)
   Shared gallery + signature feature card patterns. Mirrors the
   functions-gallery and pizza/dessert-card hover treatment.
   ============================================================ */
.venue-gallery {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 24px 24px;
}
.venue-gallery .eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-pink);
  margin: 0 0 8px;
}
.venue-gallery h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 3px 3px 0 var(--pr-pulp-red), 6px 6px 0 #000;
  margin: 0 0 24px;
}
.venue-gallery h2 .scr {
  font-family: var(--f-script);
  color: var(--pr-pink);
  text-transform: none;
  font-size: 0.78em;
  transform: rotate(-3deg);
  display: inline-block;
}
.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.venue-gallery-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 4px solid var(--pr-cream);
  border-radius: 12px;
  box-shadow: 6px 6px 0 #000;
  background: var(--pr-deep-navy, #0B0F2E);
  cursor: zoom-in;
  transition:
    transform 0.32s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.32s cubic-bezier(.22, 1, .36, 1),
    border-color 0.32s ease;
}
.venue-gallery-grid figure:nth-child(1) { transform: rotate(-1.5deg); }
.venue-gallery-grid figure:nth-child(2) { transform: rotate(1deg); }
.venue-gallery-grid figure:nth-child(3) { transform: rotate(-0.5deg); }
.venue-gallery-grid figure:nth-child(4) { transform: rotate(1.5deg); }
.venue-gallery-grid figure:hover,
.venue-gallery-grid figure:focus-within {
  transform: rotate(0) scale(1.04);
  box-shadow:
    10px 10px 0 #000,
    0 0 0 1px rgba(255, 45, 135, 0.45),
    0 0 32px rgba(255, 45, 135, 0.42),
    0 0 60px rgba(0, 229, 255, 0.18);
  border-color: var(--pr-pink);
  z-index: 2;
}
.venue-gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
}
.venue-gallery-grid figure:hover img,
.venue-gallery-grid figure:focus-within img {
  transform: scale(1.06) rotate(0.4deg);
}
.venue-gallery-grid figcaption {
  position: absolute;
  bottom: 8px; left: 8px;
  z-index: 3;
  background: var(--pr-cosmos, #0B0F2E);
  color: var(--pr-pink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 2px solid #000;
  border-radius: 4px;
}
.venue-gallery-grid figure::before {
  content: "⊕ ZOOM";
  position: absolute;
  top: 8px; right: 8px;
  z-index: 4;
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 5px 8px;
  background: var(--pr-cream);
  color: #0B0F2E;
  border: 2px solid #000;
  border-radius: 3px;
  box-shadow: 2px 2px 0 #000;
  opacity: 0;
  transform: translateY(-8px) rotate(3deg);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.venue-gallery-grid figure:hover::before,
.venue-gallery-grid figure:focus-within::before {
  opacity: 1;
  transform: translateY(0) rotate(3deg);
}
.venue-gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.0) 42%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.0) 58%,
    transparent 70%
  );
  transform: translateX(-110%);
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(.22, 1, .36, 1);
}
.venue-gallery-grid figure:hover::after,
.venue-gallery-grid figure:focus-within::after {
  transform: translateX(110%);
}
@media (max-width: 980px) {
  .venue-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Signature feature cards - photo + name + meta + CTA */
.venue-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 56px;
}
.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.venue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(22, 30, 77, 0.6);
  border: 2px solid #000;
  border-left: 5px solid var(--pr-cyan);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  color: var(--pr-cream);
  transition:
    transform 0.32s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.32s cubic-bezier(.22, 1, .36, 1),
    border-left-color 0.32s ease;
}
.venue-card:hover,
.venue-card:focus-visible {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow:
    8px 10px 0 #000,
    0 0 0 1px rgba(255, 45, 135, 0.45),
    0 0 32px rgba(255, 45, 135, 0.42);
  border-left-color: var(--pr-pink);
  outline: none;
}
.venue-card.tag-orange { border-left-color: var(--pr-orange); }
.venue-card.tag-purple { border-left-color: var(--pr-purple); }
.venue-card.tag-green  { border-left-color: var(--pr-green); }

.venue-card .venue-card-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1f4f;
}
.venue-card .venue-card-photo img,
.venue-card .venue-card-photo picture {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
}
.venue-card:hover .venue-card-photo img,
.venue-card:focus-within .venue-card-photo img {
  transform: scale(1.06);
}
.venue-card .venue-card-stamp {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 5px 8px;
  background: var(--pr-pulp-red);
  color: var(--pr-cream);
  border-radius: 3px;
  box-shadow: 2px 2px 0 #000;
  transform: rotate(-3deg);
}
.venue-card .venue-card-text {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venue-card h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 #000;
  margin: 0;
}
.venue-card p {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.85);
  margin: 0;
}
.venue-card .venue-card-cta {
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin-top: 4px;
}
.venue-card .venue-card-cta::after { content: " →"; color: var(--pr-pink); }

@media (prefers-reduced-motion: reduce) {
  .venue-gallery-grid figure,
  .venue-gallery-grid img,
  .venue-gallery-grid figure::before,
  .venue-gallery-grid figure::after,
  .venue-card,
  .venue-card .venue-card-photo img { transition: none; }
  .venue-gallery-grid figure:hover,
  .venue-gallery-grid figure:focus-within { transform: none; }
  .venue-gallery-grid figure:hover img,
  .venue-gallery-grid figure:focus-within img { transform: none; }
  .venue-gallery-grid figure::after { display: none; }
  .venue-card:hover, .venue-card:focus-visible { transform: none; }
  .venue-card:hover .venue-card-photo img { transform: none; }
}

/* ============================================================
   NEWSLETTER STRIP (sits above the footer site-wide)
   ============================================================ */
.newsletter-strip {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #2b1a4f 0%, #1a1f4f 100%);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 36px 24px;
}
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.newsletter-text { min-width: 0; }
.newsletter-eyebrow {
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin: 0 0 6px;
}
.newsletter-strip h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 2px 2px 0 var(--pr-pulp-red), 4px 4px 0 #000;
  margin: 0 0 6px;
}
.newsletter-strip h2 .scr {
  font-family: var(--f-script);
  color: var(--pr-pink);
  text-transform: none;
  font-size: 0.82em;
  transform: rotate(-3deg);
  display: inline-block;
}
.newsletter-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.78);
  margin: 0;
  max-width: 520px;
}
.newsletter-form {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.newsletter-form input[type="email"] {
  font-family: var(--f-mono);
  font-size: 14px;
  padding: 12px 14px;
  background: rgba(11, 15, 46, 0.7);
  color: var(--pr-cream);
  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
  min-width: 240px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--pr-cyan);
  box-shadow: 3px 3px 0 #000, 0 0 0 1px var(--pr-cyan), 0 0 14px rgba(0,229,255,0.35);
}
.newsletter-form input::placeholder { color: rgba(244, 239, 230, 0.4); }
.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;
}
@media (max-width: 720px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 18px; }
  .newsletter-form input[type="email"] { width: 100%; min-width: 0; }
}

/* ============================================================
   PWA INSTALL PROMPT BAR
   ============================================================ */
.pr-install-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9000;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}
.pr-install-bar.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pr-install-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--pr-cosmos, #0B0F2E);
  border: 3px solid var(--pr-cream);
  box-shadow: 4px 4px 0 #000, 0 0 24px rgba(255, 45, 135, 0.3);
}
.pr-install-bar-icon {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--pr-pink);
  flex-shrink: 0;
}
.pr-install-bar-msg {
  flex: 1;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--pr-cream);
}
.pr-install-bar-go {
  font-family: var(--f-pixel);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: var(--pr-pink);
  color: #fff;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  cursor: pointer;
  flex-shrink: 0;
}
.pr-install-bar-x {
  font-family: var(--f-mono);
  font-size: 14px;
  width: 28px; height: 28px;
  background: transparent;
  color: rgba(244, 239, 230, 0.6);
  border: 2px solid rgba(244, 239, 230, 0.32);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.pr-install-bar-x:hover { color: var(--pr-cream); border-color: var(--pr-cream); }
@media (max-width: 480px) {
  .pr-install-bar-inner { flex-wrap: wrap; }
  .pr-install-bar-msg { flex-basis: 100%; order: 2; }
}

/* ============================================================
   SITE-WIDE SEARCH OVERLAY (triggered by [data-search-open] or ⌘K)
   ============================================================ */
.nav-search {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(244, 239, 230, 0.28);
  color: var(--pr-cream);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  margin-left: 4px;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.22s;
}
.nav-search:hover, .nav-search:focus-visible {
  background: var(--pr-pink);
  border-color: var(--pr-pink);
  color: var(--pr-cream);
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(255, 45, 135, 0.5);
  outline: none;
}
.nav-search::before {
  /* tiny ⌘K hint chip on desktop hover */
  content: "⌘K";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  font-family: var(--f-pixel);
  font-size: 8px;
  letter-spacing: 0.18em;
  padding: 4px 6px;
  background: var(--pr-cosmos, #0B0F2E);
  color: var(--pr-cyan);
  border: 1.5px solid var(--pr-cyan);
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  white-space: nowrap;
}
.nav-search:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 720px) {
  .nav-search::before { display: none; }
}
.pr-search-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(11, 15, 46, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  padding: 80px 16px 16px;
}
.pr-search-overlay.is-on { display: block; animation: pr-search-fade 0.2s ease; }
@keyframes pr-search-fade { from { opacity: 0; } to { opacity: 1; } }
body.search-open { overflow: hidden; }
.pr-search-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--pr-cosmos, #0B0F2E);
  border: 4px solid var(--pr-cream);
  box-shadow: 8px 8px 0 #000, 0 0 36px rgba(255, 45, 135, 0.32);
}
.pr-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(244, 239, 230, 0.18);
}
.pr-search-icon {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--pr-pink);
}
.pr-search-input {
  flex: 1;
  font-family: var(--f-mono);
  font-size: 16px;
  background: transparent;
  color: var(--pr-cream);
  border: none;
  outline: none;
  padding: 6px 0;
}
.pr-search-input::placeholder { color: rgba(244, 239, 230, 0.4); }
.pr-search-close {
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  background: rgba(244, 239, 230, 0.1);
  color: var(--pr-cream);
  border: 2px solid rgba(244, 239, 230, 0.3);
  cursor: pointer;
}
.pr-search-results {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 60vh;
  overflow-y: auto;
}
.pr-search-result a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.12s, border-left-color 0.12s;
}
.pr-search-result a:hover, .pr-search-result a:focus-visible {
  background: rgba(255, 45, 135, 0.1);
  border-left-color: var(--pr-pink);
  outline: none;
}
.pr-search-result-title {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--pr-cream);
  text-shadow: 1px 1px 0 #000;
}
.pr-search-result-snip {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.4;
}
.pr-search-empty {
  padding: 20px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: rgba(244, 239, 230, 0.55);
  text-align: center;
}
.pr-search-hint {
  margin: 0;
  padding: 12px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(244, 239, 230, 0.45);
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}
.pr-search-hint em { color: var(--pr-cyan); font-style: normal; }

/* ============================================================
   COOKIE / PRIVACY BANNER
   Bottom-anchored, non-blocking notice. Injected by site.js on
   first visit. Stays dismissed for 12 months via localStorage.
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  max-width: 880px;
  margin: 0 auto;
  background: var(--pr-cosmos, #0B0F2E);
  color: var(--pr-cream);
  border: 3px solid var(--pr-cream);
  box-shadow: 8px 8px 0 #000, 0 0 0 1px var(--pr-cyan);
  padding: 16px 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.32s cubic-bezier(.22,1,.36,1), transform 0.32s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.is-leaving {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition-duration: 0.28s;
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie-banner-text { min-width: 0; }
.cookie-banner-title {
  font-family: var(--f-pixel);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin: 0 0 6px;
}
.cookie-banner-body {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.86);
  margin: 0;
}
.cookie-banner-body strong { color: var(--pr-cream); font-weight: 600; }
.cookie-banner-link {
  color: var(--pr-cyan);
  border-bottom: 1px dashed var(--pr-cyan);
  text-decoration: none;
  padding-bottom: 1px;
  white-space: nowrap;
}
.cookie-banner-link:hover { color: var(--pr-pink); border-bottom-color: var(--pr-pink); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-banner-ok {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--pr-pink);
  color: var(--pr-cream);
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  transition: transform 0.14s, box-shadow 0.14s;
  white-space: nowrap;
}
.cookie-banner-ok:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}
.cookie-banner-ok:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #000;
}
.cookie-banner-ok:focus-visible {
  outline: 3px solid var(--pr-cyan);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 14px 12px; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 12px; }
  .cookie-banner-actions { justify-content: flex-start; }
  .cookie-banner-body { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.2s; transform: none; }
  .cookie-banner.is-visible { transform: none; }
  .cookie-banner.is-leaving { transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   MOBILE FIXES - appended last so it overrides earlier rules.
   Addresses: iOS auto-zoom on inputs, tap-target sizing, viewport-unit
   chop, safe-area insets, scroll-snap scoping, text overflow.
   ════════════════════════════════════════════════════════════════════════ */

/* --- 1. Modern viewport units on panels ---------------------------------
   `100vh` includes iOS Safari's address bar, so panels chop 8-15% off the
   bottom. `100svh` uses the *small* viewport (with chrome visible) so
   panels actually fit. The `100vh` declaration above stays as fallback
   for browsers that don't support svh. */
@supports (height: 100svh) {
  body { min-height: 100svh; }
  .panel, .panel-grid { min-height: 100svh; }
}

/* --- 2. Scroll-snap scoped to homepage only -----------------------------
   The global `html { scroll-snap-type: y proximity }` combined with
   `.footer { scroll-snap-align: start }` caused every inner page to
   snap-jump near the footer mid-scroll. Move opt-in to body.snap-panels
   (added in index.html only). */
html { scroll-snap-type: none; }
body.snap-panels { scroll-snap-type: y proximity; }

/* --- 3. iOS auto-zoom prevention: every input ≥16px on mobile ----------
   Safari zooms the viewport in when focusing an input under 16px and
   never zooms back. 16px everywhere on touch devices fixes it. */
@media (max-width: 720px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  input[type="url"],
  input[type="password"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input:not([type]),
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* --- 4. Tap-target expansion on touch devices ---------------------------
   WCAG 2.5.5 recommends 44×44 minimum. Expanded from the earlier minimal
   block to cover modal close buttons, nav icons, footer links, install
   bar X, and tiny utility buttons. */
@media (pointer: coarse) {
  /* All close-X buttons across modals (booking, deal, score, lightbox) */
  .booking-close,
  .deal-modal-x,
  .score-modal-close,
  .lightbox-close,
  .pr-search-close {
    min-width: 44px;
    min-height: 44px;
  }
  /* Nav utility buttons */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
  }
  .nav-search {
    min-width: 44px;
    min-height: 44px;
  }
  /* Footer links - 6px gap previously made adjacent links easy to misfire */
  .footer ul { gap: 4px; }
  .footer ul li a {
    display: inline-block;
    padding: 8px 0;
    min-height: 36px;          /* footer is dense; 36 is acceptable in context */
    line-height: 1.4;
  }
  /* Install-prompt close button (real class name is .pr-install-bar-x) */
  .pr-install-bar-x,
  .pr-install-bar button[aria-label*="ismiss"],
  .pr-install-bar button[aria-label*="lose"] {
    min-width: 44px;
    min-height: 44px;
  }
  /* Daily-tile state - desaturated default is fine on hover devices, but
     on touch you only ever see it desaturated. Flip the default to full
     colour so the posters look correct. */
  .daily-tile .daily-bg {
    filter: grayscale(0) brightness(0.85) contrast(1.05);
  }
}

/* --- 5. Safe-area insets for fixed bottom UI ---------------------------
   iPhones with home indicators draw fixed UI under the bar. Push them up
   by env(safe-area-inset-bottom) where supported. */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .pr-install-bar      { bottom: max(16px, env(safe-area-inset-bottom)); }
  .cookie-banner       { bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px)); }
  .pb-toasts           { bottom: max(24px, calc(env(safe-area-inset-bottom) + 12px)); }
  @media (max-width: 720px) {
    .pr-install-bar    { bottom: max(8px,  env(safe-area-inset-bottom)); }
    .cookie-banner     { bottom: max(8px,  env(safe-area-inset-bottom)); }
    .pb-toasts         { bottom: max(16px, env(safe-area-inset-bottom)); }
  }
}

/* --- 6. Cookie banner + install bar collision avoidance ----------------
   Both are bottom-anchored fixed UI. When the install bar is visible,
   bump the cookie banner up by the install bar's height (~64px). */
body.has-install-bar .cookie-banner {
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

/* --- 7. Text overflow protection --------------------------------------
   Long handles like @planetroyaleperth, emails, URLs, machine names can
   overflow narrow columns. Apply word-break to known-narrow text containers. */
.footer ul a,
.cookie-banner-link,
.hs-board-row .machine,
.hs-board-row .feat,
.hs-board-row .pizza,
.show-row .row-meta,
.fb-link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* --- 8. Modal padding consistency on small screens --------------------
   Various modals had 12/16/24/28px padding at mobile breakpoint. Standardise
   to 20px horizontal so all modals feel uniform. */
@media (max-width: 540px) {
  .booking-card,
  .deal-modal-card .deal-modal-body,
  .score-modal-card,
  .lightbox-stage {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* --- 9. Footer wordmark sizing for very narrow phones -----------------
   "PLANET ROYALE" at 44px display font with 6vw padding overflows at 320px.
   Bring it down a notch. */
@media (max-width: 360px) {
  .footer-wordmark { font-size: 38px; line-height: 0.92; }
}

/* --- 10. Landscape phone height adjustment ----------------------------
   Phones in landscape get ~414×736 → ~414 in width but only 360-414 in
   height. Hero `min-height: 100svh` becomes uncomfortable; cap to ensure
   panel content can be read without endless scroll. */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .panel, .panel-grid { min-height: 100svh; max-height: none; }
  /* Reduce hero padding so content fits */
  .hs-hero, .ab-hero, .pb-hero,
  .gc-hero { padding-top: 80px; padding-bottom: 32px; }
}

/* --- 11. Larger nav-toggle tap zone (mobile nav menu button) ----------
   The hamburger button has 11px font and slim padding; on a phone you
   want a bigger target so users can fat-finger it. */
@media (max-width: 720px) {
  .nav-toggle {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* --- 12. Modal max-height uses svh (with vh fallback) -----------------
   Modal cards have `max-height: calc(100vh - 48px)`. On iOS Safari with
   address bar visible, 100vh > visible space, so the modal can extend off
   the bottom of the screen and the close button gets cut off. */
@supports (height: 100svh) {
  .booking-card,
  .deal-modal-card,
  .score-modal-card {
    max-height: calc(100svh - 48px);
  }
  .pr-search-results {
    max-height: 60svh;
  }
}

/* --- 13. Booking iframe height in landscape phones --------------------
   The iframe demands 520px min-height on mobile, but landscape phones
   only have ~360-414px available height inside a modal. Shrink it so the
   header and footer stay visible. */
@media (max-width: 720px) and (orientation: landscape) {
  .booking-iframe { min-height: 360px; }
}

/* --- 14. Age-gate inputs fit on iPhone SE (320px) ---------------------
   The DD + MM + YYYY input set at default widths exceeds 320px - 56px
   side padding. Shrink the inputs for very narrow phones. */
@media (max-width: 360px) {
  .age-gate-field input { width: 54px; font-size: 26px; }
  .age-gate-field.age-gate-year input { width: 88px; }
  .age-gate-dob { gap: 4px; }
}

/* --- 15. Search overlay results respect bottom safe area --------------
   Results panel was being clipped by iOS Safari bottom toolbar when the
   keyboard dismissed. */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .pr-search-results { padding-bottom: env(safe-area-inset-bottom); }
}

/* --- 16. Deals-week grid: 3 cols at <380px ---------------------------
   At 320–375px, the 4-col layout makes each tile ~70px wide - too cramped
   for the price labels. 3 cols × 2 rows is more readable. */
@media (max-width: 380px) {
  .deals-week { grid-template-columns: repeat(3, 1fr); }
}

/* --- 17. Disable hover transforms on touch where they're orphaned ----
   Lots of cards have hover-lift transforms that only activate via mouse.
   On touch the card stays in its default state but with the hover style
   stuck on tap-and-hold. Cancel hover transforms entirely on touch. */
@media (hover: none), (pointer: coarse) {
  .venue-card:hover,
  .home-daily-tile:hover,
  .gc-tile:hover,
  .fn-pkg:hover,
  .ig-tile:hover {
    transform: none;
  }
}

/* --- 18. Iframe wrappers - clamp to viewport width ---------------------
   Embedded NowBookIt, Gift Card, Behold widgets occasionally try to set
   a fixed pixel width. Belt-and-brace: never let them overflow. */
.booking-iframe,
#bookingIframe,
#giftCardIframe,
.ig-grid > behold-widget,
.ig-grid > behold-widget * {
  max-width: 100%;
}

/* --- 19. Image lightbox controls - bigger close button on touch -------
   The X is currently 40×40 on mobile; bump to 48 so it's comfortable
   one-handed on a phone. */
@media (pointer: coarse) {
  .lightbox-close {
    width: 48px !important;
    height: 48px !important;
    font-size: 24px;
  }
}

/* --- 20. Modal scrollable bodies - momentum scrolling on iOS ----------
   Make sure overflowing modal cards scroll smoothly on iOS rather than
   feeling sticky. */
.booking-card,
.deal-modal-card,
.score-modal-card {
  -webkit-overflow-scrolling: touch;
}

/* --- 21. Visually-hidden helper class -----------------------------------
   The age-gate uses <legend class="sr-only"> on the homepage but the class
   was never defined. The "Date of birth" label rendered visibly. */
.sr-only,
.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;
}

/* --- 22. Extra tap-targets the previous pass missed --------------------- */
@media (pointer: coarse) {
  /* Sticky-deal close ✕ button (specials shortcut bar) */
  .sticky-deal-close {
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
  }
  /* Pizza-name 🎲 die button */
  .pb-name-die {
    min-width: 44px;
    min-height: 44px;
    width: 44px !important;
    height: 44px !important;
  }
  /* Burger zoom-cue badge - show on touch so users know the photo opens */
  .burger-photo::before,
  .burger-photo .zoom-cue,
  [data-lightbox]::before {
    opacity: 0.85 !important;
  }
}

/* --- 23. iPad portrait gets the hamburger nav --------------------------
   Site had 9 nav links + 2 CTA buttons inside 1240px max-width pill. At
   768px (iPad portrait) this overflows; bump the mobile-nav breakpoint
   to 900px so tablets get a clean hamburger menu. */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--pr-cosmos, #0B0F2E);
    border-top: 3px solid var(--pr-cream);
    padding: 16px 24px;
    z-index: 50;
  }
  .nav.is-open .nav-links a { min-height: 44px; display: flex; align-items: center; }
}

/* --- 24. Reduced-motion: stop the homepage theatre scroller snapping ---
   plus ken-burns hero animation. The previous reduced-motion block only
   handled the cookie banner. */
@media (prefers-reduced-motion: reduce) {
  .show-scroller { scroll-snap-type: none; }
  .panel-hero,
  [data-ken-burns],
  .ken-burns-target {
    animation: none !important;
  }
  /* Disable splay-tile transforms - the rotated cards feel "stuck" if motion is reduced */
  .daily-splay .splay-card,
  .daily-splay:hover .splay-card { transition: none; }
}

/* --- 25. Burger photo strip → 1-col below 380px --------------------------
   2-col at 320px crushes "Trevor's Blaine County BBQ" to 4 lines next
   to the price tag. Single column below 380. */
@media (max-width: 380px) {
  .burgers-strip {
    grid-template-columns: 1fr !important;
  }
}

/* --- 26. Hero ticker - let the message wrap on phone, no ellipsis ------
   The single-line ticker at 320px shows ~30 chars of a 60-char message;
   defeats the point. Let it wrap. */
@media (max-width: 480px) {
  .hero-ticker-msg {
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
    line-height: 1.3;
  }
}

/* --- 27. Show-row Tickets button full-width on mobile -------------------
   On theatre.html, the show row's CTA button collapses to bottom of card
   but stays at `auto` width = ~80px wide. Force full-width tap target. */
@media (max-width: 720px) {
  .show-row .row-actions { width: 100%; }
  .show-row .row-actions .btn,
  .show-row .row-actions a.btn { width: 100%; text-align: center; }
}

/* --- 28. Pizza-builder form submit - shorten label on narrow screens ---
   "Sign up · Get my render · Enter the draw" is too long for 320px wide
   button - wraps to 3 lines. Hide the middle phrase. */
@media (max-width: 480px) {
  .pb-submit .pb-submit-fullword { display: none; }
  .pb-submit::after { content: attr(data-mobile-label); }
}

/* --- 29. Sticky-element positioning ------------------------------------
   Several pages have sticky bars (menu-jump, drinks-jump, pizza-preview)
   using `top: 64px`. The mobile nav is only ~50px tall - leaves a visual
   gap. Tighten to match the nav. */
@media (max-width: 720px) {
  .menu-jump,
  .drinks-jump,
  .pb-preview {
    top: 50px !important;
  }
}

/* --- 30. Gift-card mock - clip the rotated overflow at narrow widths --
   The -4deg rotated card + 16px box-shadow extends past its wrapper at
   320px. body overflow-x:hidden masks horizontal, but a small vertical
   overflow flickers. Wrap properly. */
@media (max-width: 720px) {
  .gc-hero { overflow: hidden; }
  .gc-card-mock { box-shadow: 8px 8px 0 #000, 0 0 0 1px rgba(255, 45, 135, 0.4); }
}

/* --- 31. Disable rotation on gallery figures for touch -----------------
   The playful -2deg/+2deg/+1deg rotations on .venue-gallery-grid figures
   look intentional on desktop hover. On touch, they look broken - and
   the :hover normalize never fires. Straighten on touch. */
@media (hover: none), (pointer: coarse) {
  .venue-gallery-grid figure {
    transform: rotate(0deg) !important;
  }
}

/* --- 32. Make the lightbox image pinch-zoomable on iOS -----------------
   By default touch-action: auto means pinch is captured by viewport.
   Setting touch-action: pinch-zoom on the image lets users zoom in. */
.lightbox img { touch-action: pinch-zoom; }

/* --- 33. iOS HEIC / large-photo warning on highscore submit ------------
   Add a hint near the file input so iOS users don't unknowingly upload
   a 10MB HEIC photo. */
.score-form input[type="file"] + .hint { color: var(--pr-orange); }

/* ============================================================
   iPHONE / NARROW-VIEWPORT FIXES (≤480px)
   Reported May 2026 - iPhone 14 (390px) had horizontal overflow on
   hero panel: panel-meta + scroll-cue had unwrapped text, hero
   buttons (btn-lg) were too wide to fit two-up, hero-ticker truncated
   mid-message. These rules force everything to stay inside viewport.
   ============================================================ */
@media (max-width: 480px) {

  /* Lock the document to viewport width - defense in depth */
  html, body { max-width: 100vw; overflow-x: hidden; }

  /* PANEL META (// 01 / 07  ·  12 LAKE ST · NORTHBRIDGE · …) */
  .panel-meta {
    flex-wrap: wrap !important;
    row-gap: 4px;
    font-size: 9.5px !important;
    letter-spacing: 0.08em !important;
  }
  .panel-meta .counter,
  .panel-meta .locale {
    flex: 0 1 auto;
    white-space: normal;
    word-break: break-word;
  }

  /* SCROLL CUE (SCROLL ▼ … NORTHBRIDGE) */
  .scroll-cue {
    flex-wrap: wrap !important;
    row-gap: 4px;
    font-size: 9px !important;
  }

  /* HERO TICKER - make sure the LIVE message wraps, don't ellipsis */
  .hero-ticker {
    flex-wrap: wrap;
    border-radius: 14px; /* less aggressive pill on wrapped layout */
  }
  .hero-ticker-msg {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.35;
    font-size: 10.5px !important;
  }

  /* HERO LOCKUP - let the ROYALE word break naturally */
  .hero-lockup .display-main {
    white-space: normal !important;
    word-break: break-word;
    font-size: clamp(44px, 13vw, 64px) !important;
  }
  .hero-lockup .display-pre { font-size: 0.42em !important; }

  /* BUTTONS - scale down so two won't blow the line, allow text wrap */
  .btn {
    font-size: 14px !important;
    padding: 12px 16px !important;
    white-space: normal !important;
    line-height: 1.15;
  }
  .btn-lg {
    font-size: 15px !important;
    padding: 14px 18px !important;
    box-shadow: 4px 4px 0 #000 !important;
  }
  .btn-sm { font-size: 12px !important; padding: 10px 14px !important; }

  /* ACTION ROWS - full-width buttons stacked is more thumb-friendly */
  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .actions .btn { width: 100%; justify-content: center; }

  /* Sticky-CTA bar - keep tap targets visible & not crowded */
  .pr-sticky-cta-btn { font-size: 10px; padding: 9px 2px; }
  .pr-sticky-cta-btn span:not(.pr-sticky-cta-icon) { word-break: keep-all; }

  /* TONIGHT-AT-THE-ROYALE band - stack on narrow screens */
  .pr-tonight-inner { gap: 8px; }
  .pr-tonight-show { font-size: 16px !important; min-width: 0 !important; }
  .pr-tonight-cta { padding: 8px 14px; font-size: 10px; }

  /* SEO footer link block - let long phrases wrap, smaller text */
  .footer-seo-inner p { font-size: 10px !important; line-height: 1.85; }
  .footer-seo-inner a { white-space: normal !important; }

  /* Panel content - make sure it has breathing room from the right edge */
  .panel-content { padding-right: max(24px, env(safe-area-inset-right)); }
}

/* iPhone 14-class fixes that should also apply at 720px and below */
@media (max-width: 720px) {
  .btn { max-width: 100%; }
  .btn-lg { font-size: 16px; padding: 14px 22px; }
  .panel, main, section { max-width: 100vw; overflow-x: clip; }
}

/* ============================================================
   STICKY MOBILE BOOKING CTA BAR
   ============================================================ */
.pr-sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  z-index: 9000;
  display: none;
  background: linear-gradient(180deg, rgba(11,15,46,0.96) 0%, rgba(5,8,35,0.98) 100%);
  border-top: 2px solid var(--pr-pink, #ff2d87);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
  padding: 10px 8px max(10px, env(safe-area-inset-bottom));
  transition: bottom 0.32s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 720px) { .pr-sticky-cta { display: flex; gap: 6px; align-items: stretch; } }
.pr-sticky-cta.is-shown { bottom: 0; }
.pr-sticky-cta-btn {
  flex: 1 1 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  padding: 10px 4px;
  font-family: var(--f-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pr-cream, #f4efe6);
  background: rgba(22, 30, 77, 0.6);
  border: 1.5px solid #000;
  border-radius: 6px;
  transition: transform 0.12s, background 0.12s;
}
.pr-sticky-cta-btn:active { transform: scale(0.96); }
.pr-sticky-cta-book   { border-left: 4px solid var(--pr-pink,   #ff2d87); }
.pr-sticky-cta-tickets{ border-left: 4px solid var(--pr-cyan,   #00e5ff); }
.pr-sticky-cta-eats   { border-left: 4px solid var(--pr-orange, #ff8a3c); }
.pr-sticky-cta-icon {
  font-size: 16px;
  line-height: 1;
}
.pr-sticky-cta-close {
  width: 32px;
  background: transparent;
  border: 1px solid rgba(244,239,230,0.3);
  border-radius: 4px;
  color: rgba(244,239,230,0.7);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.pr-sticky-cta-close:hover { color: var(--pr-pink, #ff2d87); }

/* ============================================================
   "TONIGHT AT THE ROYALE" HINT BLOCK (above footer)
   ============================================================ */
.pr-tonight {
  background: linear-gradient(90deg, rgba(255, 45, 135, 0.16), rgba(0, 229, 255, 0.10));
  border-top: 1px solid rgba(255, 45, 135, 0.25);
  border-bottom: 1px solid rgba(255, 45, 135, 0.25);
  padding: 14px 7vw;
}
.pr-tonight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pr-cream, #f4efe6);
}
.pr-tonight-tag {
  font-family: var(--f-pixel, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-cyan, #00e5ff);
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.pr-tonight-show {
  font-family: var(--f-display, sans-serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--pr-cream, #f4efe6);
  text-shadow: 2px 2px 0 #000;
  flex: 1 1 auto;
  min-width: 200px;
}
.pr-tonight-when {
  font-family: var(--f-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}
.pr-tonight-cta {
  padding: 10px 18px;
  background: var(--pr-pink, #ff2d87);
  border: 2px solid #000;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  color: #fff;
  text-decoration: none;
  font-family: var(--f-pixel, monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.12s;
}
.pr-tonight-cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }

/* ============================================================
   GOOGLE REVIEWS WIDGET
   ============================================================ */
.pr-reviews {
  background: #0B0F2E;
  padding: 64px 7vw;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}
.pr-reviews-inner { max-width: 1200px; margin: 0 auto; }
.pr-reviews-h {
  font-family: var(--f-display, sans-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--pr-cream, #f4efe6);
  text-shadow: 3px 3px 0 var(--pr-pulp-red, #c2185b), 6px 6px 0 #000;
  margin: 0 0 14px;
}
.pr-reviews-overall {
  font-family: var(--f-mono, monospace);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 230, 0.85);
  margin: 0 0 24px;
}
.pr-reviews-overall a { color: var(--pr-cyan, #00e5ff); }
.pr-stars { color: var(--pr-orange, #ff8a3c); letter-spacing: 0.08em; }
.pr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.pr-review {
  padding: 18px 18px 16px;
  background: rgba(22, 30, 77, 0.55);
  border: 2px solid #000;
  border-left: 5px solid var(--pr-pink, #ff2d87);
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
}
.pr-review header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px; margin-bottom: 8px;
}
.pr-review cite {
  font-style: normal;
  font-family: var(--f-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}
.pr-review blockquote {
  margin: 0;
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  line-height: 1.55;
  color: var(--pr-cream, #f4efe6);
}

/* ============================================================
   FUNCTIONS PACK - Email-gated download dialog
   ============================================================ */
.fn-pack-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 540px;
  width: 92vw;
  margin: auto;
  color: var(--pr-cream, #f4efe6);
}
.fn-pack-dialog::backdrop {
  background: rgba(5, 8, 35, 0.82);
  backdrop-filter: blur(6px);
}
.fn-pack-card {
  position: relative;
  background: #0B0F2E;
  border: 3px solid #000;
  border-radius: 10px;
  box-shadow: 8px 8px 0 #000, 0 0 32px rgba(255, 45, 135, 0.35);
  padding: 32px 28px 28px;
}
.fn-pack-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(244,239,230,0.3);
  border-radius: 6px;
  color: rgba(244,239,230,0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.fn-pack-close:hover { color: var(--pr-pink); border-color: var(--pr-pink); }
.fn-pack-eyebrow {
  font-family: var(--f-pixel, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-cyan, #00e5ff);
  margin: 0 0 8px;
}
.fn-pack-h {
  font-family: var(--f-display, sans-serif);
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--pr-cream, #f4efe6);
  text-shadow: 3px 3px 0 var(--pr-pulp-red, #c2185b), 5px 5px 0 #000;
  margin: 0 0 12px;
}
.fn-pack-desc {
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.78);
  margin: 0 0 22px;
}
.fn-pack-form { display: block; }
.fn-pack-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .fn-pack-row { grid-template-columns: 1fr; } }
.fn-pack-form label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--f-mono, monospace);
}
.fn-pack-form label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  margin-bottom: 4px;
}
.fn-pack-form label small { font-size: 0.85em; color: rgba(244,239,230,0.5); text-transform: none; letter-spacing: 0.04em; }
.fn-pack-form input,
.fn-pack-form select {
  width: 100%;
  padding: 10px 12px;
  background: rgba(22, 30, 77, 0.7);
  border: 2px solid #000;
  border-radius: 6px;
  color: var(--pr-cream, #f4efe6);
  font-family: var(--f-mono, monospace);
  font-size: 14px;
}
.fn-pack-form input:focus,
.fn-pack-form select:focus {
  outline: none;
  border-color: var(--pr-pink, #ff2d87);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.3);
}
.fn-pack-row-full { display: block; }
.fn-pack-submit {
  margin-top: 6px;
  width: 100%;
  padding: 14px 20px;
  background: var(--pr-pink, #ff2d87);
  border: 2px solid #000;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #000;
  color: #fff;
  font-family: var(--f-pixel, monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s;
}
.fn-pack-submit:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #000; }
.fn-pack-submit:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }
.fn-pack-fine {
  font-family: var(--f-mono, monospace);
  font-size: 11px;
  color: rgba(244, 239, 230, 0.5);
  margin: 12px 0 0;
  text-align: center;
}
.fn-pack-honeypot { display: none; }
.fn-pack-thanks h3 {
  font-family: var(--f-display, sans-serif);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--pr-cream, #f4efe6);
  text-shadow: 3px 3px 0 var(--pr-pulp-red, #c2185b), 5px 5px 0 #000;
  margin: 0 0 14px;
}
.fn-pack-thanks p {
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.85);
  margin: 0 0 12px;
}
.fn-pack-thanks a { color: var(--pr-pink, #ff2d87); }


/* ============================================================
   v1.1 MOBILE BUG BASH - 2026-06-01
   Header overflow, home dead space, theatre menu button, etc.
   ============================================================ */

/* Defensive: prevent any header child from spilling out of the container. */
.nav { box-sizing: border-box; max-width: 100vw; overflow: visible; }
.nav-inner { max-width: 100%; min-width: 0; flex-wrap: nowrap; box-sizing: border-box; }
.nav-inner > * { min-width: 0; }
.nav-brand { flex-shrink: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-cta-group { min-width: 0; }
.nav-cta-group .btn { white-space: nowrap; }

/* Hide nav-cta-group earlier (tablets too) so Table Booking can never spill.
   Mobile users hit the menu toggle - Sevenrooms is one tap inside the open menu. */
@media (max-width: 980px) {
  .nav-cta-group { display: none; }
  .nav-inner.open .nav-cta-group {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    padding: 12px 4px 0;
    border-top: 1px solid rgba(244, 239, 230, 0.12);
  }
  .nav-inner.open .nav-cta-group .btn { width: 100%; justify-content: center; }
}

/* HOME - kill the dead space at the very top on mobile (was 96-120px hero pad). */
@media (max-width: 720px) {
  .panel-hero .panel-grid,
  .panel-hero {
    padding-top: 70px;
  }
  /* Pull the hero lockup tighter */
  .panel-hero .hero-lockup { margin-top: 0; }
  .panel-hero .panel-meta { margin-top: 0; }
}

/* THEATRE - make sure the nav toggle button isn't being shadowed/covered. */
@media (max-width: 720px) {
  .programme-hero ~ header .nav-toggle,
  .nav-toggle {
    position: relative;
    z-index: 60;
    display: inline-flex !important;
    pointer-events: auto;
  }
  .programme-hero { isolation: isolate; }
}

/* THEATRE → BACK TO HOME - the back link was opening home in a compressed
   layout. Force home page to reset viewport when arriving via in-page link. */
.panel-grid { min-height: 0; }

/* SPECIALS - "MAY - JUN" should look like a section title, not an inline blob. */
@media (max-width: 720px) {
  .som-eyebrow,
  .specials-month-eyebrow,
  .specials-monthly-eyebrow {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 18px !important;
    letter-spacing: 0.22em;
    color: var(--pr-pink) !important;
    margin: 0 0 6px !important;
    text-transform: uppercase;
  }
}

/* Sticky bottom CTA bar - push above iPhone safe area + don't overlap content. */
.pr-sticky-cta { padding-bottom: max(8px, env(safe-area-inset-bottom)); }

/* ============================================================
   v1.1 POLISH - 2026-06-01
   Diamond Package glow + sparkle hover,
   House Packages hierarchy > Drinks Tiers,
   ROYALE THEATRE un-squish.
   ============================================================ */

/* Diamond Package - make it FEEL like the top tier. */
.fn-pkg-diamond {
  position: relative;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(0, 229, 255, 0.22), transparent 60%),
    radial-gradient(140% 100% at 20% 100%, rgba(255, 45, 135, 0.20), transparent 60%),
    linear-gradient(160deg, #1a1f4f 0%, #2b1a4f 50%, #1a1f4f 100%) !important;
  border: 2px solid rgba(0, 229, 255, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(255, 45, 135, 0.45),
    0 0 32px rgba(0, 229, 255, 0.35),
    0 0 60px rgba(255, 45, 135, 0.25),
    8px 8px 0 #000 !important;
  transition: transform 0.32s cubic-bezier(.22, 1, .36, 1),
              box-shadow 0.32s, background 0.32s !important;
  overflow: hidden;
}
.fn-pkg-diamond::before {
  content: "";
  position: absolute; inset: -2px;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.36s;
}
.fn-pkg-diamond > * { position: relative; z-index: 2; }

/* The diamond glyph hidden by default, BIG and animated on hover. */
.fn-pkg-diamond-icon {
  position: absolute;
  top: 50%; right: -20%;
  transform: translateY(-50%) rotate(15deg) scale(0.4);
  font-size: clamp(160px, 22vw, 320px);
  color: rgba(0, 229, 255, 0.16);
  text-shadow:
    0 0 24px rgba(0, 229, 255, 0.55),
    0 0 48px rgba(255, 45, 135, 0.35);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.22, 1, .36, 1),
              opacity 0.42s,
              color 0.4s;
}
.fn-pkg-diamond:hover,
.fn-pkg-diamond:focus-visible {
  transform: translate(-4px, -6px) !important;
  box-shadow:
    0 0 0 1px rgba(255, 45, 135, 0.65),
    0 0 42px rgba(0, 229, 255, 0.6),
    0 0 90px rgba(255, 45, 135, 0.4),
    12px 12px 0 #000 !important;
  border-color: var(--pr-cyan) !important;
}
.fn-pkg-diamond:hover .fn-pkg-diamond-icon,
.fn-pkg-diamond:focus-visible .fn-pkg-diamond-icon {
  opacity: 1;
  transform: translateY(-50%) rotate(8deg) scale(1);
  color: rgba(0, 229, 255, 0.35);
}
.fn-pkg-diamond:hover::before,
.fn-pkg-diamond:focus-visible::before {
  opacity: 1;
  animation: pr-diamond-shimmer 1.4s ease-in-out infinite;
}
@keyframes pr-diamond-shimmer {
  0%   { transform: translateX(-30%) skewX(-12deg); }
  100% { transform: translateX(60%) skewX(-12deg); }
}
.fn-pkg-diamond .fn-pkg-name {
  background: linear-gradient(90deg, var(--pr-cream) 0%, var(--pr-cyan) 50%, var(--pr-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .fn-pkg-diamond,
  .fn-pkg-diamond-icon,
  .fn-pkg-diamond::before { transition: none; animation: none; }
}

/* House Packages > Drinks Tiers in visual weight on functions page. */
.fn-packages {
  margin-bottom: 8px;
}
.fn-packages .fn-pkg {
  min-height: 240px;
  padding: 36px 32px;
}
.fn-packages .fn-pkg-name {
  font-size: clamp(36px, 4vw, 56px) !important;
}
.fn-packages .fn-pkg-price {
  font-size: clamp(28px, 3vw, 42px) !important;
}
/* Make drinks tiers cleaner / less dominant. */
.fn-page-section + .fn-page-section .tier {
  min-height: 0;
}
.tier-grid .tier .tier-name {
  font-size: clamp(24px, 2.4vw, 36px);
}
.tier-grid .tier .tier-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* THEATRE - un-squish the ROYALE THEATRE wordmark. */
.programme-hero h1.display.smaller {
  letter-spacing: 0.02em !important;
  line-height: 1.02 !important;
  font-size: clamp(64px, 11vw, 132px) !important;
  text-shadow: 4px 4px 0 var(--pr-pulp-red), 8px 8px 0 #000;
}
.programme-hero h1.display.smaller br { line-height: 0.92; }
@media (max-width: 720px) {
  .programme-hero h1.display.smaller {
    font-size: clamp(52px, 14vw, 96px) !important;
  }
}
