/* ============================================================
   UCZ Paintball — Dark / Orange Design System
   ============================================================ */

:root {
  --bg-0: #070708;
  --bg-1: #0d0d10;
  --bg-2: #141418;
  --bg-3: #1c1c22;
  --bg-card: rgba(24, 24, 30, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --orange: #ff6a00;
  --orange-bright: #ff8533;
  --orange-deep: #e05500;
  --orange-glow: rgba(255, 106, 0, 0.35);
  --orange-soft: rgba(255, 106, 0, 0.12);
  --surface-glow: radial-gradient(
      ellipse 80% 120% at 10% 50%,
      rgba(255, 106, 0, 0.22),
      transparent 55%
    ),
    linear-gradient(135deg, #1a120c 0%, #12121a 50%, #0e0e14 100%);
  --surface-glow-border: rgba(255, 106, 0, 0.25);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --success: #22c55e;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 78px;
  --header-h-top: 120px; /* taller bar while logo is large at page top */
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ---------- Utilities ---------- */

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  line-height: 1.7;
}

.text-orange {
  color: var(--orange);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.grid-activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s,
    box-shadow 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px var(--orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(255, 106, 0, 0.5);
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange) 100%);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease),
    height 0.45s var(--ease);
}

/* Slightly taller bar at the top of the page while the logo is large */
.site-header:not(.scrolled) {
  height: var(--header-h-top);
}

.site-header.scrolled {
  height: var(--header-h);
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}

.logo img {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 0 16px var(--orange-glow));
  transition:
    height 0.45s var(--ease),
    filter 0.35s var(--ease);
  will-change: height;
}

.site-header.scrolled .logo img {
  height: 58px; /* ~20% larger than previous 48px */
  filter: drop-shadow(0 0 10px var(--orange-glow));
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .logo img {
    transition: none;
  }

  .site-header:not(.scrolled) {
    height: var(--header-h);
  }

  .logo img,
  .site-header.scrolled .logo img {
    height: 58px;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .logo img,
  .site-header.scrolled .logo img {
    height: 48px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav a.active {
  color: var(--orange);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  background: none;
  border: none;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown > button:hover,
.nav-dropdown.open > button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown > button svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open > button svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dropdown-menu a:hover {
  background: var(--orange-soft);
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h-top) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.55) 0%, rgba(7, 7, 8, 0.25) 35%, rgba(7, 7, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.75) 0%, rgba(7, 7, 8, 0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  color: var(--orange);
  text-shadow: 0 0 40px var(--orange-glow);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Page hero (inner pages) */

.page-hero {
  position: relative;
  padding: calc(var(--header-h-top) + 3.5rem) 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.7) 0%, var(--bg-0) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  opacity: 0.4;
}

/* ---------- Cards ---------- */

.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-glow);
  border: 1px solid var(--surface-glow-border);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 106, 0, 0.15);
}

.activity-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.activity-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.activity-card:hover .activity-card-media img {
  transform: scale(1.06);
}

.activity-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 8, 0.85) 100%);
}

.activity-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--orange-soft);
  color: var(--orange-bright);
  border: 1px solid rgba(255, 106, 0, 0.25);
}

.tag-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-color: var(--border);
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.activity-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
  margin-top: 0.35rem;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.activity-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Feature / info cards */

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.feature-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 1.35rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Price cards */

.price-card {
  background: var(--surface-glow);
  border: 1px solid var(--surface-glow-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.price-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.2), 0 20px 50px rgba(255, 106, 0, 0.12);
}

.price-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 2.5rem;
  transform: rotate(35deg);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--orange);
}

.price-amount small {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

.price-note {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: -0.5rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  margin: 0.5rem 0;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}

/* Venue cards */

.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--border);
}

.venue-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.venue-card:hover img {
  transform: scale(1.05);
}

.venue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.15) 0%, rgba(7, 7, 8, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.venue-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.venue-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 28rem;
}

/* CTA band */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-glow);
  border: 1px solid var(--surface-glow-border);
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 28rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Split content */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

/* Keep body copy as one flex unit so <strong>/<code> don't split the row */
.check-list li > * {
  min-width: 0;
  flex: 1;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 0.12em;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6a00'%3E%3Cpath d='M6.5 11.5 3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}

/* Mission / map tiles */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mission-tile {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.25s;
}

.mission-tile:hover {
  border-color: rgba(255, 106, 0, 0.35);
}

.mission-tile h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.mission-tile p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Forms / notes */

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.contact-aside {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

/* Contact info */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.25);
  display: grid;
  place-items: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-item a,
.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--orange);
}

/* Extras table */

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.extra-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.extra-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--orange);
}

.extra-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.extra-card li:last-child {
  border-bottom: none;
}

.extra-card li strong {
  color: var(--text);
  font-weight: 700;
}

/* Footer */

.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 18rem;
  margin-bottom: 1rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Floating call bar (mobile) */

.float-call {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px var(--orange-glow);
  align-items: center;
  gap: 0.5rem;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background accents */

.bg-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

/* Age chip strip */

.age-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.age-chip strong {
  color: var(--orange);
}

/* Compact age / policy hint card (inline in split content) */

.hint-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 1.15rem 0 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.hint-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(7, 7, 8, 0.35);
  border: 1px solid rgba(255, 106, 0, 0.25);
}

.hint-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.hint-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* FAQ accordion */

.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] {
  border-color: rgba(255, 106, 0, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff6a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--orange-bright);
  background: rgba(255, 106, 0, 0.04);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-answer a:hover {
  color: var(--orange-bright);
}

.faq-answer strong {
  color: var(--text);
  font-weight: 700;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .split,
  .split.reverse,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 7, 8, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a,
  .nav-dropdown > button {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--bg-1);
    margin-top: 0.25rem;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .float-call {
    display: inline-flex;
  }
}

/* ---------- Portal choice cards (e.g. Airsoft) ---------- */

.portal-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.portal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-glow);
  border: 1px solid var(--surface-glow-border);
  min-height: 280px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
}

.portal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 106, 0, 0.15);
}

.portal-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.portal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 0.6s var(--ease), opacity 0.35s;
}

.portal-card:hover .portal-card-media img {
  transform: scale(1.05);
  opacity: 0.45;
}

.portal-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.35) 0%, rgba(7, 7, 8, 0.92) 100%);
}

.portal-card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  gap: 0.55rem;
}

.portal-card-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.portal-card-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 28rem;
}

.portal-card .card-link {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .portal-choices {
    grid-template-columns: 1fr;
  }
}

/* ---------- Wizard ---------- */

.wizard-shell {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.wizard-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  z-index: 2;
}

.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.wizard-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  border-radius: 999px;
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 12px var(--orange-glow);
}

.wizard-progress-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.wizard-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  min-height: 320px;
}

.wizard-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.wizard-step-lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.wizard-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(7, 7, 8, 0.45);
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease),
    box-shadow 0.2s;
  position: relative;
}

.wizard-option:hover {
  border-color: rgba(255, 106, 0, 0.4);
  background: var(--orange-soft);
  transform: translateY(-2px);
}

.wizard-option.selected {
  border-color: rgba(255, 106, 0, 0.7);
  background: rgba(255, 106, 0, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.25), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.wizard-option-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.wizard-option-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
  padding-right: 1.25rem;
}

.wizard-option-label {
  font-weight: 700;
  font-size: 1rem;
}

.wizard-option-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.wizard-option-hint {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.wizard-option-check {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.wizard-option.selected .wizard-option-check {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.wizard-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.wizard-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-left: auto;
}

.wizard-result-inner {
  animation: wizardIn 0.45s var(--ease);
}

@keyframes wizardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-result-badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wizard-result-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.wizard-result-title span {
  color: var(--orange);
}

.wizard-result-lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.wizard-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.wizard-match-card {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wizard-match-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.wizard-match-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-match-media .tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
}

.wizard-match-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.wizard-match-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
}

.wizard-match-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.wizard-match-price {
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 0.95rem !important;
}

.wizard-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.wizard-why,
.wizard-alts {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.wizard-why h4,
.wizard-alts h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.wizard-why ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wizard-why li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
}

.wizard-why li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.wizard-why li strong {
  color: var(--text);
}

.wizard-alts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.wizard-alt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-0);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.wizard-alt-chip:hover {
  border-color: rgba(255, 106, 0, 0.45);
  color: var(--text);
}

.wizard-alt-chip strong {
  color: var(--orange);
  font-weight: 700;
}

.wizard-result-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.wizard-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .wizard-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .logo img {
    height: 76px;
  }

  .site-header.scrolled .logo img {
    height: 48px; /* ~20% larger than previous 40px */
  }

  .site-header:not(.scrolled) {
    height: 100px;
  }

  /* Match mobile large header for page heroes */
  :root {
    --header-h-top: 100px;
  }

  .wizard-progress-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-footer-actions {
    margin-left: 0;
  }

  .wizard-footer-actions .btn,
  .wizard-footer > .btn {
    width: 100%;
  }
}

/* ============================================================
   Venue-aware booking: in-context pickers, package switchers, modal
   (No always-on fixed "Playing at" bar.)
   ============================================================ */

body.venue-modal-open {
  overflow: hidden;
}

/* In-flow section picker — only above package grids, scrolls away */
.venue-section-wrap {
  margin-bottom: 1.25rem;
}

.venue-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.venue-section__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: min(100%, 12rem);
}

.venue-section__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-section__hint {
  font-size: 0.86rem;
  color: var(--text-dim);
}

.venue-section--set .venue-section__hint {
  color: var(--text-muted);
}

.venue-section__picker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.2rem;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.venue-section__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.15;
  transition: background 0.2s var(--ease), color 0.2s, box-shadow 0.2s;
}

.venue-section__btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.venue-section__btn.is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.venue-section__name {
  font-size: 0.9rem;
  font-weight: 700;
}

.venue-section__meta {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.88;
}

.venue-section__btn.is-active .venue-section__meta {
  opacity: 0.95;
}

@media (max-width: 560px) {
  .venue-section {
    flex-direction: column;
    align-items: stretch;
  }

  .venue-section__picker {
    width: 100%;
  }

  .venue-section__btn {
    flex: 1;
    align-items: center;
  }
}

/* Package card venue UI */

.venue-avail-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
  margin-top: -0.35rem;
}

.venue-avail-badge--both {
  background: var(--orange-soft);
  color: var(--orange-bright);
  border-color: rgba(255, 106, 0, 0.28);
}

.venue-avail-badge--single {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.28);
}

a.is-venue-unavailable,
a.is-venue-unavailable.btn,
.btn.is-venue-unavailable {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.25);
  box-shadow: none;
}

.price-card--unavailable-venue {
  opacity: 0.92;
}

.price-card--unavailable-venue .btn {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.25);
  box-shadow: none;
}

/* Venue choice modal */

.venue-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.venue-modal[hidden] {
  display: none !important;
}

.venue-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
}

.venue-modal__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: linear-gradient(165deg, #16161c 0%, #0c0c10 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 106, 0, 0.08);
}

.venue-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s;
}

.venue-modal__close:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.venue-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.5rem;
}

.venue-modal__lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.venue-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.venue-modal__card {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.venue-modal__card:hover,
.venue-modal__card:focus-visible {
  border-color: rgba(255, 106, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  outline: none;
}

.venue-modal__card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-0);
}

.venue-modal__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.venue-modal__card:hover .venue-modal__card-media img {
  transform: scale(1.05);
}

.venue-modal__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1.05rem;
}

.venue-modal__card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.venue-modal__card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.venue-modal__card-cta {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-bright);
}

.venue-modal__foot {
  margin-top: 1.15rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.venue-modal__foot a {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 560px) {
  .venue-modal__grid {
    grid-template-columns: 1fr;
  }

  .venue-modal__panel {
    padding: 1.5rem 1.15rem 1.25rem;
  }
}

/* Keep header above modal/overlays */
.site-header {
  z-index: 100;
}

/* Resources downloads */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.resource-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.resource-item:hover {
  border-color: var(--surface-glow-border);
  background: rgba(28, 28, 34, 0.95);
}

.resource-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.resource-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 36rem;
  line-height: 1.45;
}

.resource-item .btn {
  flex-shrink: 0;
}

.resource-group {
  margin-bottom: 2.75rem;
}

.resource-group:last-child {
  margin-bottom: 0;
}

/* ---------- Own-gunner / walk-on hub ---------- */

#overview,
#calendar,
#rules,
#loadouts,
#private-hire,
#resources {
  scroll-margin-top: calc(var(--header-h) + 3.25rem);
}

.page-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.page-jump-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  padding: 0.7rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-jump-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 0.35rem;
  white-space: nowrap;
}

.page-jump a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.page-jump a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.page-jump a.active,
.page-jump a[aria-current="location"] {
  color: #fff;
  border-color: rgba(255, 106, 0, 0.45);
  background: var(--orange-soft);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.12);
}

.calendar-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.25rem;
  background: var(--surface-glow);
  border: 1px solid var(--surface-glow-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.calendar-panel-main h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.calendar-panel-main p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.calendar-panel-aside {
  background: rgba(7, 7, 8, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.calendar-panel-aside h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  counter-reset: walkon-step;
}

.steps-list li {
  counter-increment: walkon-step;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}

.steps-list li::before {
  content: counter(walkon-step);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
}

.aside-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

.quick-rules {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.75rem;
}

.quick-rules h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.quick-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem 1rem;
}

.quick-rules-grid li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.quick-rules-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.rules-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rules-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.rules-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--orange);
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rules-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.7);
}

.rules-list li strong {
  color: var(--text);
  font-weight: 700;
}

.rules-footnote {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .calendar-panel {
    grid-template-columns: 1fr;
  }

  .quick-rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .quick-rules-grid {
    grid-template-columns: 1fr;
  }

  .page-jump-label {
    width: 100%;
    margin-bottom: 0.15rem;
  }
}

/* ============================================================
   Server error pages (404, 403, 500, 503)
   ============================================================ */

.error-main {
  min-height: calc(100vh - var(--header-h-top));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h-top) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.error-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(255, 106, 0, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 106, 0, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.error-panel {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 18vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-shadow: 0 0 60px var(--orange-glow);
  margin-bottom: 0.35rem;
  user-select: none;
}

.error-panel .section-label {
  justify-content: center;
  margin-bottom: 0.65rem;
}

.error-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.error-panel > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.error-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.error-links a:hover {
  color: var(--orange);
}

.error-meta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.error-meta a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-meta a:hover {
  color: var(--orange);
}

@media (max-width: 560px) {
  .error-actions .btn {
    width: 100%;
  }
}
