/* ============================================
   GAME ON · FUN FOOD FRIENDS
   Brand stylesheet
   Aesthetic: modern retro arcade meets neighborhood warmth
   ============================================ */

@font-face { font-family: "Bungee"; src: url("/assets/fonts/bungee-regular.woff2") format("woff2"); font-display: swap; font-weight: 400; }
@font-face { font-family: "Fraunces"; src: url("/assets/fonts/fraunces-700.woff2") format("woff2"); font-display: swap; font-weight: 700; }
@font-face { font-family: "Fraunces"; src: url("/assets/fonts/fraunces-900.woff2") format("woff2"); font-display: swap; font-weight: 900; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-400.woff2") format("woff2"); font-display: swap; font-weight: 400; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-500.woff2") format("woff2"); font-display: swap; font-weight: 500; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-600.woff2") format("woff2"); font-display: swap; font-weight: 600; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-700.woff2") format("woff2"); font-display: swap; font-weight: 700; }

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors pulled from the logo */
  --navy: #1B3B6F;
  --navy-deep: #0F2249;
  --navy-soft: #2D4E80;
  --orange: #F37F20;
  --orange-bright: #FF8E2E;
  --orange-deep: #D96A12;
  --orange-ink: #984300;
  --red: #E63946;
  --green: #6DBE45;
  --cyan: #36C6DD; /* arcade-blue ghost — reads on both cream and navy */

  /* Neutrals */
  --cream: #FFF8E7;
  --cream-warm: #FFFCF5;
  --ink: #0F1A2E;
  --ink-soft: #1F2A40;
  --paper: #FFFFFF;
  --line: rgba(15, 26, 46, 0.12);
  --line-soft: rgba(15, 26, 46, 0.06);
  --focus: #00a6c8;

  /* Type scale */
  --font-display: "Bungee", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7rem);
  --header-height: 76px;

  /* Effects */
  --shadow-card: 0 4px 0 rgba(15, 26, 46, 0.08), 0 24px 48px -16px rgba(15, 26, 46, 0.18);
  --shadow-chunky: 6px 6px 0 var(--ink);
  --shadow-chunky-orange: 6px 6px 0 var(--orange);
  --radius: 18px;
  --radius-lg: 28px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: var(--header-height); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border: 3px solid var(--navy);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--navy-deep);
}

/* ---------- Scanline overlay (subtle CRT feel) ---------- */
.scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(15, 26, 46, 0.018) 3px,
    rgba(15, 26, 46, 0.018) 4px
  );
  mix-blend-mode: multiply;
}

/* ---------- Scroll sprite layer (arcade animations) ---------- */
/* Pixel-style sprites float across the screen as the user scrolls,
   anchored to fixed position so they appear to drift over the content. */
.sprite-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* z-index 1 keeps sprites above the section backgrounds but below content.
     Page content is raised to z-index 2 (see "content above sprites" rule),
     so sprites drift behind the text and cards instead of over them. */
  z-index: 1;
  overflow: hidden;
}
.sprite {
  position: absolute;
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  /* Subtle outline so each sprite reads cleanly on any background color */
  filter: drop-shadow(0 1.5px 0 rgba(15, 26, 46, 0.22));
}
.sprite.show { opacity: 0.9; }

/* Content above sprites — these wrappers sit on z-index 2 so the drifting
   sprites pass behind them while still showing over the section backgrounds.
   The section elements themselves stay unpositioned so their opaque
   backgrounds remain below the sprite layer. */
.section-head,
.play__grid,
.visit__layout,
.day-pass,
.monthly-heading,
.monthly-grid,
.pass-notice,
.hours-grid,
.hours-note,
.events__layout,
.event-packages,
.event-booking-grid,
.events__actions,
.story__grid,
.contact__layout,
.hero__marquee,
.footer__top,
.footer__bottom {
  position: relative;
  z-index: 2;
}

/* Individual sprite designs using CSS box-shadow pixel art technique */
.sprite--ghost {
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 12px 12px 4px 4px;
  position: absolute;
}
.sprite--ghost::before {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 5px;
  background:
    radial-gradient(circle at 4px 0, var(--red) 3px, transparent 3px),
    radial-gradient(circle at 12px 0, var(--red) 3px, transparent 3px),
    radial-gradient(circle at 20px 0, var(--red) 3px, transparent 3px);
}
.sprite--ghost::after {
  content: '';
  position: absolute;
  top: 7px; left: 5px;
  width: 5px; height: 7px;
  background: white;
  border-radius: 50%;
  box-shadow: 9px 0 0 white, 2px 2px 0 var(--ink), 11px 2px 0 var(--ink);
}

.sprite--ghost-blue { background: var(--cyan); }
.sprite--ghost-blue::before {
  background:
    radial-gradient(circle at 4px 0, var(--cyan) 3px, transparent 3px),
    radial-gradient(circle at 12px 0, var(--cyan) 3px, transparent 3px),
    radial-gradient(circle at 20px 0, var(--cyan) 3px, transparent 3px);
}

.sprite--pacman {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 25%, 100% 0, 0 0, 0 100%, 100% 100%, 100% 75%);
}

.sprite--coin {
  width: 22px; height: 22px;
  background: radial-gradient(circle, #FFD700 60%, var(--orange-deep) 60%);
  border-radius: 50%;
  border: 2px solid var(--ink);
  animation: coin-spin 1s linear infinite;
}
@keyframes coin-spin {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.3); }
}

.sprite--star {
  width: 24px; height: 24px;
  background: var(--green);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 52px; width: auto; }
.nav__links {
  display: flex; gap: 2rem; align-items: center;
  font-weight: 500; font-size: 15px;
}
.nav__links a { transition: color 0.2s; }
.nav__links a:not(.nav__cta):hover { color: var(--orange); }
.nav__cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
}
.nav__cta:visited { color: var(--cream) !important; }
.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--orange);
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5rem) var(--gutter) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
  min-height: 0;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27, 59, 111, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 59, 111, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center 30%, black 30%, transparent 75%);
}
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; }
.shape--joystick {
  top: 12%; right: 8%;
  width: 90px; height: 90px;
  background: var(--orange); border-radius: 50%;
  box-shadow: 0 0 0 12px var(--cream), 0 0 0 14px var(--orange), 0 30px 0 -8px var(--orange);
  opacity: 0.85;
  animation: float-y 6s ease-in-out infinite;
}
.shape--target {
  bottom: 18%; left: 5%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--red) 22%, var(--cream) 22%, var(--cream) 38%, var(--red) 38%, var(--red) 54%, var(--cream) 54%, var(--cream) 70%, var(--red) 70%);
  opacity: 0.75;
  animation: float-y 7s ease-in-out infinite reverse;
}
.shape--paddle {
  top: 50%; right: 4%;
  width: 70px; height: 70px;
  background: var(--red); border-radius: 50%;
  opacity: 0.6;
  animation: float-x 8s ease-in-out infinite;
}
.shape--pixel { width: 18px; height: 18px; }
.pixel-1 { top: 28%; left: 12%; background: var(--green); animation: blink 3s infinite; }
.pixel-2 { top: 65%; right: 22%; background: var(--orange); animation: blink 3s infinite 0.5s; }
.pixel-3 { top: 40%; left: 18%; background: var(--red); animation: blink 3s infinite 1s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
@keyframes float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-15px); }
}
@keyframes blink {
  0%, 90%, 100% { opacity: 1; }
  95% { opacity: 0.2; }
}

.hero__content {
  position: relative; z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 2rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(109, 190, 69, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 190, 69, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(109, 190, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 190, 69, 0); }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 1.5rem;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--orange);
  font-style: italic;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.hero__cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1.5px dashed var(--line);
  margin-bottom: 4rem;
}
.hero__facts {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  list-style: none;
  padding: 2rem 0 0;
  margin: 0 0 4rem;
  border-top: 1.5px dashed var(--line);
  color: var(--navy);
  font-weight: 700;
}
.hero__facts li::before {
  content: "◆";
  color: var(--orange);
  font-size: 0.75em;
  margin-right: 0.6rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.stat__divider {
  width: 1px; height: 36px;
  background: var(--line);
}

/* Marquee at hero bottom */
.hero__marquee {
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
  padding: 1.25rem 0;
  background: var(--navy);
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: 0.08em;
  overflow: hidden;
  white-space: nowrap;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  padding-right: 3rem;
  display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.2s;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: var(--shadow-chunky);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--orange-bright);
}
.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn--ghost {
  background: var(--paper);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn--ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--navy);
  background: var(--navy);
  color: var(--cream);
}
.btn--full { width: 100%; }

/* ============================================
   SECTION HEADS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-y);
  padding-top: var(--section-y);
}
.section-head__kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-head__kicker--light { color: var(--orange-bright); }
.section-head__kicker:not(.section-head__kicker--light) { color: var(--orange-ink); }
.passes .section-head__kicker { color: var(--orange-bright); }
.kicker-bar {
  width: 32px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section-head__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section-head__sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}

/* ============================================
   PLAY (What's Inside) - 3 cols × 2 rows
   ============================================ */
.play {
  padding: 0 var(--gutter) var(--section-y);
  background: var(--cream);
}
.play__grid {
  display: grid;
  /* Forces a strict 3-column layout on desktop, drops to 2 on tablet, 1 on mobile */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.play-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-chunky);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.play-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}
.play-card__icon svg { width: 44px; height: 44px; }
.play-card--arcade .play-card__icon { background: rgba(243, 127, 32, 0.15); color: var(--orange); }
.play-card--pool .play-card__icon { background: rgba(27, 59, 111, 0.12); color: var(--navy); }
.play-card--pingpong .play-card__icon { background: rgba(230, 57, 70, 0.12); color: var(--red); }
.play-card--food .play-card__icon { background: rgba(109, 190, 69, 0.18); color: var(--green); }
.play-card--space .play-card__icon { background: rgba(243, 127, 32, 0.15); color: var(--orange); }
.play-card--vibe .play-card__icon { background: rgba(27, 59, 111, 0.12); color: var(--navy); }

.play-card h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.play-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}

/* ============================================
   VISIT GAME ON
   ============================================ */
.visit {
  position: relative;
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 44px 44px;
}
.visit::before {
  content: '';
  position: absolute;
  width: clamp(15rem, 28vw, 27rem);
  aspect-ratio: 1;
  right: -8%;
  bottom: -30%;
  border: clamp(2rem, 5vw, 4.5rem) solid rgba(243, 127, 32, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.visit__layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.visit__title {
  margin: 0 0 1rem;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.visit__lead {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: rgba(255, 248, 231, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.visit__facts {
  display: grid;
  gap: 0;
  margin: 0 0 2rem;
  border-top: 1px solid rgba(255, 248, 231, 0.2);
}
.visit__fact {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 248, 231, 0.2);
}
.visit__fact dt {
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}
.visit__fact dd {
  margin: 0;
  color: rgba(255, 248, 231, 0.84);
  font-size: 0.95rem;
  line-height: 1.5;
}
.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.visit .btn--ghost {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--cream);
}
.visit .btn--ghost:hover {
  background: var(--cream);
  color: var(--navy-deep);
  box-shadow: 6px 6px 0 var(--orange);
}
.btn:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--navy-deep);
}

.visit-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(5.5rem, 1fr));
  gap: clamp(0.45rem, 1vw, 0.8rem);
  min-width: 0;
  aspect-ratio: 5 / 4;
}
.visit-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--cream);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.28);
}
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit-photo--storefront { grid-area: 1 / 1 / 3 / 3; border-color: var(--orange); }
.visit-photo--storefront img { object-position: center 42%; }
.visit-photo--pool-closeup { grid-area: 1 / 3 / 3 / 4; }
.visit-photo--pool-closeup img { object-position: center 68%; }
.visit-photo--pool-room { grid-area: 1 / 4 / 3 / 5; }
.visit-photo--lounge { grid-area: 3 / 1 / 5 / 3; }
.visit-photo--arcade { grid-area: 3 / 3 / 5 / 4; }
.visit-photo--foosball { grid-area: 3 / 4 / 4 / 5; }
.visit-photo--table-games { grid-area: 4 / 4 / 5 / 5; }

/* ============================================
   PASSES
   ============================================ */
.passes {
  padding: 0 var(--gutter) var(--section-y);
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.passes .section-head__title { color: var(--cream); }
.passes .section-head__sub { color: rgba(255, 248, 231, 0.75); }
/* Pull the banner up closer to the heading instead of a full section gap */
.passes .section-head { margin-bottom: 3rem; }

.day-pass {
  max-width: 980px;
  margin: 0 auto 4rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 4px solid var(--orange);
  border-radius: 24px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: 12px 12px 0 rgba(0,0,0,.22);
  text-align: center;
}
.day-pass__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.day-pass h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}
.day-pass__price { margin: 1rem 0; font-weight: 700; }
.day-pass__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.95;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--navy-deep);
  text-shadow: 4px 4px 0 rgba(27, 59, 111, 0.12);
}
.day-pass ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  max-width: 700px;
  margin: 1.5rem auto 2rem;
  padding: 0;
  list-style: none;
  text-align: left;
}
.day-pass li::before { content: "✓"; margin-right: 0.5rem; color: var(--green); font-weight: 700; }
.day-pass .btn, .monthly-grid .btn { min-height: 44px; }
.fine-print { margin: 1.25rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.monthly-heading { max-width: 1200px; margin: 0 auto 1.5rem; }
.monthly-heading .section-head__kicker { margin-bottom: 0.35rem; color: var(--orange-bright); }
.monthly-heading h3 { margin: 0; font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.75rem); }
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.monthly-grid .pass-card { align-items: flex-start; text-align: left; }
.pass-card h4 {
  margin: 0.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
}
.pass-card__price { margin: 0 0 0.75rem; font-size: 1.1rem; font-weight: 700; color: var(--orange-ink); }
.monthly-grid .pass-card > p:not(.pass-card__price) { margin: 0 0 1.25rem; color: var(--ink-soft); }
.pass-card__details {
  flex: 1;
  width: 100%;
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.pass-card__details li { line-height: 1.5; }
.pass-card__details li + li { margin-top: 0.55rem; }
.pass-card__details li::marker { color: var(--orange-ink); }
.monthly-grid .btn { width: 100%; }
.pass-notice {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px solid rgba(255, 248, 231, 0.55);
  border-radius: 18px;
  background: rgba(255, 248, 231, 0.08);
  color: rgba(255, 248, 231, 0.85);
  font-size: 0.95rem;
}
.pass-notice h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
}
.pass-notice p { margin: 0; line-height: 1.55; }
.pass-notice p + p { margin-top: 0.8rem; }
.pass-notice a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Arcade "character select" panels */
.pass-card {
  background: var(--cream-warm);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem 2rem;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-chunky);
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
/* Pixel accent bar across the top of each card */
.pass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 10px,
    var(--navy) 10px, var(--navy) 20px,
    var(--red) 20px, var(--red) 30px,
    var(--green) 30px, var(--green) 40px
  );
  opacity: 0.85;
  /* Round the stripe's top corners so it stays tucked inside the card. */
  border-radius: var(--radius) var(--radius) 0 0;
}
.pass-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

/* ============================================
   HOURS
   ============================================ */
.hours {
  padding: 0 var(--gutter) var(--section-y);
  background: var(--cream);
}
.hours .section-head { margin-bottom: 2rem; }
.hours-grid { display: grid; max-width: 880px; margin: 0 auto; }
.hours-row {
  display: grid;
  grid-template-columns: minmax(8rem, .55fr) 1.45fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(27,59,111,.2);
}
.hours-row dt { font-weight: 700; color: var(--navy); }
.hours-row dd { margin: 0; }
.hours-note, .event-policy, .privacy-note { padding: 1.25rem; border-radius: 16px; }
.hours-note {
  max-width: 880px;
  margin: 1.5rem auto 0;
  background: rgba(243, 127, 32, 0.11);
  border-left: 5px solid var(--orange);
}

/* ============================================
   EVENTS
   ============================================ */
.events {
  padding: var(--section-y) var(--gutter);
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.events__layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.events__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.02em;
}
.events__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
  line-height: 1.55;
}
.events__types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.event-type {
  display: flex; gap: 1rem;
  align-items: flex-start;
}
.event-type__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
}
.event-type h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  color: var(--navy);
}
.event-type p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.events__inline-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-style: italic;
}
.event-policy {
  margin: 0 0 1.5rem;
  background: var(--paper);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 rgba(27, 59, 111, 0.14);
}
.event-policy h3 { margin: 0 0 0.75rem; font-family: var(--font-serif); color: var(--navy); }
.event-policy p { margin: 0 0 0.75rem; font-size: 0.95rem; }
.event-policy a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }
.events__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.event-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 1.5rem;
  align-items: stretch;
}
.event-package {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  border: 2px solid var(--navy);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(27, 59, 111, 0.14);
}
.event-package::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 12px,
    var(--navy) 12px, var(--navy) 24px,
    var(--red) 24px, var(--red) 36px,
    var(--green) 36px, var(--green) 48px
  );
}
.event-package--deluxe {
  border-color: var(--orange-ink);
  box-shadow: 6px 6px 0 rgba(243, 127, 32, 0.2);
}
.event-package__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--orange-ink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.event-package h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.1;
}
.event-package > p { color: var(--ink-soft); line-height: 1.55; }
.event-package__price {
  margin: 0 0 0.85rem;
  color: var(--orange-ink) !important;
  font-weight: 800;
}
.event-package ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.event-package li { line-height: 1.45; }
.event-package li + li { margin-top: 0.45rem; }
.event-package li::marker { color: var(--orange-ink); }
.event-package a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.event-package__note {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(243, 127, 32, 0.1);
}
.event-package__example {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(27, 59, 111, 0.3);
  font-size: 0.9rem;
}
.event-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.event-booking-grid .event-policy { margin: 0; }
.events > .events__actions {
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

/* Cake SVG illustration */
.events__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.cake-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(6px 8px 0 rgba(15, 26, 46, 0.15));
}
.cake-flame-svg {
  transform-origin: center 33px;
  animation: cake-flicker 0.6s ease-in-out infinite alternate;
}
.cake-flame-svg--inner {
  animation: cake-flicker 0.4s ease-in-out infinite alternate;
}
@keyframes cake-flicker {
  0% { transform: scale(1, 1) translateY(0); opacity: 1; }
  100% { transform: scale(1.08, 0.94) translateY(-1px); opacity: 0.9; }
}

.confetti {
  position: absolute;
  width: 14px; height: 14px;
  z-index: 1;
}
.confetti-1 { top: 10%; left: 15%; background: var(--red); transform: rotate(20deg); animation: float-y 3s ease-in-out infinite; }
.confetti-2 { top: 20%; right: 10%; background: var(--green); border-radius: 50%; animation: float-y 4s ease-in-out infinite 0.5s; }
.confetti-3 { bottom: 25%; left: 8%; background: var(--orange); transform: rotate(45deg); animation: float-y 3.5s ease-in-out infinite 1s; }
.confetti-4 { bottom: 15%; right: 18%; background: var(--navy); border-radius: 50%; animation: float-y 4.5s ease-in-out infinite 0.3s; }
.confetti-5 { top: 50%; right: 5%; background: var(--red); transform: rotate(60deg); animation: float-y 3.2s ease-in-out infinite 0.8s; }
.confetti-6 { top: 35%; left: 6%; background: var(--green); transform: rotate(-30deg); animation: float-y 3.8s ease-in-out infinite 0.6s; }
.confetti-7 { top: 5%; right: 30%; background: var(--orange); border-radius: 50%; animation: float-y 4.2s ease-in-out infinite 1.2s; }

/* ============================================
   STORY
   ============================================ */
.story {
  padding: var(--section-y) var(--gutter);
  background: var(--cream);
}
.story__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 1rem 0 1.75rem;
  letter-spacing: -0.02em;
}
.story__text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.story__text strong {
  color: var(--navy);
  font-weight: 700;
}
.story__values {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-chunky);
}
.story__values-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px dashed var(--line);
}
.value {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
}
.value:last-child { border-bottom: none; padding-bottom: 0; }
.value__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange-ink);
  flex-shrink: 0;
  line-height: 1.2;
}
.value h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  color: var(--navy);
}
.value p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-y) var(--gutter);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(243, 127, 32, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.contact__layout {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.02em;
}
.contact__lead {
  font-size: 1.15rem;
  color: rgba(255, 248, 231, 0.85);
  margin: 0 0 2.5rem;
}
.contact__info { display: grid; gap: 1.5rem; }
.info-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.35rem;
}
.info-block__value { font-size: 16px; line-height: 1.5; }
.info-block__value a { color: var(--cream); border-bottom: 1px solid rgba(255, 248, 231, 0.3); }
.info-block__value a:hover { color: var(--orange-bright); border-color: var(--orange-bright); }

.contact__form { display: grid; gap: 1rem; }
.privacy-note {
  background: rgba(255, 248, 231, 0.1);
  border: 1px solid rgba(255, 248, 231, 0.35);
}
.privacy-note h3 { margin: 0 0 0.5rem; font-family: var(--font-serif); font-size: 1.4rem; }
.privacy-note p { margin: 0 0 0.65rem; font-size: 0.95rem; }
.privacy-note p:last-child { margin-bottom: 0; }
.privacy-note a, .form-fallback a { color: var(--orange-bright); text-decoration: underline; text-underline-offset: 0.2em; }
.form-fallback { margin: 0; font-size: 0.9rem; color: rgba(255, 248, 231, 0.85); }

/* Embedded contact form — framed to match the chunky brand cards so the
   third-party iframe sits comfortably on the navy section. */
.contact__embed {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  min-height: 706px;
  padding: 0.75rem;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
}
.contact__embed iframe {
  display: block;
  width: 100%;
  /* Fallback height before the embed script measures the real form */
  min-height: 676px;
  border: none;
  border-radius: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem var(--gutter) 1.5rem;
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
}
.footer__brand > p {
  color: rgba(255, 248, 231, 0.7);
  font-size: 15px;
  max-width: 320px;
  margin: 1.25rem 0 0.75rem;
}
.footer__logo {
  /* Larger hero logo in the footer */
  height: 150px;
  width: auto;
}
.footer__contact {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}
.footer__contact-item {
  display: grid;
  gap: 0.2rem;
}
.footer__contact dt {
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__contact dd { margin: 0; }
.footer__address {
  display: grid;
  gap: 0.1rem;
  color: rgba(255, 248, 231, 0.78);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer__address a,
.footer__contact-link {
  color: inherit;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__contact-link {
  color: rgba(255, 248, 231, 0.78);
  font-size: 1.0625rem;
  font-weight: 500;
}
.footer__address a:hover,
.footer__contact-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--orange);
  margin: 0 0 1rem;
  letter-spacing: 0.08em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li {
  padding: 0.35rem 0;
  font-size: 14px;
  color: rgba(255, 248, 231, 0.7);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 248, 231, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: rgba(255, 248, 231, 0.5);
}
.footer__credit-link {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__credit-link:hover {
  color: var(--orange-bright);
  border-bottom-color: var(--orange-bright);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================
   INNER PAGES — Forms, Rules, and Policies
   ============================================ */
.page-main {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  background: var(--cream);
}
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  color: var(--cream);
  background:
    linear-gradient(rgba(54, 198, 221, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 198, 221, 0.08) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 40px 40px;
  border-bottom: 4px solid var(--orange);
}
.page-hero__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}
.page-hero__kicker {
  margin: 0 0 0.75rem;
  color: var(--orange-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-hero h1 {
  max-width: 18ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.page-hero p:last-child {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 248, 231, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.page-content {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}
.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.form-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--navy);
}
.form-card__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--orange-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-card h2,
.notice h2,
.prose h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
}
.form-card > p:not(.form-card__eyebrow) {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}
.form-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: auto;
}
.form-card__actions .btn { width: 100%; min-height: 44px; }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}
.text-link:hover { color: var(--orange-ink); }
.notice {
  margin: clamp(2.5rem, 6vw, 4rem) 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: #fff2cc;
  border: 3px solid var(--ink);
  border-left: 12px solid var(--orange);
  border-radius: var(--radius);
}
.notice p { margin: 0.5rem 0 0; }
.prose {
  max-width: 72ch;
  margin-inline: auto;
}
.prose section {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.prose section + section { margin-top: 1.25rem; }
.prose p,
.prose li { color: var(--ink-soft); }
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul,
.prose ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.35rem;
}
.prose li::marker { color: var(--orange-ink); font-weight: 700; }
.prose__next {
  margin-top: 2rem !important;
  text-align: center;
}

.effective-date {
  margin-top: 1rem !important;
  color: var(--orange-bright) !important;
  font-size: 0.95rem !important;
  font-weight: 700;
}
.policy-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 46rem);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
  justify-content: center;
}
.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: 1.25rem;
  background: var(--navy-deep);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--orange);
}
.policy-nav > p {
  margin: 0 0 0.75rem;
  color: var(--orange-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.policy-nav ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
}
.policy-nav a:hover,
.policy-nav a:focus-visible,
.policy-nav a[aria-current="page"] {
  background: rgba(255, 248, 231, 0.12);
  color: var(--orange-bright);
  text-decoration-color: currentColor;
}
.policy-sections {
  min-width: 0;
  max-width: 72ch;
}
.policy-note {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.25rem;
  background: #fff2cc;
  border: 2px solid var(--ink);
  border-left: 8px solid var(--orange);
  border-radius: 12px;
  color: var(--ink-soft);
}
.policy-section {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.policy-section + .policy-section { margin-top: 1.25rem; }
.policy-section h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
}
.policy-section p,
.policy-section li { color: var(--ink-soft); }
.policy-section p { margin: 0 0 1rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.policy-section li::marker { color: var(--orange-ink); }
.policy-section .text-link {
  display: inline;
  min-height: 0;
}
.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  background:
    linear-gradient(rgba(54, 198, 221, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 198, 221, 0.08) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 40px 40px;
}
.error-page__card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 var(--orange);
}
.error-page__card h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}
.error-page__card > p:not(.page-hero__kicker) {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
}
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE — Tablet (768-1024) and Mobile
   ============================================ */

/* Tablet — adjust play grid */
@media (max-width: 1024px) {
  .play__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { gap: 1rem; font-size: 14px; }
  .nav__cta { padding-inline: 1rem; }
  .visit__layout { grid-template-columns: 1fr; }
  .visit__copy { max-width: 44rem; }
  .visit-gallery { aspect-ratio: 16 / 10; }
  .events__layout { grid-template-columns: 1fr 0.85fr; gap: 3rem; }
  .event-packages { grid-template-columns: 1fr; }
  .event-booking-grid { grid-template-columns: 1fr; }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .monthly-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet portrait and below — stacked layouts */
@media (max-width: 900px) {
  .events__layout,
  .story__grid,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .events__visual { max-width: 320px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__logo { height: 130px; }
  .hero__shapes .shape--joystick { width: 70px; height: 70px; right: 4%; top: 8%; }
  .hero__shapes .shape--target { width: 80px; height: 80px; }
  .hero__shapes .shape--paddle { display: none; }
  .policy-layout { grid-template-columns: 1fr; gap: 2rem; }
  .policy-nav { position: static; }
  .policy-nav ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile navigation */
@media (max-width: 719px) {
  .nav { padding: 0.75rem var(--gutter); }
  .nav__logo { height: 44px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream-warm);
    padding: 1.5rem var(--gutter);
    border-bottom: 2px solid var(--ink);
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav.open .nav__links a {
    min-height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .monthly-grid { grid-template-columns: 1fr; }
  .hours-row { grid-template-columns: 1fr; gap: .25rem; }
  .hero__cta { align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .day-pass ul { grid-template-columns: 1fr; }
  .visit-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .visit-photo {
    grid-area: auto;
    aspect-ratio: 3 / 4;
  }
  .visit-photo--storefront,
  .visit-photo--lounge {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
  .visit-photo--lounge img { object-position: center 58%; }
  .hero__shapes { display: none; }
  .forms-grid { grid-template-columns: 1fr; }
  .form-card__actions { align-items: stretch; }
  .form-card__actions .text-link { justify-content: center; }
  .policy-nav ul { grid-template-columns: 1fr; }
  .error-page__links { align-items: stretch; flex-direction: column; }
  .error-page__links .btn { width: 100%; }
}

/* Phone */
@media (max-width: 640px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .events__types { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .stat__divider { display: none; }
  .hero__stats { gap: 1.25rem; }
  .contact__embed { padding: 0.5rem; }
  .play__grid { grid-template-columns: 1fr; }
  .footer__logo { height: 110px; }
  .nav__logo { height: 38px; }
  .play-card, .pass-card { padding: 1.5rem 1.25rem; }
  .contact { padding-left: 1rem; padding-right: 1rem; }
  .story__values { padding: 1.5rem; }
  .events__actions { flex-direction: column; align-items: stretch; }
  .events__actions .btn { width: 100%; }
  .visit__fact { grid-template-columns: 1fr; gap: 0.25rem; }
  .visit__actions { align-items: stretch; flex-direction: column; }
  .visit__actions .btn { width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .hero__title { font-size: 2rem; }
  .hero__badge { font-size: 11px; padding: 0.4rem 0.9rem; }
  .contact__embed { padding: 0.5rem; box-shadow: 4px 4px 0 var(--orange); }
  .visit-gallery { grid-template-columns: 1fr; }
  .visit-photo--storefront,
  .visit-photo--lounge { grid-column: auto; aspect-ratio: 3 / 4; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .scanlines, .sprite-layer { display: none; }
}
