/* ==========================================================================
   COMPONENTS.CSS — Nav, footer, buttons, cards, forms, reusable components
   Battlezone Laser Tag — Website Redesign 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

/* Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* Chamfered corner */
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.btn:active {
  transform: translateY(1px);
}

/* Red primary */
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(204, 32, 39, 0);
}

.btn-red:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

/* Ghost (light) */
.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245, 243, 238, 0.4);
  clip-path: none;
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  border-color: var(--text-light);
  background: rgba(245, 243, 238, 0.08);
  transform: translateY(-2px);
}

/* Ghost (dark) */
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(26, 26, 26, 0.4);
  clip-path: none;
  border-radius: var(--radius-sm);
}

.btn-ghost-dark:hover {
  border-color: var(--text-dark);
  background: rgba(26, 26, 26, 0.06);
  transform: translateY(-2px);
}

/* Ochre */
.btn-ochre {
  background: var(--ochre);
  color: var(--black);
  font-weight: 700;
}

.btn-ochre:hover {
  background: var(--ochre-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184, 150, 90, 0.45);
}

/* Large variant */
.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 0.25em;
}

/* Small variant */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Icon arrow */
.btn-arrow::after {
  content: '→';
  margin-left: var(--sp-1);
  transition: transform var(--t-fast) var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.site-nav.scrolled {
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--grey-800);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  z-index: var(--z-popover);
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--red);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-200);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--t-base) var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-light);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-phone {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-200);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.nav-phone:hover {
  color: var(--text-light);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  z-index: var(--z-popover);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* No justify-content: center — flex-center + overflow clips the top and
     makes scrollTop = 0 unreachable. Use inner margin: auto instead. */
  padding-top: var(--nav-h);    /* clear the fixed nav bar */
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow) var(--ease);
}

/* Inner wrapper centres content when viewport has room; when content
   overflows (small phones / URL bar visible) it falls back to
   top-aligned scrollable layout — scrollTop = 0 always works. */
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  margin: auto;
  padding: var(--sp-6) var(--sp-4);
  width: 100%;
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
}

.nav-mobile-links a {
  font-family: var(--font-d);
  font-size: 40px;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.nav-mobile-links a:hover {
  color: var(--red);
}

.nav-mobile-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.nav-mobile-meta a {
  font-family: var(--font-s);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  text-decoration: none;
}

/* Floating mobile CTA */
.mobile-book-btn {
  display: none;
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-overlay);
  width: calc(100% - 48px);
  max-width: 340px;
  box-shadow: var(--shadow-red);
  animation: floatUp 0.5s var(--ease-out) forwards;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Event sub-page sticky bar */
.page-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--grey-900);
  border-top: 1px solid var(--grey-800);
  padding: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transform: translateY(100%);
  transition: transform var(--t-base) var(--ease);
}

.page-sticky-bar.visible {
  transform: translateY(0);
}

.page-sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-sticky-bar-name {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-200);
}

.page-sticky-bar-price {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--text-light);
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone.hide-mobile {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-book-btn {
    display: none;
  }

  .page-sticky-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Packages Mega Menu
   -------------------------------------------------------------------------- */

/*
  .has-dropdown stays position: static so the absolute mega-menu
  walks up to .site-nav (position: fixed) as its containing block,
  letting the panel span the full nav width.
*/
.has-dropdown {
  position: static;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  display: block;
  flex-shrink: 0;
  opacity: 0.45;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-fast) var(--ease);
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown:focus-within .dropdown-chevron,
.has-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}


/* ---- Mega-menu panel ---- */

.mega-menu {
  position: absolute;   /* relative to site-nav (position: fixed) */
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--z-popover);
  background: var(--grey-900);
  border-top: 1px solid var(--grey-800);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  /* hide: 120ms delay before starting to fade — cursor has time to reach the panel */
  transition: opacity 180ms var(--ease) 120ms,
              transform 180ms var(--ease) 120ms;
}

/* Invisible bridge: fills the gap between the nav link and the panel */
.mega-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu,
.has-dropdown.open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  /* show: no delay */
  transition: opacity 180ms var(--ease),
              transform 180ms var(--ease);
}

.mm-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-6);
}


/* ---- Header row ---- */

.mm-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--grey-800);
}

.mm-header::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.mm-header-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-600);
}


/* ---- Cards grid ---- */

.mm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}


/* ---- Individual card ---- */

.mm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black);
  position: relative;
  opacity: 1;   /* default visible; animation uses backwards fill for entrance */
  transition: border-color 200ms var(--ease),
              box-shadow    200ms var(--ease),
              transform     200ms var(--ease);
}

/* Staggered fade-in on open — only opacity animated to avoid hover-transform conflict */
@keyframes mmCardIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.has-dropdown:hover .mm-d1,
.has-dropdown:focus-within .mm-d1,
.has-dropdown.open .mm-d1 { animation: mmCardIn 280ms var(--ease-out) 100ms backwards; }

.has-dropdown:hover .mm-d2,
.has-dropdown:focus-within .mm-d2,
.has-dropdown.open .mm-d2 { animation: mmCardIn 280ms var(--ease-out) 160ms backwards; }

.has-dropdown:hover .mm-d3,
.has-dropdown:focus-within .mm-d3,
.has-dropdown.open .mm-d3 { animation: mmCardIn 280ms var(--ease-out) 220ms backwards; }

.has-dropdown:hover .mm-d4,
.has-dropdown:focus-within .mm-d4,
.has-dropdown.open .mm-d4 { animation: mmCardIn 280ms var(--ease-out) 280ms backwards; }

/* Hover: lift + glow */
.mm-card:hover {
  border-color: rgba(204, 32, 39, 0.55);
  box-shadow: var(--shadow-red-lg);
  transform: translateY(-3px);
}

/* Dim siblings when one card is hovered (tactical focus effect) */
.mm-grid:has(.mm-card:hover) .mm-card:not(:hover) {
  opacity: 0.72;
  filter: brightness(0.8);
  transition: opacity 200ms var(--ease),
              filter   200ms var(--ease),
              border-color 200ms var(--ease),
              box-shadow   200ms var(--ease),
              transform    200ms var(--ease);
}

/* Red top accent line — draws across on hover */
.mm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 300ms var(--ease-out);
  z-index: 3;
}

.mm-card:hover::before {
  width: 100%;
}


/* ---- Image placeholder ---- */

.mm-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mm-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 500ms var(--ease);
}

/* Subtle tactical grid overlay on image */
.mm-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 32, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 32, 39, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mm-card:hover .mm-img-bg {
  transform: scale(1.06);
}


/* Badge */
.mm-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 3;
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(15, 15, 15, 0.75);
  color: var(--grey-200);
  border: 1px solid var(--grey-700);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mm-badge.ochre {
  background: rgba(184, 150, 90, 0.15);
  color: var(--ochre);
  border-color: rgba(184, 150, 90, 0.45);
}

.mm-badge.red {
  background: rgba(204, 32, 39, 0.15);
  color: var(--red);
  border-color: rgba(204, 32, 39, 0.45);
}


/* ---- Card body ---- */

.mm-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.mm-title {
  font-family: var(--font-d);
  font-size: 22px;
  line-height: 1;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: color 150ms ease;
}

.mm-card:hover .mm-title {
  color: var(--white);
}

.mm-desc {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Specs row */
.mm-specs {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  margin-top: auto;
  border-top: 1px solid var(--grey-800);
}

.mm-spec {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.mm-price {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--red);
  line-height: 1;
  margin-left: auto;
}

/* CTA label */
.mm-cta {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
  padding-top: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 150ms ease, gap 150ms ease;
}

.mm-cta::after {
  content: '→';
  transition: transform 150ms ease;
}

.mm-card:hover .mm-cta {
  color: var(--red);
  gap: 8px;
}

.mm-card:hover .mm-cta::after {
  transform: translateX(3px);
}


/* ---- Mobile overlay — Packages group (simplified) ---- */

.nav-mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.nav-mobile-group-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.nav-mobile-subnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
}

.nav-mobile-subnav a {
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--grey-200);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.nav-mobile-subnav a:hover {
  color: var(--ochre);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  padding: var(--sp-10) 0 var(--sp-6);
  clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--grey-800);
  margin-bottom: var(--sp-6);
}

.footer-col-heading {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: var(--sp-5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer-logo-img {
  height: 32px;
}

.footer-logo-text {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--sp-5);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}

.footer-contact-label {
  font-family: var(--font-s);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.footer-contact-value {
  font-size: 15px;
  color: var(--grey-200);
}

.footer-contact-value a {
  color: var(--grey-200);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.footer-contact-value a:hover {
  color: var(--red);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: 15px;
  color: var(--grey-400);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

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

.footer-sisters {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--grey-800);
}

.footer-sisters-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: var(--sp-3);
}

.footer-sisters-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-sisters-list a {
  font-size: 14px;
  color: var(--grey-600);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.footer-sisters-list a:hover {
  color: var(--grey-400);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer-acknowledgement {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 600px;
  font-style: italic;
}

.footer-copyright {
  font-size: 13px;
  color: var(--grey-600);
  white-space: nowrap;
}

/* Footer brand / column variant (used on sub-pages) */
.footer-brand .footer-logo {
  display: block;
  margin-bottom: var(--sp-5);
}

.footer-address {
  font-size: 14px;
  color: var(--grey-600);
  margin-top: var(--sp-3);
  line-height: 1.5;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-links-col ul li a {
  font-size: 15px;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col ul li a:hover {
  color: var(--white);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-phone,
.footer-email {
  font-size: 15px;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 13px;
  color: var(--grey-600);
}

.footer-legal a {
  color: var(--grey-400);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
    padding-bottom: calc(var(--sp-9) + 36px);
  }
  .site-footer {
    clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
    margin-top: -36px;
  }
  .field-section {
    padding: var(--sp-8) 0;
  }
  .battlefield-section {
    padding: var(--sp-8) 0;
  }
  .cta-banner {
    padding-top: var(--sp-8);
  }
  .cta-banner-sub {
    flex-direction: column;
    gap: var(--sp-2);
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .field-section {
    padding: var(--sp-7) 0;
  }
  .battlefield-section {
    padding: var(--sp-7) 0;
  }
  .cta-banner {
    padding-top: var(--sp-7);
  }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-dark { /* on dark bg */ }

.card-light {
  background: var(--white);
  border-color: var(--grey-200);
}

.card-light:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(204, 32, 39, 0.12);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--grey-800);
  position: relative;
  overflow: hidden;
}

.card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.card-body {
  padding: var(--sp-6);
}

.card-tag {
  display: inline-block;
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}

.card-title {
  font-family: var(--font-d);
  font-size: 28px;
  line-height: 1;
  color: var(--text-light);
  margin-bottom: var(--sp-3);
}

.card-light .card-title {
  color: var(--text-dark);
}

.card-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.card-light .card-desc {
  color: var(--grey-400);
}

.card-price {
  font-family: var(--font-d);
  font-size: 40px;
  line-height: 1;
  color: var(--red);
  margin-bottom: var(--sp-2);
}

.card-price-note {
  font-family: var(--font-s);
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.08em;
}

.card-footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--grey-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-light .card-footer {
  border-top-color: var(--grey-200);
}

/* Package card (border-draw animation) */
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.6s var(--ease-out);
}

.pkg-card.animate::before,
.pkg-card:hover::before {
  width: 100%;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red-xl);
  border-color: rgba(204, 32, 39, 0.3);
}

.pkg-card-header {
  background: var(--grey-900);
  padding: var(--sp-5) var(--sp-6);
}

.pkg-card-title {
  font-family: var(--font-d);
  font-size: 32px;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pkg-card-price {
  font-family: var(--font-d);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}

.pkg-card-price-note {
  font-family: var(--font-s);
  font-size: 13px;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

.pkg-card-body {
  padding: var(--sp-5) var(--sp-6);
}

.pkg-card-body p {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.pkg-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.pkg-card-meta-item {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.pkg-card-footer {
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  border-top: 1px solid var(--grey-200);
}

/* --------------------------------------------------------------------------
   Inclusions list
   -------------------------------------------------------------------------- */
.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 15px;
  line-height: 1.5;
}

.inclusions-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--red-dim);
  border: 1px solid rgba(204,32,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-top: 2px;
}

.inclusions-list.ochre li::before {
  background: var(--ochre-dim);
  border-color: rgba(184,150,90,0.3);
  color: var(--ochre);
}

/* --------------------------------------------------------------------------
   Stats display
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--red);
  display: block;
}

.stat-number.ochre {
  color: var(--ochre);
}

.stat-label {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: var(--sp-2);
  display: block;
}

/* --------------------------------------------------------------------------
   Review cards
   -------------------------------------------------------------------------- */
.review-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.review-stars span {
  color: var(--ochre);
  font-size: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--grey-200);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 18px;
  color: var(--grey-400);
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.review-via {
  font-size: 13px;
  color: var(--grey-600);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sect-dark .faq-item,
.sect-dark-mid .faq-item {
  border-color: var(--grey-800);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}

.faq-question:hover {
  background: rgba(204, 32, 39, 0.04);
}

.sect-dark .faq-question:hover,
.sect-dark-mid .faq-question:hover {
  background: var(--grey-800);
}

.faq-q-text {
  font-family: var(--font-s);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.sect-dark .faq-q-text,
.sect-dark-mid .faq-q-text {
  color: var(--text-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid var(--grey-200);
  border-radius: 50%;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-base) var(--ease);
}

.sect-dark .faq-icon,
.sect-dark-mid .faq-icon {
  border-color: var(--grey-600);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--grey-400);
  border-radius: 2px;
  transition: background var(--t-fast) var(--ease),
              transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
  border-color: var(--red);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.8;
}

.sect-dark .faq-answer-inner,
.sect-dark-mid .faq-answer-inner {
  color: var(--grey-200);
}

.faq-answer-inner strong {
  color: var(--text-dark);
  font-weight: 600;
}

.sect-dark .faq-answer-inner strong,
.sect-dark-mid .faq-answer-inner strong {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Marquee / scrolling strip
   -------------------------------------------------------------------------- */
.marquee-track {
  overflow: hidden;
  padding: var(--sp-5) 0;
}

.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  white-space: nowrap;
}

.marquee-item::before {
  content: '◆';
  font-size: 8px;
  color: var(--red);
  flex-shrink: 0;
  margin-left: var(--sp-6);
  margin-right: var(--sp-6);
}

.marquee-item:first-child::before {
  display: none;
}

/* Review marquee variant */
.review-marquee .marquee-inner {
  animation-duration: 40s;
}

.review-marquee .marquee-item {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey-200);
  font-style: italic;
  max-width: 420px;
  white-space: normal;
  padding: var(--sp-3) 0;
}

/* --------------------------------------------------------------------------
   How It Works steps
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

.step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.step-number {
  font-family: var(--font-d);
  font-size: 64px;
  line-height: 1;
  color: var(--grey-200);
  transition: color var(--t-base) var(--ease);
}

.sect-dark .step-number,
.sect-dark-mid .step-number {
  color: var(--grey-800);
}

.step-item:hover .step-number {
  color: var(--red);
}

.step-title {
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--text-dark);
}

.sect-dark .step-title {
  color: var(--text-light);
}

.step-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.7;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

/* Mobile: skip video entirely, show static poster instead */
@media (max-width: 767px) {
  .hero-bg {
    background-image: url('../image/DSC03778.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero-bg-img {
    display: none;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.85) 0%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  color: var(--text-light);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-5);
}

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

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--grey-200);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--sp-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
  color: var(--ochre);
  font-size: 15px;
}

.hero-trust-text {
  font-family: var(--font-s);
  font-size: 14px;
  color: var(--grey-200);
  letter-spacing: 0.05em;
}

/* Hero — mobile */
@media (max-width: 768px) {
  .hero-content {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
  .hero-eyebrow {
    margin-bottom: var(--sp-3);
  }
  .hero-h1 {
    margin-bottom: var(--sp-4);
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: var(--sp-5);
  }
  .hero-ctas {
    margin-bottom: var(--sp-4);
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-5);
  }
  .hero-h1 {
    font-size: clamp(44px, 12vw, 72px);
    margin-bottom: var(--sp-3);
  }
  .hero-sub {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: var(--sp-4);
  }
  .hero-ctas {
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
  }
  .hero-trust-text {
    font-size: 13px;
  }
}

/* Sub-page hero — overridden by the full rule in the sub-page section below */

/* --------------------------------------------------------------------------
   Audience split
   -------------------------------------------------------------------------- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

@media (max-width: 768px) {
  .audience-split {
    grid-template-columns: 1fr;
  }
}

.audience-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-8) var(--sp-7);
  overflow: hidden;
  min-height: 360px;
}

.audience-panel-bg {
  position: absolute;
  inset: 0;
  background: var(--grey-900);
  transition: opacity var(--t-slow) var(--ease);
  z-index: 0;
}

.audience-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity var(--t-slow) var(--ease);
  z-index: 1;
}

.audience-panel:hover .audience-panel-img {
  opacity: 0.35;
}

.audience-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, transparent 60%);
  z-index: 2;
}

.audience-panel-content {
  position: relative;
  z-index: 3;
}

.audience-panel-divider {
  width: 1px;
  background: var(--grey-700);
}

/* --------------------------------------------------------------------------
   Battlefield section
   -------------------------------------------------------------------------- */
.battlefield-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-10) 0;
}

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

.battlefield-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.battlefield-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.7) 60%, rgba(15,15,15,0.4) 100%);
}

.battlefield-content {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Team grid
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--grey-800);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-4);
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.team-callsign {
  display: inline-block;
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid rgba(204,32,39,0.3);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
}

.team-name {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.team-role {
  font-size: 14px;
  color: var(--grey-400);
}

/* --------------------------------------------------------------------------
   Weapon cards (Armoury)
   -------------------------------------------------------------------------- */
.weapon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}

.weapon-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: border-color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}

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

.weapon-name {
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.weapon-class {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: var(--sp-4);
}

.weapon-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.weapon-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.weapon-stat-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.weapon-stat-value {
  font-family: var(--font-s);
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-200);
}

.weapon-age-badge {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--grey-800);
}

/* --------------------------------------------------------------------------
   Mission cards
   -------------------------------------------------------------------------- */
.mission-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mission-item {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  transition: border-color var(--t-base) var(--ease);
}

.mission-item:hover {
  border-color: var(--grey-600);
}

.mission-title {
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.mission-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.6;
}

.mission-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
  min-width: 100px;
}

.mission-duration {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-400);
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--grey-900);
  border: 1.5px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: 14px var(--sp-5);
  font-size: 15px;
  color: var(--text-light);
  transition: border-color var(--t-fast) var(--ease);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-600);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--grey-900);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   CTA Banner section
   -------------------------------------------------------------------------- */
.cta-banner {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 52px
    ),
    var(--red);
  padding: var(--sp-10) 0 calc(var(--sp-10) + 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  z-index: 1;
}

/* Left angular panel */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 100%;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(0 0, 260px 0, 180px 100%, 0 100%);
  pointer-events: none;
}

/* Right angular panel */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24%;
  height: 100%;
  background: rgba(0,0,0,0.09);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-sub {
  font-family: var(--font-s);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.7);
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}

.cta-banner h2 {
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-6);
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.cta-banner-phone {
  font-family: var(--font-s);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 238, 0.75);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,243,238,0.4);
  transition: border-color var(--t-fast) var(--ease);
}

.cta-banner-phone a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-banner-phone:hover {
  border-color: var(--white);
}


/* --------------------------------------------------------------------------
   Consolidated mission layout (packages section)
   -------------------------------------------------------------------------- */

/* Section header — two-column editorial layout */
.packages-section .sect-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  text-align: left;
  margin-bottom: var(--sp-10);
}

.mission-intro-sub {
  max-width: 460px;
  padding-bottom: 6px;
}

/* Stacked audience rows — each spans full container width */
.audience-row {
  margin-bottom: var(--sp-10);
}

/* Row label — thin ruled divider that names the audience group */
.audience-row-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.audience-row-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.audience-row-label.ochre {
  color: var(--ochre);
  border-bottom-color: rgba(184, 150, 90, 0.25);
}

.audience-row-label.red {
  color: var(--red);
  border-bottom-color: rgba(204, 32, 39, 0.25);
}

/*
  Groups section: 3 cards at full container width.
  Each card gets ~1/3 of ~1200px = ~380px — enough canvas for the
  photo headers to read properly.
*/
.mission-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 980px) {
  .packages-section .sect-header {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
  }
  /* Groups stay 3-across on tablet — each ~300px, still workable */
}

@media (max-width: 480px) {
  .packages-section .sect-header {
    margin-bottom: var(--sp-6);  /* 32px — tighter on small phones */
  }
}

@media (max-width: 680px) {
  .mission-groups-grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   Family Fun — full-width horizontal featured card
   -------------------------------------------------------------------------- */

.mission-family-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}

/* Red top accent line draws on hover — same language as pkg-card */
.mission-family-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.6s var(--ease-out);
  z-index: 5;
}

.mission-family-featured:hover::before { width: 100%; }

.mission-family-featured:hover {
  box-shadow: 0 12px 48px rgba(204, 32, 39, 0.15);
  border-color: rgba(204, 32, 39, 0.3);
}


/* ---- Photo panel ---- */

.mff-photo {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.mff-photo .field-photo-bg {
  position: absolute;
  inset: 0;
  transition: transform 700ms var(--ease);
}

.mission-family-featured:hover .mff-photo .field-photo-bg {
  transform: scale(1.04);
}

/* Tactical corner marks */
.mff-photo::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-top: 1.5px solid rgba(204, 32, 39, 0.5);
  border-left: 1.5px solid rgba(204, 32, 39, 0.5);
  z-index: 4;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.mff-photo::after {
  content: '';
  position: absolute;
  bottom: 14px; right: 14px;
  width: 22px; height: 22px;
  border-bottom: 1.5px solid rgba(204, 32, 39, 0.5);
  border-right: 1.5px solid rgba(204, 32, 39, 0.5);
  z-index: 4;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.mission-family-featured:hover .mff-photo::before,
.mission-family-featured:hover .mff-photo::after {
  border-color: var(--red);
}


/* ---- SVG targeting reticle ---- */

.mff-reticle {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.65;
}

/* Outer dashed ring — rotates clockwise */
.mff-ring-outer {
  transform-box: fill-box;
  transform-origin: center;
  animation: mffRotateCW 28s linear infinite;
}

/* Inner dashed ring — counter-rotates */
.mff-ring-inner {
  transform-box: fill-box;
  transform-origin: center;
  animation: mffRotateCW 18s linear infinite reverse;
}

/* Centre elements pulse */
.mff-center-dot  { animation: mffPulse 3s ease-in-out infinite; }
.mff-center-ring { animation: mffPulse 3s ease-in-out infinite 0.4s; }

@keyframes mffRotateCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes mffPulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mff-ring-outer,
  .mff-ring-inner,
  .mff-center-dot,
  .mff-center-ring { animation: none; }
}


/* ---- HUD data overlay (top-right of photo) ---- */

.mff-hud {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}

.mff-hud-mission {
  font-family: var(--font-s);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(204, 32, 39, 0.75);
  line-height: 1;
}

.mff-hud-coord {
  font-family: var(--font-s);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(242, 240, 235, 0.3);
  line-height: 1;
}


/* ---- Photo footer label ---- */

.mff-photo-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.88) 0%, transparent 100%);
  padding: var(--sp-5) var(--sp-6);
  z-index: 3;
  pointer-events: none;
}

.mff-photo-tag {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre);
}


/* ---- Content panel ---- */

.mff-content {
  background: var(--white);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-5);
}

.mff-eyebrow {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
}

.mff-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.92;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.mff-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}

.mff-price {
  font-family: var(--font-d);
  font-size: 48px;
  line-height: 1;
  color: var(--red);
}

.mff-price-note {
  font-family: var(--font-s);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--grey-400);
}

.mff-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.72;
  margin: 0;
}

/* Inclusions checklist */
.mff-inclusions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: var(--sp-4) 0;
}

.mff-inclusions li {
  font-family: var(--font-s);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.mff-inclusions li::before {
  content: '✓';
  color: var(--ochre);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.mff-promo {
  padding: var(--sp-3) var(--sp-4);
}

.mff-promo span {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}


/* ---- Responsive ---- */

@media (max-width: 860px) {
  .mission-family-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mff-photo {
    min-height: 300px;
  }

  .mff-content {
    padding: var(--sp-7) var(--sp-7);
  }

  .mff-price { font-size: 48px; }
  .mff-title { font-size: clamp(44px, 10vw, 64px); }
}

@media (max-width: 560px) {
  .mff-content {
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-4);
  }

  .mff-reticle { width: 200px; height: 200px; }
}


/* --------------------------------------------------------------------------
   Hero — Video play trigger
   -------------------------------------------------------------------------- */

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--grey-300);
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 150ms ease;
  flex-shrink: 0;
}

.hero-play-btn:hover {
  color: var(--white);
}

.hero-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding-left: 3px;   /* optical centering of ▶ */
  flex-shrink: 0;
  transition: border-color 200ms ease,
              background   200ms ease,
              color        200ms ease;
}

.hero-play-btn:hover .hero-play-icon {
  border-color: var(--red);
  background: rgba(204, 32, 39, 0.15);
  color: var(--red);
}

@media (max-width: 480px) {
  .hero-play-btn {
    font-size: 13px;
  }
  .hero-play-icon {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}


/* --------------------------------------------------------------------------
   Video Modal
   -------------------------------------------------------------------------- */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: min(920px, 92vw);
}

.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--grey-200);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease,
              background   150ms ease,
              color        150ms ease;
}

.video-modal-close:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.video-wrap {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-caption {
  font-family: var(--font-s);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  text-align: center;
  margin-top: var(--sp-4);
}


/* --------------------------------------------------------------------------
   In the Field — Action gallery section
   -------------------------------------------------------------------------- */

.field-section {
  padding: var(--sp-10) 0;
}

.field-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-8);
}

.field-header-sub {
  max-width: 460px;
  align-self: end;
  padding-bottom: 6px;  /* align text baseline with heading */
}

/* ---- Shared photo foundation ---- */

.field-photo-bg {
  position: absolute;
  inset: 0;
  transition: transform 600ms var(--ease);
}

/* Subtle grid texture on all photo placeholders */
.field-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---- Hero photo (full-width) ---- */

.field-hero-photo {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  cursor: pointer;
}

.field-hero-photo:hover .field-photo-bg {
  transform: scale(1.03);
}

/* Tactical corner marks — top-left */
.field-hero-photo::before,
.field-strip-photo::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid rgba(204, 32, 39, 0.6);
  border-left: 1.5px solid rgba(204, 32, 39, 0.6);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

/* Tactical corner marks — bottom-right */
.field-hero-photo::after,
.field-strip-photo::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-bottom: 1.5px solid rgba(204, 32, 39, 0.6);
  border-right: 1.5px solid rgba(204, 32, 39, 0.6);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.field-hero-photo:hover::before,
.field-hero-photo:hover::after,
.field-strip-photo:hover::before,
.field-strip-photo:hover::after {
  border-color: var(--red);
}

/* Bottom gradient + label */
.field-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6) var(--sp-7);
  z-index: 2;
}

.field-photo-label {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field-photo-tag {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}

.field-photo-hint {
  font-size: 14px;
  color: var(--grey-400);
  margin: 0;
  font-style: italic;
}

/* Camera placeholder icon — shown centred on each photo */
.field-hero-photo .field-ph-icon,
.field-strip-photo .field-ph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: rgba(255, 255, 255, 0.07);
  font-size: 52px;
  pointer-events: none;
}

.field-strip-photo .field-ph-icon {
  font-size: 32px;
}

/* ---- 4-photo strip ---- */

.field-strip-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.field-strip-wrap::-webkit-scrollbar { display: none; }

.field-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.field-strip-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.field-strip-photo:hover .field-photo-bg {
  transform: scale(1.06);
}

.field-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.9) 0%, transparent 100%);
  padding: var(--sp-5) var(--sp-4) var(--sp-3);
  z-index: 2;
}

.field-strip-label-tag {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: block;
}

.field-strip-label-text {
  font-size: 13px;
  color: var(--grey-400);
  display: block;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .field-header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .field-hero-photo {
    aspect-ratio: 16 / 9;
  }
  .field-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .field-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
}


/* --------------------------------------------------------------------------
   Package cards — photo header
   -------------------------------------------------------------------------- */

.pkg-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--grey-900);
}

.pkg-card-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 500ms var(--ease);
}

.pkg-card:hover .pkg-card-img-bg {
  transform: scale(1.06);
}

/* Subtle grid texture */
.pkg-card-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}

.pkg-card-img-tag {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.5);
  background: rgba(7, 7, 12, 0.55);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* --------------------------------------------------------------------------
   Battlefield — media panel (right column)
   -------------------------------------------------------------------------- */

.bf-media-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.bf-media-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bf-media-photo--main {
  aspect-ratio: 16 / 10;
}

.bf-media-photo--strip {
  aspect-ratio: 16 / 6;
}

.bf-media-photo .field-photo-bg {
  transition: transform 500ms var(--ease);
}

.bf-media-photo:hover .field-photo-bg {
  transform: scale(1.04);
}

/* Tactical corners */
.bf-media-photo::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid rgba(204, 32, 39, 0.5);
  border-left: 1.5px solid rgba(204, 32, 39, 0.5);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.bf-media-photo::after {
  content: '';
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 14px;
  height: 14px;
  border-bottom: 1.5px solid rgba(204, 32, 39, 0.5);
  border-right: 1.5px solid rgba(204, 32, 39, 0.5);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.bf-media-photo:hover::before,
.bf-media-photo:hover::after {
  border-color: var(--red);
}

.bf-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  z-index: 2;
}

.bf-media-tag {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-600);
}


/* --------------------------------------------------------------------------
   How It Works — action photo strip
   -------------------------------------------------------------------------- */

.hiw-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-10) 0 var(--sp-6);
}

.hiw-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.hiw-photo .field-photo-bg {
  transition: transform 500ms var(--ease);
}

.hiw-photo:hover .field-photo-bg {
  transform: scale(1.05);
}

/* Tactical corners — reuse same treatment */
.hiw-photo::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid rgba(204, 32, 39, 0.4);
  border-left: 1.5px solid rgba(204, 32, 39, 0.4);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.hiw-photo::after {
  content: '';
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 14px;
  height: 14px;
  border-bottom: 1.5px solid rgba(204, 32, 39, 0.4);
  border-right: 1.5px solid rgba(204, 32, 39, 0.4);
  z-index: 3;
  pointer-events: none;
  transition: border-color 300ms ease;
}

.hiw-photo:hover::before,
.hiw-photo:hover::after {
  border-color: var(--red);
}

.hiw-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 12, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  z-index: 2;
}

.hiw-photo-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-400);
}

@media (max-width: 768px) {
  .hiw-photos {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin: var(--sp-8) 0 var(--sp-5);
  }
}


/* ==========================================================================
   SUB-PAGE COMPONENTS
   Shared styles for birthday-parties, open-play, extreme-events,
   private-groups and other package sub-pages.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Sub-page hero tweaks
   -------------------------------------------------------------------------- */

.hero-sub-page {
  min-height: 0;
  padding-top: calc(var(--nav-h) + var(--sp-5));
  padding-bottom: var(--sp-5);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-sub-page .hero-h1 {
  font-size: clamp(30px, 4.5vw, 60px);
}

.hero-sub-page .hero-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  margin-bottom: var(--sp-6);
}

/* --------------------------------------------------------------------------
   Section subtitle (below section h2)
   -------------------------------------------------------------------------- */

.section-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--grey-400);
  line-height: 1.7;
  max-width: 560px;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.sect-light .section-sub { color: var(--grey-600); }

/* --------------------------------------------------------------------------
   Trust check mark (hero inline trust line)
   -------------------------------------------------------------------------- */

.trust-check {
  color: var(--ochre);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Step description (how-it-works, shared with sub-pages)
   -------------------------------------------------------------------------- */

.step-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.75;
  margin: 0;
}

.sect-light .step-desc { color: var(--grey-600); }

/* --------------------------------------------------------------------------
   Quick stats strip (horizontal key facts under hero)
   -------------------------------------------------------------------------- */

.pkg-stat-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--sp-5) 0;
}

.pkg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-3) var(--sp-7);
  border-right: 1px solid var(--grey-800);
}

.pkg-stat:last-child { border-right: none; }

.pkg-stat-num {
  font-family: var(--font-d);
  font-size: 40px;
  line-height: 1;
  color: var(--text-light);
}

.pkg-stat-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-600);
}

@media (max-width: 600px) {
  .pkg-stat { padding: var(--sp-3) var(--sp-5); }
  .pkg-stat-num { font-size: 32px; }
}

/* --------------------------------------------------------------------------
   Inclusions grid — "What's Included" section
   -------------------------------------------------------------------------- */

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

@media (max-width: 900px) { .inclusions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inclusions-grid { grid-template-columns: 1fr; } }

.inclusion-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.inclusion-card:hover {
  border-color: rgba(204, 32, 39, 0.35);
  box-shadow: 0 8px 32px rgba(204, 32, 39, 0.08);
}

.inclusion-icon {
  font-size: 26px;
  line-height: 1;
}

.inclusion-title {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin: 0;
}

.inclusion-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.75;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Sub-page photo strip (between sections)
   -------------------------------------------------------------------------- */

.sub-photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

@media (max-width: 768px) {
  .sub-photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .sub-photo-strip .sub-photo:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .sub-photo-strip { grid-template-columns: 1fr; }
  .sub-photo-strip .sub-photo:first-child { grid-column: auto; }
}

.sub-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-soft);
}

.sub-photo:first-child { aspect-ratio: 16 / 9; }

.sub-photo img,
.sub-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}

.sub-photo:hover img,
.sub-photo:hover video { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   Video feature strip — full-bleed clickable (opens modal)
   -------------------------------------------------------------------------- */

.sub-video-feature {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.sub-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.sub-video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,12,0.4) 0%, rgba(7,7,12,0.65) 100%);
}

.sub-video-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  pointer-events: none;
  text-align: center;
}

.sub-video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(204, 32, 39, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  transition: transform var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
}

.sub-video-feature:hover .sub-video-play {
  transform: scale(1.12);
  background: var(--red);
}

.sub-video-label {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.6);
}

.sub-video-heading {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.03em;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

@media (max-width: 600px) { .sub-video-feature { height: 280px; } }

/* --------------------------------------------------------------------------
   Party options grid (food, setup, extras)
   -------------------------------------------------------------------------- */

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

@media (max-width: 768px) { .options-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

.option-card {
  border-top: 2px solid var(--grey-800);
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.option-title {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin: 0;
}

.option-desc {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.75;
  margin: 0;
}

.option-note {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Promo callout banner (horizontal, inside section)
   -------------------------------------------------------------------------- */

.promo-callout {
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.promo-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204, 32, 39, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .promo-callout {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-7) var(--sp-6);
    gap: var(--sp-6);
  }
  .callout-sub { margin-left: auto; margin-right: auto; }
  .promo-callout-action { align-items: center; }
}

.callout-eyebrow {
  display: block;
  color: var(--ochre);
  margin-bottom: var(--sp-3);
}

.callout-heading {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.95;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin: 0;
}

.callout-sub {
  font-size: 15px;
  color: var(--grey-400);
  line-height: 1.65;
  max-width: 400px;
  margin: var(--sp-4) 0 0;
}

.promo-callout-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}

.promo-callout-price {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Reviews grid (sub-page)
   -------------------------------------------------------------------------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* --------------------------------------------------------------------------
   Page sticky bar (mobile — scrolls in after hero)
   -------------------------------------------------------------------------- */

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-bar-name {
  font-family: var(--font-s);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.sticky-bar-price {
  font-family: var(--font-s);
  font-size: 13px;
  color: var(--ochre);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Trust row + trust badges
   Extracted from repeated inline styles across sub-page heroes.
   -------------------------------------------------------------------------- */

.trust-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Base badge */
.trust-badge {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

/* Ochre bordered variant — for feature callouts */
.trust-badge--ochre {
  color: var(--ochre);
  border: 1px solid rgba(184, 150, 90, 0.4);
}

/* Ghost variant — for dark-background text */
.trust-badge--ghost {
  color: rgba(242, 240, 235, 0.65);
  border: 1px solid rgba(242, 240, 235, 0.2);
}

/* Red variant */
.trust-badge--red {
  color: var(--red);
  border: 1px solid rgba(204, 32, 39, 0.4);
}

/* --------------------------------------------------------------------------
   Mega-menu card image background variants
   Extracted from repeated inline gradient styles on .mm-img-bg elements.
   -------------------------------------------------------------------------- */

.mm-img-bg--family-fun { background-image: url('../image/birthday-parties-event.jpg'); background-size: cover; background-position: center; }
.mm-img-bg--open-play  { background-image: url('../image/open-play-event.jpg'); background-size: cover; background-position: center; }
.mm-img-bg--extreme    { background-image: url('../image/extreme-event.jpg'); background-size: cover; background-position: center; }
.mm-img-bg--private    { background-image: url('../image/private-event.jpg'); background-size: cover; background-position: center; }

/* --------------------------------------------------------------------------
   Photo mosaic — unified class replacing .photo-strip / .ex-photo-strip
   Structure: large item left (spans 2 rows) + two stacked items right.
   -------------------------------------------------------------------------- */

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-3);
  height: clamp(380px, 42vw, 640px);
}

.photo-mosaic__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-soft);
  min-height: 0;
}

.photo-mosaic__item:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .photo-mosaic__item {
    aspect-ratio: 4 / 3;
  }
  .photo-mosaic .photo-mosaic__item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}

.photo-mosaic__item:hover img {
  transform: scale(1.04);
}

.photo-mosaic__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(7,7,12,0.75) 0%, transparent 100%);
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.75);
}

/* =====================================================================
   BOOKING MODAL — FareHarbor lightbox wrapper
   ===================================================================== */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 20);
  display: flex;
  align-items: flex-end;    /* bottom-sheet entry on mobile */
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.booking-modal.open {
  opacity: 1;
  pointer-events: all;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 12, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-modal-shell {
  position: relative;
  z-index: 1;
  background: var(--black-mid);
  width: 100%;
  max-width: 1040px;
  height: 92svh;
  display: flex;
  flex-direction: column;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid var(--grey-800);
  border-bottom: none;
  transform: translateY(48px);
  transition: transform 0.38s var(--ease);
}

.booking-modal.open .booking-modal-shell {
  transform: translateY(0);
}

.booking-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--black);
  border-bottom: 1px solid var(--grey-800);
  flex-shrink: 0;
  gap: var(--sp-4);
}

.booking-modal-hd-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-modal-eyebrow {
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.booking-modal-title {
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.booking-modal-close {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  color: var(--grey-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.booking-modal-close:hover {
  background: var(--grey-800);
  border-color: var(--grey-700);
  color: var(--white);
}

.booking-modal-body {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #fff;  /* FareHarbor renders on white */
}

.booking-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Desktop: float centred, rounded all sides */
@media (min-width: 640px) {
  .booking-modal {
    align-items: center;
    padding: var(--sp-6);
  }
  .booking-modal-shell {
    border-radius: 16px;
    border-bottom: 1px solid var(--grey-800);
    height: 88svh;
    max-height: 900px;
  }
}


/* ══════════════════════════════════════════════════════════
   HERO SPLIT — Sub-page hero used on all pages except home
   Desktop: 50/50 split. Copy left on black, image right.
   ≤ 900px: Atmospheric tint. Image full-bleed at 26% opacity
            behind a transparent copy panel.
   ══════════════════════════════════════════════════════════ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.hs-copy {
  background: var(--black);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 72px;
  padding-right: 64px;
  /* Left edge aligns with the container: 32px gutter + centering offset */
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Diagonal arrow pointing into image panel */
.hs-copy::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
  z-index: 2;
}

.hs-img {
  position: relative;
  overflow: hidden;
}

.hs-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.hero-split:hover .hs-img-inner { transform: scale(1.04); }

.hs-img-tint {
  position: absolute;
  inset: 0;
  background: rgba(204,32,39,0.08);
}

/* ── Atmospheric tint at tablet and below ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 520px;
  }
  .hs-img {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hs-img-inner {
    opacity: 0.26;
    filter: grayscale(20%);
    transition: none;
  }
  .hs-copy {
    background: transparent;
    padding-top: calc(var(--nav-h) + 52px);
    padding-bottom: 60px;
    padding-right: 32px;
    padding-left: 24px;
    min-height: 520px;
    z-index: 1;
  }
  .hs-copy::after { display: none; }
  .hero-split:hover .hs-img-inner { transform: none; }

  /* Body text inside hero-split: override inline grey-400 colour */
  .hs-copy p:not(.t-eyebrow) {
    color: #ffffff !important;
  }
  .hs-copy .t-eyebrow {
    color: var(--grey-200) !important;
  }
}

@media (max-width: 640px) {
  .hs-copy {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 52px;
    padding-right: 16px;
    padding-left: 16px;
  }
  /* Remove red tint on hero images — too heavy at small viewport */
  .hs-img-tint {
    display: none;
  }
  /* Brighten hero body text for legibility over dark background */
  .hero-sub,
  .hero-sub-page .hero-sub {
    color: #ffffff;
  }
}


/* ══════════════════════════════════════════════════════════
   BOOKING CALENDAR SECTION
   Light bg. 2-col tile grid left, capped calendar right.
   Each tile: number + label centered and tightly stacked.
   The section bg colour shows through the 2px gap as a border.
   ══════════════════════════════════════════════════════════ */

.booking-cal {
  background: var(--white-mid);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: var(--sp-6);
  align-items: stretch;
}

/* Left column fills calendar height */
.booking-cal-grid > div:first-child {
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Calendar embed — just enough breathing room */
.booking-cal-embed {
  background: #fff;
  border-radius: 4px;
  padding: var(--sp-4) var(--sp-4);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* 2-col tile grid — 1px gap with reduced-opacity grey as border */
.booking-cal-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(196, 194, 188, 0.35);
  border: 1px solid rgba(196, 194, 188, 0.35);
  border-radius: 4px;
  overflow: hidden;
}

/* Each tile: white bg, number + label centered and tightly stacked */
.booking-cal-stat {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-3);
  gap: 3px;
  text-align: center;
  border: none;
  margin: 0;
}

/* Last tile spans full width when count is odd */
.booking-cal-stat:last-child:nth-child(odd) {
  grid-column: span 2;
}

.booking-cal-stat-num {
  font-family: var(--font-d);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.booking-cal-stat-label {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* Description tile — full-width last card with body copy */
.booking-cal-stat--desc {
  align-items: flex-start;
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  gap: 0;
}

.booking-cal-stat-desc {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-400);
}

@media (max-width: 900px) {
  .booking-cal-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .booking-cal { padding: var(--sp-4) 0; }
  .booking-cal-stats {
    grid-auto-rows: auto;
  }
  .booking-cal-stat {
    padding: var(--sp-3) var(--sp-3);
  }
  .booking-cal-stat-num { font-size: clamp(24px, 6vw, 36px); }
  .booking-cal-embed { padding: var(--sp-5) var(--sp-4); }
}


/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   Card-based variant used on faq.html, birthday-parties.html,
   open-play.html, and extreme-events.html.
   Overrides the generic FAQ accordion rules above with a
   white-card layout, red left-border accent on open/hover,
   and a plain +/× icon (no circle chrome).
   ══════════════════════════════════════════════════════════ */

.faq-item {
  background: #fff;
  border-top: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  border-left: 3px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-left-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

/* Hover: grey left accent */
.faq-item:not(.open):hover {
  border-left-color: var(--grey-400);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Open: red left accent + elevated shadow */
.faq-item.open {
  border-left-color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  /* Prevent iOS Safari from applying system blue accent colour to button text */
  color: inherit;
  font-family: inherit;
}

.faq-question:hover .faq-q-text { color: var(--red); }

.faq-q-text {
  font-family: var(--font-s);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  transition: color 0.2s;
  text-transform: uppercase;
  flex: 1;
  line-height: 1.3;
}

/* Bare +/× icon — no circle chrome */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--grey-400);
  transition: color 0.2s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  color: var(--red);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 800px; }

.faq-answer-inner {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  border-top: 1px solid var(--grey-200);
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--grey-400);
}

.faq-answer-inner p + p { margin-top: var(--sp-3); }
.faq-answer-inner strong { color: var(--text-dark); font-weight: 600; }
/* Cover both .faq-answer-inner a (faq/home pages) and bare .faq-answer a (event pages) */
.faq-answer-inner a,
.faq-answer a { color: var(--red); text-decoration: underline; }


/* ══════════════════════════════════════════════════════════
   INCLUSION CARDS
   Light-section overrides for .inclusion-card.
   The base .inclusion-card rule (dark bg, grey border) is
   defined above. These rules switch the card to a white/light
   appearance for sections with a light background.
   Used on birthday-parties.html, open-play.html,
   and extreme-events.html.
   ══════════════════════════════════════════════════════════ */

#inclusions .inclusion-card,
#ex-inclusions .inclusion-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

#inclusions .inclusion-card:hover,
#ex-inclusions .inclusion-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--grey-400);
}

#inclusions .inclusion-title,
#ex-inclusions .inclusion-title { color: var(--text-dark); }

#inclusions .inclusion-desc,
#ex-inclusions .inclusion-desc  { color: var(--grey-400); }

#inclusions .section-sub,
#ex-inclusions .section-sub     { color: var(--grey-400); }


/* ══════════════════════════════════════════════════════════
   PROMO BANNER
   Liquid-glass promo callout card with animated CTA button.
   Shared across birthday-parties.html, open-play.html,
   and extreme-events.html (each page scopes the glass card
   to its own section ID, but the button and price elements
   are global).
   ══════════════════════════════════════════════════════════ */

.promo-price-block {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-price-big {
  font-family: var(--font-d);
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  display: block;
  letter-spacing: 0.01em;
}

.promo-price-label {
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 4px;
}

.promo-saving-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(184, 150, 90, 0.14);
  border: 1px solid rgba(184, 150, 90, 0.35);
  color: var(--ochre);
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

/* CTA button */
.promo-cta-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px !important;
  font-size: 15px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 28px rgba(204, 32, 39, 0.5), 0 0 0 0 rgba(204, 32, 39, 0.35);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s !important;
  animation: promoGlow 2.8s ease-in-out infinite;
}

.promo-cta-btn:hover {
  box-shadow: 0 6px 36px rgba(204, 32, 39, 0.7), 0 0 0 4px rgba(204, 32, 39, 0.18) !important;
  transform: translateY(-2px);
  animation: none;
}

/* Shimmer sweep */
.promo-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  animation: promoShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promoShimmer {
  0%, 100% { left: -120%; }
  55%, 100% { left: 160%; }
}

@keyframes promoGlow {
  0%, 100% { box-shadow: 0 4px 28px rgba(204,32,39,0.5), 0 0 0 0   rgba(204,32,39,0.25); }
  50%       { box-shadow: 0 4px 28px rgba(204,32,39,0.6), 0 0 0 6px rgba(204,32,39,0.12); }
}

/* Trust row below CTA button */
.promo-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
