/* ==========================================================================
   LASER STRIKE ARENA — STYLESHEET
   A single external stylesheet covering every page of the site.
   Structure:
     1.  Design tokens
     2.  Reset & base
     3.  Layout utilities
     4.  Typography helpers
     5.  Buttons
     6.  Signature panel / HUD system
     7.  Header & navigation
     8.  Hero
     9.  About
     10. Why choose us
     11. Game modes
     12. Pricing
     13. Birthday packages
     14. Corporate events
     15. School groups
     16. Arena experience
     17. Gallery + lightbox
     18. Safety
     19. Reviews
     20. FAQ
     21. Booking
     22. Footer
     23. Legal pages
     24. Misc widgets (back-to-top, banners)
     25. Animations
     26. Responsive breakpoints
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. DESIGN TOKENS                                                        */
/* ---------------------------------------------------------------------- */
:root {
  /* Core neutrals */
  --void: #05070d;
  --void-deep: #030409;
  --steel: #0c1220;
  --steel-2: #121a2c;
  --steel-3: #1a2338;
  --line: rgba(158, 178, 214, 0.14);
  --line-strong: rgba(158, 178, 214, 0.28);

  /* Brand neons */
  --strike-blue: #00d4ff;
  --strike-blue-dim: #0a84ff;
  --strike-blue-ink: #063947;
  --strike-orange: #ff6b1a;
  --strike-orange-dim: #ff9142;
  --strike-orange-ink: #4a2409;

  /* Text */
  --paper: #eef2fb;
  --fog: #9aa7c4;
  --fog-dim: #647094;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--strike-blue) 0%, var(--strike-blue-dim) 45%, var(--strike-orange) 100%);
  --grad-panel: linear-gradient(160deg, var(--steel-2) 0%, var(--steel) 70%);

  /* Glow */
  --glow-blue: 0 0 32px rgba(0, 212, 255, 0.28);
  --glow-orange: 0 0 32px rgba(255, 107, 26, 0.26);

  /* Type */
  --font-display: 'Orbitron', 'Arial Narrow', sans-serif;
  --font-body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;

  /* Layout */
  --container-w: 1240px;
  --container-pad: 1.5rem;
  --header-h: 82px;

  /* Motion */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.45s;
  --dur-slow: 0.9s;
}

/* Icon sprite: holds <symbol> defs only, must never occupy visible layout space */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ---------------------------------------------------------------------- */
/* 2. RESET & BASE                                                         */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
/* Every icon in the sprite is drawn without its own stroke/fill so it can pick
   up colour from context. This default keeps icons visible (matching the
   surrounding text colour) anywhere a more specific rule doesn't set one. */
svg { stroke: currentColor; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; }

body {
  background: var(--void);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--paper);
}

p { color: var(--fog); }

::selection { background: var(--strike-blue); color: var(--void-deep); }

/* Visible focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--strike-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--strike-blue);
  color: var(--void-deep);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ---------------------------------------------------------------------- */
/* 3. LAYOUT UTILITIES                                                     */
/* ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt { background: linear-gradient(180deg, var(--void) 0%, var(--steel) 100%); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--strike-blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-brand);
  display: inline-block;
}
.eyebrow--orange { color: var(--strike-orange); }
.eyebrow--orange::before { background: var(--strike-orange); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section__lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--fog);
  max-width: 62ch;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: none;
  margin-block: 0;
}

/* Simple responsive grids reused across sections */
.grid { display: grid; gap: 1.75rem; }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--auto-md { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1180px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Small spacing utilities (used sparingly, in place of inline styles) */
.u-mb-sm { margin-bottom: 0.9rem; }
.u-mb-lg { margin-bottom: 2rem; }
.u-mt-md { margin-top: 1rem; }
.u-mt-lg { margin-top: 2rem; }

/* A centred section lede needs its own auto margins since it is a block
   narrower than its centred-text parent. */
.section__head--center .section__lede { margin-inline: auto; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--stagger-i, 0) * 90ms); }

/* ---------------------------------------------------------------------- */
/* 4. TYPOGRAPHY HELPERS                                                   */
/* ---------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
}
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------------------- */
/* 5. BUTTONS                                                              */
/* ---------------------------------------------------------------------- */
.btn {
  --btn-fg: var(--void-deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--grad-brand);
  color: var(--btn-fg);
  box-shadow: var(--glow-blue);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 40px rgba(0,212,255,0.4); }
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--line-strong);
}
.btn--secondary:hover { border-color: var(--strike-blue); color: var(--strike-blue); background: rgba(0,212,255,0.06); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--paper);
  padding: 0.7rem 1.3rem;
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }

.btn--sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------- */
/* 6. SIGNATURE PANEL / HUD SYSTEM                                         */
/* ---------------------------------------------------------------------- */
.panel {
  position: relative;
  background: var(--grad-panel);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  padding: 2.1rem 1.9rem;
  height: 100%;
}
.panel::before,
.panel::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.panel::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--strike-blue);
  border-left: 2px solid var(--strike-blue);
  opacity: 0.9;
}
.panel::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--strike-orange);
  border-right: 2px solid var(--strike-orange);
  opacity: 0.9;
}
.panel--sm { padding: 1.5rem; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
.panel--flush { padding: 0; overflow: hidden; }
.panel--center { text-align: center; }

.panel--featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(160deg, #142235 0%, #0c1524 70%);
}
.panel--featured::before { border-color: var(--strike-blue); box-shadow: 0 0 12px rgba(0,212,255,0.6); }
.panel--featured::after { border-color: var(--strike-orange); box-shadow: 0 0 12px rgba(255,107,26,0.6); }

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--strike-blue);
  border: 1px solid rgba(0,212,255,0.35);
}
.badge--orange { background: rgba(255,107,26,0.12); color: var(--strike-orange); border-color: rgba(255,107,26,0.35); }

/* Icon tile used inside cards */
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0,212,255,0.25);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.icon-tile svg { width: 28px; height: 28px; stroke: var(--strike-blue); }
.icon-tile--orange { background: rgba(255,107,26,0.08); border-color: rgba(255,107,26,0.3); }
.icon-tile--orange svg { stroke: var(--strike-orange); }

/* ---------------------------------------------------------------------- */
/* 7. HEADER & NAVIGATION                                                  */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(5, 7, 13, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.86);
  border-bottom-color: var(--line);
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.nav__logo-text span { display: block; }
.nav__logo-text .sub {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--strike-orange);
  font-weight: 400;
}

.nav__list {
  display: none;
  align-items: center;
  gap: 1.9rem;
}
.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fog);
  padding: 0.4rem 0.1rem;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-brand);
  transition: width var(--dur-fast) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--paper); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}
.nav__phone svg { width: 18px; height: 18px; stroke: var(--strike-blue); }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(5, 7, 13, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 2rem var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav__link {
  padding: 1rem 0.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
}
.mobile-nav__phone {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--strike-blue);
  font-weight: 700;
}
.mobile-nav__cta { margin-top: 1rem; }

@media (min-width: 1080px) {
  .nav__list { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---------------------------------------------------------------------- */
/* 8. HERO                                                                 */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 2.75rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(0,212,255,0.10), transparent 60%),
    radial-gradient(ellipse 900px 500px at 100% 20%, rgba(255,107,26,0.09), transparent 60%),
    var(--void);
}
.hero__scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.5), transparent);
  animation: scan 6s linear infinite;
  opacity: 0.6;
}
.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--strike-orange);
  margin-bottom: 1.4rem;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--strike-orange);
  box-shadow: 0 0 10px var(--strike-orange);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero__title .line { display: block; opacity: 0; transform: translateY(30px); animation: riseIn 0.9s var(--ease) forwards; }
.hero__title .line:nth-child(1) { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) { animation-delay: 0.28s; }
.hero__title .line:nth-child(3) { animation-delay: 0.46s; color: var(--strike-blue); }

.hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--fog);
  max-width: 52ch;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--paper);
  display: block;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--fog-dim);
  letter-spacing: 0.02em;
}

.hero__media {
  position: relative;
  z-index: 1;
}
.hero__media-frame {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--glow-blue);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(5,7,13,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero__media-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--strike-blue); box-shadow: 0 0 8px var(--strike-blue); }

@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------------------- */
/* 9. ABOUT                                                                */
/* ---------------------------------------------------------------------- */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about__media { position: relative; }
.about__media-frame {
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.about__media-frame img { width: 100%; }
.about__stat-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--steel-2);
  border: 1px solid var(--line-strong);
  padding: 1.25rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about__stat-float strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--strike-orange); display: block; }
.about__stat-float span { font-size: 0.78rem; color: var(--fog); }

.about__content p + p { margin-top: 1rem; }
.about__features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}
.about__feature svg { width: 22px; height: 22px; stroke: var(--strike-blue); flex-shrink: 0; margin-top: 2px; }
.about__feature h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.about__feature p { font-size: 0.92rem; margin: 0; }

@media (min-width: 720px) {
  .about__features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* ---------------------------------------------------------------------- */
/* 10. WHY CHOOSE US                                                       */
/* ---------------------------------------------------------------------- */
.feature-card__title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card__text { font-size: 0.94rem; }

/* ---------------------------------------------------------------------- */
/* 11. GAME MODES                                                          */
/* ---------------------------------------------------------------------- */
.mode-card { display: flex; flex-direction: column; }
.mode-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.mode-card__title { font-size: 1.2rem; margin-bottom: 0.7rem; }
.mode-card__text { font-size: 0.94rem; flex-grow: 1; }
.mode-card__meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.mode-card__meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--fog); }
.mode-card__meta-item svg { width: 16px; height: 16px; stroke: var(--strike-orange); }

/* ---------------------------------------------------------------------- */
/* 12. PRICING                                                             */
/* ---------------------------------------------------------------------- */
.price-card { display: flex; flex-direction: column; text-align: left; }
.price-card__tier { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--strike-blue); margin-bottom: 0.5rem; }
.price-card--featured .price-card__tier { margin-top: 0.9rem; }
.price-card__amount { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 0.15rem; }
.price-card__amount sup { font-size: 1rem; top: -1em; }
.price-card__unit { font-size: 0.85rem; color: var(--fog-dim); margin-bottom: 1.5rem; }
.price-card__list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.75rem; flex-grow: 1; }
.price-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--fog); }
.price-card__list svg { width: 17px; height: 17px; stroke: var(--strike-blue); flex-shrink: 0; margin-top: 3px; }
.price-card--featured .price-card__list svg { stroke: var(--strike-orange); }
.pricing__note {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--fog);
  max-width: 68ch;
}
.pricing__note svg { width: 22px; height: 22px; stroke: var(--strike-orange); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* 13. BIRTHDAY PACKAGES                                                   */
/* ---------------------------------------------------------------------- */
.package-card { display: flex; flex-direction: column; }
.package-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.1rem; }
.package-card__name { font-size: 1.3rem; }
.package-card__price { text-align: right; flex-shrink: 0; }
.package-card__price strong { font-family: var(--font-display); font-size: 1.5rem; display: block; }
.package-card__price span { font-size: 0.72rem; color: var(--fog-dim); }
.package-card__min { font-size: 0.82rem; color: var(--fog-dim); margin-bottom: 1.25rem; }
.package-card__list { display: flex; flex-direction: column; gap: 0.65rem; flex-grow: 1; }
.package-card__list li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--fog); }
.package-card__list svg { width: 16px; height: 16px; stroke: var(--strike-blue); flex-shrink: 0; margin-top: 3px; }
.package-card__cta { margin-top: 1.75rem; }

/* ---------------------------------------------------------------------- */
/* 14. CORPORATE EVENTS                                                    */
/* ---------------------------------------------------------------------- */
.corporate__grid { display: grid; gap: 3rem; align-items: start; }
.corporate__media-frame {
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.tier-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.tier-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.tier-item__num { font-family: var(--font-display); font-size: 1.3rem; color: var(--strike-orange); }
.tier-item h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.tier-item p { font-size: 0.88rem; margin: 0; }
@media (min-width: 960px) {
  .corporate__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 15. SCHOOL GROUPS                                                       */
/* ---------------------------------------------------------------------- */
.schools__grid { display: grid; gap: 3rem; align-items: center; }
.schools__stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 2rem; }
.schools__stat { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.schools__stat strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--strike-blue); display: block; }
.schools__stat span { font-size: 0.82rem; color: var(--fog-dim); }
.schools__list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.75rem; }
.schools__list li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--fog); }
.schools__list svg { width: 20px; height: 20px; stroke: var(--strike-orange); flex-shrink: 0; margin-top: 2px; }
@media (min-width: 960px) {
  .schools__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 16. ARENA EXPERIENCE                                                    */
/* ---------------------------------------------------------------------- */
.experience-card__title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.experience-card__text { font-size: 0.92rem; }

/* ---------------------------------------------------------------------- */
/* 17. GALLERY + LIGHTBOX                                                  */
/* ---------------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 0.9rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(0deg, rgba(3,4,9,0.92), transparent);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.gallery-item:hover .gallery-item__cap,
.gallery-item:focus-within .gallery-item__cap { opacity: 1; transform: translateY(0); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item__btn { display: block; width: 100%; height: 100%; }

@media (min-width: 720px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
}
@media (min-width: 1080px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(3,4,9,0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__inner { position: relative; max-width: 1000px; width: 100%; }
.lightbox__img-wrap {
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--steel);
}
.lightbox__img-wrap img { width: 100%; display: block; }
.lightbox__caption { margin-top: 1rem; text-align: center; color: var(--fog); font-size: 0.95rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: rgba(12,18,32,0.9);
  border: 1px solid var(--line-strong);
}
.lightbox__close { top: -60px; right: 0; }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }
.lightbox__prev svg, .lightbox__next svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .lightbox__prev, .lightbox__next { display: none; }
  .lightbox__close { top: -52px; right: 0; }
}

/* ---------------------------------------------------------------------- */
/* 18. SAFETY                                                              */
/* ---------------------------------------------------------------------- */
.safety__grid { display: grid; gap: 2.5rem; }
.safety__list { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.safety-item { display: flex; gap: 1rem; }
.safety-item .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.safety-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.safety-item p { font-size: 0.9rem; margin: 0; }
.safety__callout {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.safety__callout svg { width: 46px; height: 46px; stroke: var(--strike-orange); flex-shrink: 0; }
.safety__callout h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.safety__callout p { margin: 0; font-size: 0.92rem; }

@media (min-width: 720px) {
  .safety__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .safety__grid { grid-template-columns: 1.4fr 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 19. REVIEWS                                                             */
/* ---------------------------------------------------------------------- */
.review-card { display: flex; flex-direction: column; }
.review-card__stars { display: flex; gap: 0.2rem; margin-bottom: 1.1rem; }
.review-card__stars svg { width: 17px; height: 17px; fill: var(--strike-orange); stroke: none; }
.review-card__quote { font-size: 0.98rem; color: var(--paper); flex-grow: 1; margin-bottom: 1.5rem; }
.review-card__author { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.review-card__avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--grad-brand);
  color: var(--void-deep);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.review-card__author strong { display: block; font-size: 0.92rem; }
.review-card__author span { font-size: 0.8rem; color: var(--fog-dim); }

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.reviews__summary-score { font-family: var(--font-display); font-size: 2.4rem; color: var(--strike-orange); }
.reviews__summary-stars { display: flex; gap: 0.25rem; }
.reviews__summary-stars svg { width: 20px; height: 20px; fill: var(--strike-orange); stroke: none; }
.reviews__summary-text { font-size: 0.9rem; color: var(--fog); }

/* ---------------------------------------------------------------------- */
/* 20. FAQ                                                                 */
/* ---------------------------------------------------------------------- */
.faq__list { display: flex; flex-direction: column; gap: 0.9rem; max-width: 860px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}
.faq-item__q svg {
  width: 20px; height: 20px;
  stroke: var(--strike-blue);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a p {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.94rem;
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* 21. BOOKING                                                             */
/* ---------------------------------------------------------------------- */
.booking { position: relative; }
.booking__grid {
  display: grid;
  gap: 2.5rem;
}
.booking-form { display: flex; flex-direction: column; gap: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.35rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fog);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  padding: 0.9rem 1rem;
  color: var(--paper);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--fog-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--strike-blue);
  background: rgba(0,212,255,0.04);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
  border-color: var(--strike-orange);
}
.form-group__error {
  font-size: 0.78rem;
  color: var(--strike-orange);
  display: none;
}
.form-group.has-error .form-group__error { display: block; }
.form__consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--fog); }
.form__consent input { margin-top: 4px; accent-color: var(--strike-blue); }

.form__status {
  display: none;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.06);
}
.form__status.is-visible { display: flex; }
.form__status svg { width: 24px; height: 24px; stroke: var(--strike-blue); flex-shrink: 0; }
.form__status strong { display: block; margin-bottom: 0.2rem; }
.form__status p { margin: 0; font-size: 0.9rem; }

.booking__info { display: flex; flex-direction: column; gap: 1.5rem; }
.booking__info-item { display: flex; gap: 1rem; }
.booking__info-item .icon-tile { margin-bottom: 0; flex-shrink: 0; width: 46px; height: 46px; }
.booking__info-item .icon-tile svg { width: 22px; height: 22px; }
.booking__info-item h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.booking__info-item p { font-size: 0.9rem; margin: 0; }
.booking__hours { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.25rem; }
.booking__hours div { display: flex; justify-content: space-between; font-size: 0.88rem; }
.booking__hours span:first-child { color: var(--fog); }
.booking__hours span:last-child { color: var(--paper); font-weight: 500; }
.booking__map { margin-top: 0.5rem; }
.booking__map-frame {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

@media (min-width: 1060px) {
  .booking__grid { grid-template-columns: 1.3fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------- */
/* 22. FOOTER                                                              */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--void-deep);
  border-top: 1px solid var(--line);
  padding-top: 4.5rem;
}
.footer__grid {
  display: grid;
  gap: 2.75rem;
  padding-bottom: 3rem;
}
.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__brand-logo svg { width: 34px; height: 34px; }
.footer__tagline { font-size: 0.92rem; max-width: 32ch; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { border-color: var(--strike-blue); color: var(--strike-blue); }

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { font-size: 0.92rem; color: var(--fog); transition: color var(--dur-fast); }
.footer__links a:hover { color: var(--strike-blue); }

.footer__contact { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__contact li { display: flex; gap: 0.65rem; font-size: 0.9rem; color: var(--fog); align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; stroke: var(--strike-orange); flex-shrink: 0; margin-top: 2px; }

.footer__newsletter { margin-top: 1.5rem; }
.footer__newsletter form { display: flex; margin-top: 0.75rem; }
.footer__newsletter input {
  flex-grow: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-right: none;
  padding: 0.75rem 1rem;
  color: var(--paper);
  min-width: 0;
}
.footer__newsletter button {
  background: var(--strike-blue);
  color: var(--void-deep);
  padding: 0 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.footer__newsletter-msg { font-size: 0.8rem; color: var(--strike-blue); margin-top: 0.6rem; display: none; }
.footer__newsletter-msg.is-visible { display: block; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--fog-dim);
}
.footer__bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__bottom-links a:hover { color: var(--strike-blue); }

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .footer__grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------------------------------------------------------------------- */
/* 23. LEGAL PAGES                                                         */
/* ---------------------------------------------------------------------- */
.legal-hero {
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(0,212,255,0.06), transparent 70%);
}
.legal-hero__updated { font-size: 0.88rem; color: var(--fog-dim); margin-top: 1rem; }
.legal {
  padding-block: 1rem 5rem;
}
.legal__content { max-width: 780px; }
.legal__content h2 {
  font-size: 1.4rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.legal__content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal__content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.6rem; }
.legal__content p { margin-bottom: 1rem; font-size: 0.98rem; }
.legal__content ul { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.legal__content ul li { position: relative; padding-left: 1.35rem; font-size: 0.96rem; color: var(--fog); }
.legal__content ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--strike-blue);
}
.legal__content a { color: var(--strike-blue); text-decoration: underline; text-underline-offset: 2px; }
.legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  margin-bottom: 2.5rem;
}
.legal__toc a { font-size: 0.88rem; color: var(--fog); }
.legal__toc a:hover { color: var(--strike-blue); }

/* ---------------------------------------------------------------------- */
/* 24. MISC WIDGETS                                                        */
/* ---------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  color: var(--void-deep);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--glow-blue);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 22px; height: 22px; transform: rotate(180deg); }

.cta-band {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5rem);
  text-align: center;
  background: linear-gradient(120deg, rgba(0,212,255,0.08), rgba(255,107,26,0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.cta-band__lede { color: var(--fog); max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------------------------------------------------------------------- */
/* 25. ANIMATIONS                                                          */
/* ---------------------------------------------------------------------- */
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
@keyframes scan {
  0% { top: 8%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 92%; opacity: 0; }
}

/* ---------------------------------------------------------------------- */
/* 26. RESPONSIVE — global container breathing room on larger screens     */
/* ---------------------------------------------------------------------- */
@media (min-width: 1440px) {
  :root { --container-pad: 2.5rem; }
}
