/* ================================================================
   Arena2026Digital — App Stylesheet
   Fonts : DM Serif Display (headings) + IBM Plex Sans (body) + IBM Plex Mono (data)
   Palette: #080f08 ink / #c8952a gold / #f0ead8 bone / #0e1a0e deep
   Mobile-first: every layout is 1-column, widens at explicit breakpoints
================================================================ */

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --ink:    #080f08;
  --deep:   #0d180d;
  --field:  #142014;
  --gold:   #c8952a;
  --gold2:  #e2b55a;
  --bone:   #f0ead8;
  --stone:  #b0a890;
  --slate:  #686050;
  --red:    #9e2418;
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'IBM Plex Sans', system-ui, sans-serif;
  --mono:   'IBM Plex Mono', monospace;
  --pad:    clamp(1rem, 5vw, 4rem);   /* horizontal page padding */
  --radius: 6px;
  --nav:    62px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}
img, video, iframe, svg, canvas { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--sans); border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: var(--sans); }
::selection { background: rgba(200,149,42,.3); color: var(--bone); }

/* ── Utility ────────────────────────────────────────────────────── */
.gold  { color: var(--gold); }
.stone { color: var(--stone); }
.mono  { font-family: var(--mono); }
.serif { font-family: var(--serif); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Page wrapper ───────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ================================================================
   NAVIGATION
================================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  gap: 1rem;
  background: rgba(8,15,8,.0);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.site-nav.scrolled {
  background: rgba(8,15,8,.97);
  border-color: rgba(200,149,42,.1);
  backdrop-filter: blur(12px);
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-size: 1.1rem;
  flex-shrink: 0; letter-spacing: -.01em;
}
.nav-brand-ball { font-size: 1.2rem; animation: spin 16s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nav-brand .g { color: var(--gold); }

/* Desktop links */
.nav-links {
  display: none;
  list-style: none;
  gap: 0;
  margin-left: auto;
}
.nav-links li { display: inline-flex; }
.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: .84rem;
  color: rgba(240,234,216,.5);
  border-radius: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--bone); }

.nav-cta {
  display: none;
  background: var(--gold); color: var(--ink);
  padding: 9px 18px; border-radius: var(--radius);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  flex-shrink: 0; transition: background .2s;
}
.nav-cta:hover { background: var(--gold2); }

/* Hamburger */
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: auto; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--bone); border-radius: 1px; transition: .3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav); left: 0; right: 0;
  background: rgba(8,15,8,.99);
  border-bottom: 1px solid rgba(200,149,42,.15);
  padding: .5rem var(--pad) 2rem;
  z-index: 99;
}
.nav-links.open li { display: block; width: 100%; }
.nav-links.open a {
  display: block; padding: .9rem .5rem;
  font-size: 1.05rem; color: var(--bone);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-links.open .nav-cta {
  display: block; text-align: center;
  margin-top: .75rem; padding: 12px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-burger{ display: none; }
}

/* ================================================================
   HERO — split layout with text left, video right
================================================================ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem) var(--pad) clamp(2.5rem, 5vw, 5rem);
  min-height: 75vh;
  display: flex; align-items: center;
}
.hero-inner { width: 100%; }

/* Atmospheric background layers */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(22,48,22,.85) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(200,149,42,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(200,149,42,.05) 0%, transparent 60%);
  background-color: #0a180a;
}
/* Diagonal pitch lines */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent 0, transparent 80px,
    rgba(255,255,255,.018) 80px, rgba(255,255,255,.018) 81px
  );
}

/* Bottom fade to next section */
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--ink));
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Left: copy */
.hero-copy {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.025em;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(.88rem, 1.8vw, 1rem);
  color: var(--stone);
  line-height: 1.8;
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero-countdown {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cd-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-align: center; min-width: 62px;
}
.cd-num {
  font-family: var(--mono); font-size: 1.6rem;
  color: var(--gold); line-height: 1; display: block;
}
.cd-lbl {
  font-size: .55rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate);
  margin-top: 3px; display: block;
}
.cd-sep {
  display: flex; align-items: center; padding-bottom: 8px;
  color: rgba(200,149,42,.25); font-size: 1.1rem;
}

/* Right: video card */
.hero-video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,149,42,.2);
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(200,149,42,.08);
  background: #000;
  aspect-ratio: 16/9;
}
.hero-video-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.hero-video-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(8,15,8,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,149,42,.25);
  border-radius: 50px; padding: 4px 10px;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 5px;
}
.hero-video-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #e74c3c; animation: pulse 1.4s infinite;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: .2s; border: none; white-space: nowrap; cursor: pointer;
}
.btn-gold  { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid rgba(240,234,216,.2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 16px; font-size: .76rem; }
.btn-lg { padding: 14px 30px; font-size: .88rem; }
.btn-full { width: 100%; }

/* ================================================================
   SECTION STRUCTURE
================================================================ */
.section { padding: clamp(2.5rem, 5vw, 5rem) var(--pad); }
.section-inner { max-width: 1320px; margin: 0 auto; }
.section-hd { margin-bottom: 2.5rem; }
.section-hd.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.06; letter-spacing: -.02em;
  font-weight: 400; margin-bottom: .6rem;
}
.section-sub {
  font-size: .92rem; color: var(--stone);
  line-height: 1.75; max-width: 46ch;
}

/* Reveal on scroll */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.rv { opacity: 0; transform: translateY(18px); transition: opacity .65s, transform .65s; }
.rv.in { opacity: 1; transform: none; }

/* ================================================================
   SPONSORS MARQUEE
================================================================ */
.sponsors-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--deep);
  overflow: hidden;
}
.sponsors-label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate); text-align: center; margin-bottom: 1.25rem; padding: 0 var(--pad);
}
.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-outer { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
.sp {
  display: inline-flex; align-items: center;
  padding: .8rem 1.75rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.05);
  color: rgba(240,234,216,.3);
  transition: color .2s;
}
.sp:hover { color: rgba(240,234,216,.65); }
.sp.tier1 { color: rgba(200,149,42,.5); font-weight: 700; }
.sp.tier1:hover { color: var(--gold); }

/* ================================================================
   MATCH CARDS
================================================================ */
.matches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}
@media (min-width: 580px)  { .matches-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .matches-grid { grid-template-columns: repeat(3,1fr); } }

.match-card {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: border-color .2s, background .2s;
}
.match-card:hover {
  border-color: rgba(200,149,42,.25);
  background: var(--field);
}
.match-card.hot::after {
  content: 'SELLING FAST';
  position: absolute; top: .7rem; right: .7rem;
  font-size: .52rem; font-weight: 800; letter-spacing: .1em;
  background: var(--red); color: #fff;
  padding: 2px 6px; border-radius: 2px;
  z-index: 2;
}
.mc-head {
  padding: 1rem 1.1rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mc-stage {
  font-size: .58rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.mc-teams {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.mc-flag { font-size: 1.5rem; line-height: 1; display:inline-flex; align-items:center; }
.mc-flag img { width:28px; height:21px; border-radius:2px; display:inline-block; }
.mc-name { font-family: var(--serif); font-size: 1rem; }
.mc-vs   { font-size: .58rem; font-weight: 800; letter-spacing: .1em; color: var(--slate); }
.mc-body { padding: .75rem 1.1rem; }
.mc-info { font-size: .72rem; color: var(--stone); margin-bottom: .25rem; }
.mc-foot {
  padding: .75rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center;
  justify-content: space-between; gap: .5rem; flex-wrap: wrap;
}
.mc-slots { display: flex; flex-direction: column; gap: 3px; }
.mc-bar { width: 56px; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; overflow: hidden; }
.mc-bar-fill { height: 100%; border-radius: 1px; }
.mc-bar-fill.avail  { background: var(--gold); }
.mc-bar-fill.ltd    { background: #c06818; }
.mc-bar-fill.urgent { background: var(--red); }
.mc-slots-txt { font-size: .62rem; color: var(--stone); }
.mc-slots-txt.urgent { color: var(--gold); }
.mc-price { font-size: .78rem; color: var(--stone); }
.mc-price strong { font-family: var(--mono); font-size: .92rem; color: var(--gold); }
.mc-book-btn {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(200,149,42,.3);
  border-radius: 3px; padding: 6px 12px;
  font-size: .67rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; transition: .2s;
}
.mc-book-btn:hover { background: var(--gold); color: var(--ink); }
.btn-3d {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid rgba(200,149,42,.25);
  color: var(--gold); padding: 5px 10px; border-radius: 3px;
  font-size: .64rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none; transition: .2s;
}
.mc-sold-out {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,15,8,.7); backdrop-filter: blur(3px);
  font-family: var(--mono); font-size: .9rem;
  letter-spacing: .14em; color: rgba(240,234,216,.3); text-transform: uppercase;
  pointer-events: none;
}
.match-card.sold-out { opacity: .5; pointer-events: none; }

/* Filters */
.filters-bar {
  display: flex; flex-direction: column; gap: .5rem;
  padding: .875rem 1rem;
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); margin-bottom: 1.25rem;
}
.filters-row { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.filter-sel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 4px; color: var(--bone);
  padding: 7px 9px; font-size: .78rem; outline: none;
  transition: .2s; flex: 1; min-width: 110px;
}
.filter-sel:focus { border-color: rgba(200,149,42,.4); }
.filter-sel option { background: var(--deep); }
.search-inp {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 4px; color: var(--bone);
  padding: 7px 9px; font-size: .78rem; outline: none;
  width: 100%; transition: .2s;
}
.search-inp:focus { border-color: rgba(200,149,42,.4); }
.search-inp::placeholder { color: var(--slate); }
.view-btns { display: flex; gap: 3px; }
.view-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 4px; color: var(--slate);
  padding: 7px 9px; font-size: .85rem; transition: .2s;
}
.view-btn.on { background: var(--gold); color: var(--ink); border-color: var(--gold); }
@media (min-width: 600px) {
  .filters-bar { flex-direction: row; align-items: center; }
  .search-inp { width: 160px; }
}
.no-matches { text-align: center; padding: 3rem 1rem; color: var(--slate); }

/* List view */
.match-list-row {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px; padding: .875rem 1.1rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: .2s; margin-bottom: .4rem;
}
.match-list-row:hover { border-color: rgba(200,149,42,.2); }
.list-stage-tag {
  font-size: .58rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,149,42,.08); border: 1px solid rgba(200,149,42,.18);
  padding: 2px 7px; border-radius: 3px; align-self: flex-start;
}
.list-teams { font-family: var(--serif); font-size: 1rem; }
.list-meta  { font-size: .74rem; color: var(--stone); }
.list-price { font-family: var(--mono); font-size: .95rem; color: var(--gold); }
@media (min-width: 640px) {
  .match-list-row { flex-direction: row; align-items: center; gap: 1rem; }
}

/* ================================================================
   HOW IT WORKS
================================================================ */
.hiw-grid {
  display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: 2rem;
}
@media (min-width: 580px)  { .hiw-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .hiw-grid { grid-template-columns: repeat(4,1fr); } }
.hiw-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.75rem 1.5rem; transition: .2s;
}
.hiw-card:hover { background: var(--field); }
.hiw-n { font-family: var(--mono); font-size: 3.5rem; color: rgba(200,149,42,.08); line-height: 1; margin-bottom: -.5rem; }
.hiw-icon { font-size: 1.25rem; margin-bottom: .75rem; }
.hiw-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; margin-bottom: .5rem; }
.hiw-card p  { font-size: .82rem; color: var(--stone); line-height: 1.7; }

/* ================================================================
   PRICING
================================================================ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 2rem;
}
@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }
.price-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; transition: .2s;
}
.price-card:hover { border-color: rgba(200,149,42,.2); }
.price-card.featured { background: var(--field); border-color: rgba(200,149,42,.2); }
.price-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 0 0 4px 4px; white-space: nowrap;
}
.price-tier { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .65rem; }
.price-num  { font-family: var(--mono); font-size: 2.8rem; line-height: 1; margin-bottom: .2rem; }
.price-num sup { font-size: 1.1rem; vertical-align: top; margin-top: .5rem; }
.price-unit { font-size: .72rem; color: var(--stone); margin-bottom: 1.1rem; }
.price-div  { height: 1px; background: rgba(255,255,255,.06); margin: .875rem 0; }
.price-feats { display: flex; flex-direction: column; gap: .45rem; }
.price-feats li { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: rgba(240,234,216,.7); }
.feat-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; font-size: .52rem;
}
.feat-dot.y { background: rgba(200,149,42,.15); color: var(--gold); }
.feat-dot.n { background: rgba(255,255,255,.04); color: var(--slate); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 2rem;
}
@media (min-width: 768px)  { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.5rem; position: relative; transition: .2s;
}
.testi-card:hover { background: var(--field); }
.testi-card::before {
  content: '\201C'; font-family: var(--serif);
  font-size: 5rem; color: rgba(200,149,42,.06);
  position: absolute; top: .2rem; left: .9rem; line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: .7rem; margin-bottom: .6rem; }
.testi-text  { font-size: .86rem; color: var(--stone); line-height: 1.8; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: .65rem; }
.testi-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--field), #8a6218);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--gold); flex-shrink: 0;
  border: 1px solid rgba(200,149,42,.2);
}
.testi-name { font-weight: 600; font-size: .84rem; }
.testi-biz  { font-size: .7rem; color: var(--slate); }

/* ================================================================
   TICKETS SECTION (homepage block)
================================================================ */
.tickets-band {
  padding: clamp(3rem,7vw,6rem) var(--pad);
  background: linear-gradient(135deg, var(--field), var(--deep));
  border-top: 1px solid rgba(255,255,255,.05);
}
.ticket-cards {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
  max-width: 860px; margin: 2rem auto 0;
}
@media (min-width: 680px) { .ticket-cards { grid-template-columns: repeat(2,1fr); } }
.ticket-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  text-align: center; transition: .2s;
}
.ticket-card:hover { border-color: rgba(200,149,42,.25); }
.ticket-card-icon { font-size: 1.8rem; margin-bottom: .75rem; display: block; line-height: 1; }
.ticket-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: .5rem; }
.ticket-card p  { font-size: .84rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.1rem; }
.ticket-note {
  background: rgba(200,149,42,.05); border: 1px solid rgba(200,149,42,.15);
  border-radius: 4px; padding: .875rem 1.1rem; font-size: .8rem; color: var(--stone);
  line-height: 1.7; max-width: 620px; margin: 1.75rem auto 0; text-align: center;
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  padding: 1.5rem var(--pad);
  background: rgba(255,255,255,.013);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.trust-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center;
}
.trust-chip {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px; padding: .7rem .9rem; transition: .2s;
}
.trust-chip:hover { border-color: rgba(200,149,42,.18); }
.trust-chip .ti   { font-size: .9rem; }
.trust-chip strong { display: block; font-size: .8rem; font-weight: 600; }
.trust-chip span   { font-size: .68rem; color: var(--slate); }

/* ================================================================
   CTA SECTION
================================================================ */
.cta-band {
  padding: clamp(3.5rem,8vw,6rem) var(--pad);
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.04);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,149,42,.04), transparent);
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: .65rem; position: relative;
}
.cta-band p { color: var(--stone); font-size: .92rem; max-width: 44ch; margin: 0 auto 1.75rem; position: relative; }

/* ================================================================
   STORY / WHY SECTION
================================================================ */
.story-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 860px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-tag  { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.story-h2   { font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.6rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1rem; font-weight: 400; }
.story-h2 em { color: rgba(240,234,216,.3); font-style: italic; }
.story-p { font-size: .9rem; color: var(--stone); line-height: 1.85; margin-bottom: .75rem; }
.story-p strong { color: var(--bone); font-weight: 500; }
.story-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .84rem; font-weight: 500; border-bottom: 1px solid rgba(200,149,42,.3); padding-bottom: 1px; transition: .2s; margin-top: .3rem; }
.story-cards { display: flex; flex-direction: column; gap: 1px; }
.story-card  {
  background: var(--deep); border: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 1.25rem; display: flex; align-items: flex-start;
  gap: .875rem; transition: .2s;
}
.story-card:first-child { border-radius: 6px 6px 0 0; }
.story-card:last-child  { border-radius: 0 0 6px 6px; }
.story-card:hover { background: var(--field); }
.story-icon { width: 34px; height: 34px; border: 1px solid rgba(200,149,42,.2); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; background: rgba(200,149,42,.05); }
.story-card h4 { font-size: .86rem; font-weight: 600; margin-bottom: 2px; }
.story-card p  { font-size: .76rem; color: var(--stone); line-height: 1.65; }

/* ================================================================
   STATS
================================================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(2,1fr);
  border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); overflow: hidden;
}
/* Tighten stats section padding */
[style*="stats-row"] { padding-bottom: 0; }
@media (min-width: 580px) { .stats-row { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .stats-row { grid-template-columns: repeat(6,1fr); } }
.stat-block {
  text-align: center; padding: 1.5rem .75rem;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--deep);
}
.stat-block:last-child { border-right: none; }
.stat-n { font-family: var(--mono); font-size: 2rem; color: var(--gold); line-height: 1; display: block; }
.stat-l { font-size: .6rem; color: var(--slate); letter-spacing: .12em; text-transform: uppercase; margin-top: .3rem; display: block; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  padding: clamp(3rem,7vw,5.5rem) var(--pad) clamp(2rem,4vw,3.5rem);
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--deep);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px);
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem,6vw,4rem); font-weight: 400; letter-spacing: -.025em; position: relative; }
.page-hero p  { color: var(--stone); font-size: .92rem; position: relative; margin-top: .5rem; max-width: 54ch; margin-left: auto; margin-right: auto; }

/* ================================================================
   BOOKING MODAL
================================================================ */
.modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); backdrop-filter: blur(10px); z-index: 200; }
.modal-bg.on { display: block; }
.modal-wrap { display: none; position: fixed; inset: 0; z-index: 201; align-items: flex-start; justify-content: center; padding: 1rem; overflow-y: auto; }
.modal-wrap.on { display: flex; }
.modal-box {
  background: var(--deep); border: 1px solid rgba(200,149,42,.2);
  border-radius: 8px; width: 100%; max-width: 560px;
  max-height: calc(100vh - 2rem); overflow-y: auto;
  padding: 1.5rem 1.1rem; position: relative; margin: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.8);
}
@media (min-width: 480px) { .modal-box { padding: 2rem 1.75rem; } }
.modal-close {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: var(--bone); width: 28px; height: 28px; border-radius: 50%;
  font-size: .8rem; display: flex; align-items: center; justify-content: center; transition: .2s;
}
.modal-close:hover { border-color: var(--red); color: var(--red); }
.modal-steps { display: flex; align-items: center; margin-bottom: 1.5rem; }
.modal-step { display: flex; align-items: center; gap: 5px; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.modal-step.on { color: var(--gold); }
.modal-step .sn { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .65rem; }
.modal-step.on .sn { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.step-line { flex: 1; height: 1px; background: rgba(255,255,255,.07); margin: 0 .35rem; }
.modal-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 2px; }
.modal-sub   { font-size: .8rem; color: var(--stone); margin-bottom: 1rem; }
.form-step { display: none; }
.form-step.on { display: block; }
.fg { display: flex; flex-direction: column; gap: 4px; margin-bottom: .75rem; }
.fg label { font-size: .68rem; font-weight: 700; color: rgba(240,234,216,.5); letter-spacing: .05em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 4px; color: var(--bone); padding: 9px 11px;
  font-size: .86rem; outline: none; transition: .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(200,149,42,.45); }
.fg select option { background: var(--deep); }
.fg textarea { min-height: 90px; resize: vertical; }
.fg-2col { display: grid; grid-template-columns: 1fr; gap: .65rem; }
@media (min-width: 420px) { .fg-2col { grid-template-columns: 1fr 1fr; } }
.fg-2col .fg { margin-bottom: 0; }
.fg-2col .full { grid-column: 1/-1; }
.pkg-grid { display: grid; grid-template-columns: 1fr; gap: .4rem; margin: .4rem 0 .75rem; }
@media (min-width: 420px) { .pkg-grid { grid-template-columns: repeat(3,1fr); } }
.pkg-card { cursor: pointer; }
.pkg-card input[type=radio] { display: none; }
.pkg-inner { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: .8rem; text-align: center; transition: .2s; }
.pkg-card input:checked + .pkg-inner { border-color: var(--gold); background: rgba(200,149,42,.07); }
.pkg-name  { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.pkg-price { font-family: var(--mono); font-size: 1.2rem; margin-bottom: 2px; }
.pkg-slots { font-size: .6rem; color: var(--slate); margin-bottom: 3px; }
.pkg-feats li { font-size: .6rem; color: rgba(240,234,216,.42); padding: 1px 0; text-align: left; }
.file-zone { border: 1px dashed rgba(200,149,42,.2); border-radius: 4px; padding: .875rem; text-align: center; transition: .2s; position: relative; }
.file-zone:hover { border-color: rgba(200,149,42,.4); }
.file-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-zone p  { font-size: .74rem; color: var(--stone); }
.file-name { font-size: .68rem; color: var(--gold); display: block; margin-top: 2px; }
.char-cnt  { font-size: .64rem; color: var(--slate); text-align: right; margin-top: 2px; }
.err-msg   { font-size: .68rem; color: var(--red); margin-top: 2px; }
.review-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 1rem; margin-bottom: .75rem; }
.review-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .8rem; }
.review-row:last-child { border: none; }
.review-lbl { color: var(--stone); }
.review-val { color: var(--bone); font-weight: 500; max-width: 55%; text-align: right; }
.match-sel-box { background: rgba(200,149,42,.05); border: 1px solid rgba(200,149,42,.18); border-radius: 4px; padding: .6rem .9rem; font-size: .82rem; margin-bottom: .75rem; }
.step-btns { display: flex; gap: .4rem; margin-top: .75rem; flex-wrap: wrap; }
.form-note { font-size: .66rem; color: var(--slate); text-align: center; margin-top: .75rem; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 860px) { .contact-layout { grid-template-columns: 1fr 1.5fr; } }
.contact-info-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  display: flex; align-items: flex-start; gap: .875rem;
  margin-bottom: .5rem; transition: .2s;
}
.contact-info-card:hover { border-color: rgba(200,149,42,.2); }
.ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ci-head { font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.ci-body { font-size: .8rem; color: var(--stone); line-height: 1.65; }
.contact-form-box {
  background: var(--deep); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.5rem;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: rgba(5,9,5,.99);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: clamp(2.5rem,6vw,5rem) var(--pad) 1.75rem;
}
.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
@media (min-width: 600px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-brand p { font-size: .82rem; color: var(--stone); line-height: 1.75; margin-top: .75rem; max-width: 260px; }
.soc-links { display: flex; gap: .35rem; margin-top: .875rem; }
.soc-links a { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.07); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: .68rem; color: var(--slate); transition: .2s; }
.soc-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.footer-col li { margin-bottom: .38rem; }
.footer-col a  { font-size: .82rem; color: var(--stone); transition: .2s; }
.footer-col a:hover { color: var(--bone); }
.footer-col p  { font-size: .82rem; color: var(--stone); margin-bottom: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.25rem; max-width: 1320px; margin: 0 auto; }
.footer-copy { display: flex; justify-content: space-between; font-size: .7rem; color: rgba(255,255,255,.2); flex-wrap: wrap; gap: .35rem; }

/* ================================================================
   THANK YOU / CONFIRMATION
================================================================ */
.confirm-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem var(--pad); text-align: center; }
.confirm-box { max-width: 480px; width: 100%; }
@keyframes popIn { 0%{transform:scale(0) rotate(-15deg);opacity:0} 100%{transform:scale(1) rotate(0);opacity:1} }
.confirm-icon { font-size: 3.5rem; display: block; margin-bottom: 1.25rem; animation: popIn .7s cubic-bezier(.34,1.56,.64,1) both; }
.confirm-box h1 { font-family: var(--serif); font-size: clamp(2rem,6vw,3.2rem); font-weight: 400; margin-bottom: .75rem; color: var(--gold); }
.confirm-box p   { font-size: .9rem; color: var(--stone); margin-bottom: .65rem; }
.confetti-wrap { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }

/* ================================================================
   COOKIE BANNER
================================================================ */
.cookie-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(8,15,8,.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,149,42,.15);
  padding: 12px var(--pad);
  align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.cookie-bar.show { display: flex; }
.cookie-txt { font-size: .8rem; color: var(--stone); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: .4rem; flex-shrink: 0; }

/* ================================================================
   ADMIN PANEL
================================================================ */
.admin-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr; }
@media (min-width: 960px) { .admin-wrap { grid-template-columns: 220px 1fr; } }
.admin-sidebar {
  background: var(--deep); border-right: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0; display: none; flex-direction: column;
}
@media (min-width: 960px) { .admin-sidebar { display: flex; } }
.admin-logo { font-family: var(--serif); font-size: 1rem; color: var(--gold); padding: 0 1.25rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: .75rem; }
.admin-nav-link {
  display: block; padding: .65rem 1.25rem; font-size: .82rem; color: rgba(240,234,216,.5);
  transition: .2s; border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.on { color: var(--bone); border-left-color: var(--gold); background: rgba(200,149,42,.04); }
.admin-main { overflow: auto; }
.admin-head {
  background: var(--deep); border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 1.5rem; height: 56px; display: flex; align-items: center; gap: 1rem;
  position: sticky; top: 0; z-index: 10;
}
.admin-head h1 { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.admin-content { padding: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; margin-bottom: 1.5rem; }
@media (min-width: 700px) { .admin-stats { grid-template-columns: repeat(4,1fr); } }
.admin-stat { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 1.1rem; }
.admin-stat-n { font-family: var(--mono); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.admin-stat-l { font-size: .62rem; color: var(--slate); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.admin-table-wrap { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); overflow: hidden; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.admin-table th { padding: 9px 12px; text-align: left; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,234,216,.35); border-bottom: 1px solid rgba(255,255,255,.06); white-space: nowrap; }
.admin-table td { padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,.04); color: rgba(240,234,216,.72); }
.admin-table tr:hover td { background: rgba(255,255,255,.015); }
.status-badge { display: inline-block; padding: 2px 7px; border-radius: 50px; font-size: .62rem; font-weight: 700; }
.sb-pending   { background: rgba(255,255,255,.06); color: rgba(240,234,216,.4); border: 1px solid rgba(255,255,255,.1); }
.sb-paid, .sb-confirmed { background: rgba(46,204,113,.1); color: #2ecc71; border: 1px solid rgba(46,204,113,.25); }
.sb-rejected, .sb-refunded { background: rgba(158,36,24,.1); color: #e74c3c; border: 1px solid rgba(158,36,24,.25); }
.admin-form-row { display: flex; gap: .4rem; align-items: center; }
.admin-sel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 4px; color: var(--bone); padding: 5px 7px; font-size: .76rem; outline: none; }
.admin-sel option { background: var(--deep); }
.admin-update-btn { background: var(--gold); color: var(--ink); padding: 5px 12px; border-radius: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: .2s; }
.admin-update-btn:hover { background: var(--gold2); }
.admin-tab { display: none; }
.admin-tab.on { display: block; }
.admin-tabs { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.admin-tab-btn { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 4px; color: rgba(240,234,216,.45); padding: 7px 14px; font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; transition: .2s; }
.admin-tab-btn:hover { border-color: rgba(200,149,42,.3); color: var(--gold); }
.admin-tab-btn.on { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ================================================================
   CHAT WIDGET
================================================================ */
.chat-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  border: none; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,149,42,.35); transition: .2s;
}
.chat-launcher:hover { background: var(--gold2); transform: scale(1.08); }
.chat-box {
  position: fixed; bottom: 88px; right: 24px; z-index: 401;
  width: min(340px, calc(100vw - 48px));
  background: var(--deep); border: 1px solid rgba(200,149,42,.2);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  display: none;
}
.chat-box.open { display: flex; flex-direction: column; }

/* ================================================================
   MISC / UTILITIES
================================================================ */
.floating-balls { display: none !important; }
.page-hero-video-placeholder, .video-section { display: none; }

/* Flag images */
img[src*="flagcdn"] {
  display: inline-block !important;
  vertical-align: middle;
  border-radius: 2px;
}
