/* Operation Freedom — Matt's Outback Paintball */

:root {
  --bg: #1a1d21;
  --surface: #2d3339;
  --surface-raised: #363d45;
  --red: #b22234;
  --red-bright: #d42b3f;
  --navy: #1b2a4a;
  --od-green: #4b5320;
  --text: #f2f0eb;
  --text-muted: #a8adb5;
  --border: rgba(242, 240, 235, 0.12);
  --border-accent: rgba(178, 34, 52, 0.4);

  --font-display: "Bebas Neue", "Anton", sans-serif;
  --font-body: "Barlow", "Inter", system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --sticky-cta-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Star-field texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 80px 120px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 160px 60px, #fff, transparent),
    radial-gradient(1px 1px at 240px 180px, #fff, transparent),
    radial-gradient(1px 1px at 320px 40px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 400px 140px, #fff, transparent);
  background-size: 420px 200px;
}

/* Patriotic accent bar */
.patriot-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 33.33%, var(--text) 33.33% 66.66%, var(--red) 66.66%);
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "★";
  font-size: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 29, 33, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(178, 34, 52, 0.35);
}

.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 6px 24px rgba(178, 34, 52, 0.5);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 0.5rem;
}

.btn-ghost:hover { color: var(--text); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.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);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 0.85rem 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 79%;
  animation: hero-ken-burns 28s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.55;
}

@keyframes hero-ken-burns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.07) translate(-1.2%, -0.8%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 29, 33, 0.5) 0%, rgba(26, 29, 33, 0.25) 42%, rgba(26, 29, 33, 0.9) 100%),
    linear-gradient(90deg, rgba(27, 42, 74, 0.55) 0%, rgba(27, 42, 74, 0.2) 45%, transparent 70%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 80%, rgba(27, 42, 74, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 6rem;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(27, 42, 74, 0.7);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 0 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Ticker */
.ticker {
  background: var(--navy);
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.ticker-item.sep { color: var(--red); }

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

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

section.alt-bg { background: var(--surface); }

.intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Feature cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

section.alt-bg .feature-card { background: var(--surface-raised); }

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-section { padding-bottom: 3rem; }

.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all 0.15s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--text);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.price-grid {
  display: grid;
  gap: 1.25rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--red);
  position: relative;
}

.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  background: var(--red);
  border-radius: var(--radius);
}

.price-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.price-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.price-card:hover .price-card-img img { transform: scale(1.04); }

.price-card-body { padding: 1.25rem; }

.price-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.walkon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.walkon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.walkon-card .price-tag { font-size: 2.5rem; }

/* Games list */
.games-split {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.game-tag {
  padding: 0.5rem 1rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-strip img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Reviews */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 2rem auto 0;
}

.review-scores {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.review-score {
  text-align: center;
}

.review-score strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
}

.review-score span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.review-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.review-badges img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(1) brightness(1.4);
  transition: opacity 0.2s;
}

.review-badges img:hover { opacity: 1; }

/* Services */
.services-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.prose {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

/* Package cards */
.package-grid {
  display: grid;
  gap: 1.25rem;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.package-card.featured {
  border-color: var(--red);
}

.package-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.package-includes li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.package-includes li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.55rem;
  top: 0.45rem;
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(27, 42, 74, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.02); }

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  transition: transform 0.2s;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* Location & hours */
.info-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--red);
}

.info-card p,
.info-card li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li { margin-bottom: 0.5rem; }

.info-card a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-card a:hover { color: var(--red); }

.rules-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.rules-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--red);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.book-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.book-quick {
  text-align: center;
}

.book-layout.phone-only-mode {
  grid-template-columns: 1fr;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.booking-phone-only {
  background: rgba(26, 29, 33, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.booking-phone-only-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-phone-only .btn {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  font-size: 1rem;
}

.booking-phone-only-number {
  margin: 1rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.book-weekend-banner {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(34, 139, 34, 0.12);
  border: 1px solid rgba(34, 139, 34, 0.35);
  border-radius: var(--radius-sm);
  color: #9fd89f;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: left;
}

.weekend-play-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.weekend-play-toggle input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.weekend-play-notice {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(34, 139, 34, 0.12);
  border: 1px solid rgba(34, 139, 34, 0.35);
  border-radius: var(--radius-sm);
  color: #9fd89f;
  font-size: 0.9rem;
}

.weekend-play-notice p {
  margin: 0 0 0.5rem;
}

.weekend-play-notice p:last-child {
  margin-bottom: 0;
}

.captcha-field {
  margin: 0.65rem 0 0;
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
}

.captcha-question {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
}

.captcha-row .captcha-input,
.captcha-row input[name="captcha_answer"] {
  flex: 0 0 auto;
  width: 4.5rem;
  padding: 0.5rem 0.55rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  text-align: center;
}

.captcha-refresh {
  flex-shrink: 0;
  padding: 0.2rem 0.35rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
}

.captcha-refresh:hover {
  opacity: 1;
  color: var(--text);
}

.booking-form,
.newsletter-form {
  background: rgba(26, 29, 33, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(178, 34, 52, 0.2);
}

.booking-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-message.success {
  background: rgba(34, 139, 34, 0.15);
  border: 1px solid rgba(34, 139, 34, 0.4);
  color: #7dcea0;
}

.form-message.error {
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #f1948a;
}

.newsletter-band {
  text-align: center;
}

.newsletter-form .section-subtitle {
  margin: 0 auto 1.5rem;
}

.newsletter-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-row input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
}

.newsletter-row .captcha-mount {
  flex-shrink: 0;
}

.newsletter-row .captcha-field--inline {
  margin: 0;
}

.newsletter-row .captcha-row--inline {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.35rem;
}

.newsletter-row .captcha-row--inline .captcha-question {
  font-size: 0.8rem;
  white-space: nowrap;
}

.newsletter-row .captcha-row--inline .captcha-input,
.newsletter-row .captcha-row--inline input[name="captcha_answer"] {
  width: 3.25rem;
  padding: 0.55rem 0.35rem;
}

.newsletter-row input:focus {
  outline: none;
  border-color: var(--red);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg) 50%, rgba(178, 34, 52, 0.15) 100%);
  border-block: 1px solid var(--border);
  text-align: center;
}

.cta-band .section-title { max-width: none; }

.cta-band p {
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto 2rem;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 6rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
}

.footer-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-brand .footer-cta-stack {
  margin-top: 1rem;
  margin-bottom: 0;
}

.footer-brand .footer-ops-btn,
.footer-brand .footer-admin-btn {
  margin: 0;
}

.footer-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-ops-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 0 1.25rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--navy) 0%, #243a5e 55%, rgba(178, 34, 52, 0.22) 100%);
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 4px 18px rgba(27, 42, 74, 0.45);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.footer-ops-btn:hover {
  color: var(--text);
  border-color: rgba(178, 34, 52, 0.65);
  box-shadow: 0 6px 24px rgba(178, 34, 52, 0.35);
  transform: translateY(-1px);
}

.footer-ops-btn-text {
  flex: 1;
}

.footer-ops-btn-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  opacity: 0.85;
  transition: transform 0.15s;
}

.footer-ops-btn:hover .footer-ops-btn-arrow {
  transform: translateX(3px);
}

.footer-ops-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-ops-wrap .footer-cta-stack {
  margin-top: 0;
  width: 100%;
  max-width: 18rem;
  align-items: stretch;
}

.footer-admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.6rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}

.footer-admin-btn:hover {
  color: var(--text);
  border-color: rgba(178, 34, 52, 0.5);
  background: rgba(178, 34, 52, 0.1);
  transform: translateY(-1px);
}

.footer-admin-btn-text {
  flex: 1;
}

.footer-admin-btn-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  opacity: 0.8;
  transition: transform 0.15s;
}

.footer-admin-btn:hover .footer-admin-btn-arrow {
  transform: translateX(3px);
}

.footer-links .footer-ops-btn {
  margin-bottom: 1rem;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}

.social-links a:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.designer-credit {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.designer-credit-main {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.designer-credit-main a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.designer-credit-main a:hover {
  color: var(--red);
}

.designer-credit-tag {
  margin: 0.45rem 0 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--sticky-cta-h);
  background: rgba(26, 29, 33, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

.sticky-cta .btn { flex: 1; }

/* Responsive */
@media (min-width: 640px) {
  .walkon-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .book-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }

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

  .newsletter-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    max-width: 42rem;
  }

  .newsletter-row input[type="email"] {
    min-width: 0;
  }

  .newsletter-row .captcha-row--inline {
    justify-content: flex-start;
  }

  .newsletter-row .btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .booking-form .btn {
    width: auto;
  }

  .nav-toggle { display: none; }
  .nav-desktop { display: flex; }
  .btn-header-cta { display: inline-flex; }

  .intro-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .games-split { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

  .sticky-cta { display: none !important; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: repeat(4, 1fr); }
  .walkon-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .btn-header-cta { display: none; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: calc(var(--sticky-cta-h) + 2rem); }
  .hero-content { padding-bottom: 4rem; }
}

/* Gallery page */
.gallery-page {
  padding-top: 5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.gallery-tag-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery-tag-pill {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.gallery-tag-pill:hover {
  color: var(--text);
  border-color: var(--border-accent);
}

.gallery-tag-pill.is-active {
  color: var(--text);
  background: rgba(178, 34, 52, 0.18);
  border-color: var(--border-accent);
}

.gallery-sort-form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.gallery-sort-form label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-sort-form select {
  min-width: 160px;
  padding: 0.55rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.gallery-count {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-card-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  text-align: left;
  background: rgba(26, 29, 33, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card-btn:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.gallery-card-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.gallery-card-media {
  position: relative;
  overflow: hidden;
}

.gallery-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card-btn:hover .gallery-card-media img {
  transform: scale(1.03);
}

.gallery-card-tags {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: calc(100% - 1.3rem);
  pointer-events: none;
}

.gallery-card-tags .game-tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  background: rgba(27, 42, 74, 0.88);
  backdrop-filter: blur(4px);
}

.gallery-tag-more {
  background: rgba(178, 34, 52, 0.85) !important;
}

.gallery-card-btn figcaption {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gallery-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.gallery-lightbox.hidden {
  display: none !important;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.gallery-lightbox-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4.5rem 1rem;
  min-height: 0;
}

.gallery-lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(26, 29, 33, 0.75);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(178, 34, 52, 0.35);
  border-color: var(--border-accent);
}

.gallery-lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.gallery-lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev.is-hidden,
.gallery-lightbox-next.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-lightbox-meta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 1rem 1.5rem 1.25rem;
  background: rgba(26, 29, 33, 0.95);
  border-top: 1px solid var(--border);
}

.gallery-lightbox-meta-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.gallery-lightbox-meta-top strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.gallery-lightbox-counter {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.gallery-lightbox-caption {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.gallery-lightbox-caption.hidden {
  display: none;
}

.gallery-lightbox-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

@media (max-width: 640px) {
  .gallery-lightbox-stage {
    padding: 3.5rem 1rem 0.5rem;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }

  .gallery-lightbox-prev {
    left: 0.5rem;
  }

  .gallery-lightbox-next {
    right: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card-btn,
  .gallery-card-media img {
    transition: none;
  }

  .gallery-card-btn:hover {
    transform: none;
  }

  .gallery-card-btn:hover .gallery-card-media img {
    transform: none;
  }
}

.gallery-strip a {
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-strip a:hover {
  opacity: 0.85;
}

/* --- Consent banner --- */

.mob-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(11, 14, 19, 0.92) 0%, rgba(11, 14, 19, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  animation: mobConsentSlideUp 0.35s ease;
}

.mob-consent-banner.mob-consent-hidden {
  animation: mobConsentSlideDown 0.35s ease forwards;
}

@keyframes mobConsentSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes mobConsentSlideDown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

.mob-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mob-consent-copy {
  flex: 1;
  min-width: 260px;
}

.mob-consent-copy strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.mob-consent-copy p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 640px;
}

.mob-consent-copy a {
  color: var(--accent);
  text-decoration: underline;
}

.mob-consent-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mob-consent-accept {
  display: block;
  width: 100%;
  min-width: 220px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 8, 8, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.mob-consent-accept:hover {
  background: #e00606;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 8, 8, 0.45);
}

.mob-consent-decline {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
  color: rgba(171, 171, 171, 0.65);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mob-consent-decline:hover {
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .mob-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .mob-consent-actions {
    width: 100%;
  }

  .mob-consent-accept {
    min-width: unset;
  }
}

/* --- Legal / privacy page --- */

.legal-page {
  padding-top: 5rem;
}

.legal-content {
  max-width: 720px;
  padding: 3rem 0 4rem;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-back {
  margin-top: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }

  .hero-media {
    transform: none !important;
  }

  .hero-fx {
    opacity: 0.35;
  }

  .mob-consent-banner {
    animation: none;
  }
}