/* ==========================================================================
   Crazee Eagle Entertainment — crazeeeagle.com
   Design tokens
   ========================================================================== */
:root {
  --navy:        #0a0f24;
  --navy-2:      #121a3d;
  --navy-3:      #1a2657;
  --navy-soft:   #1c2554;
  --blue:        #1f5fac;
  --sky:         #9bc3f2;
  --gold:        #f6b31a;
  --gold-light:  #ffd166;
  --gold-dark:   #c97a00;
  --red:         #e2402f;
  --red-dark:    #a92418;
  --green:       #2ecc71;
  --cream:       #fff6e3;
  --ink:         #0a0f24;
  --line:        #2a3868;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-mark:    'Permanent Marker', cursive;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;

  --shadow-card: 0 12px 30px rgba(0,0,0,.35);
  --shadow-pop:  0 18px 44px rgba(0,0,0,.45);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy);
  color: #eef1fb;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: .5px; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mark);
  font-size: .95rem;
  color: var(--gold-light);
  letter-spacing: .5px;
  transform: rotate(-1.5deg);
  margin-bottom: 14px;
}
.eyebrow::before { content: '★'; color: var(--gold); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-head h2 span { color: var(--gold); }
.section-head p {
  margin-top: 14px;
  color: var(--sky);
  font-size: 1.08rem;
}

section { position: relative; }
.pad { padding: 96px 0; }
.pad-sm { padding: 60px 0; }

/* reveal-on-scroll — progressive enhancement only; content is visible by
   default so it never depends on JS running (no-JS, slow JS, crawlers). */
html.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(246,179,26,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(246,179,26,.5); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--sky);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn-red {
  background: linear-gradient(180deg, #ff6a55, var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(226,64,47,.35);
}
.btn-red:hover { transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(10,15,36,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  padding: 8px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand img { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-word span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-links a {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 600;
  color: #d7deee;
  text-transform: uppercase;
  letter-spacing: .3px;
  position: relative;
  padding: 6px 0;
  margin-right: 18px;
}
.nav-links a:last-child { margin-right: 0; }
.nav-links a:hover { color: var(--gold-light); }

.header-cta { display: flex; align-items: center; flex: 0 0 auto; }
.header-cta .btn-gold { white-space: nowrap; flex: 0 0 auto; padding: 14px 24px; font-size: .88rem; margin-right: 14px; }
.header-cta .nav-toggle { margin-right: 0; }
.btn-text-short { display: none; }

@media (max-width: 480px) {
  .brand-word { font-size: 1.05rem; }
  .header-cta .btn-gold { padding: 11px 16px; font-size: .82rem; margin-right: 10px; }
  .btn-text-full { display: none; }
  .btn-text-short { display: inline; }
}

@media (max-width: 400px) {
  .site-header .container { padding-left: 16px; padding-right: 16px; }
  .brand { gap: 6px; }
  .brand img { width: 34px; height: 34px; }
  .brand-word { font-size: .88rem; }
  .header-cta .btn-gold { padding: 9px 13px; font-size: .74rem; margin-right: 8px; }
  .nav-toggle { width: 36px; height: 34px; font-size: 1.05rem; }
}

/* Note: .site-header .container inherits max-width:1180px from .container,
   so header content never gets more than ~1132px of usable width no matter
   how wide the viewport is — there's no "roomier" breakpoint to step up to.
   The spacing below is sized to fit that fixed budget with margin to spare. */

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--sky);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  color: #fff;
  font-size: 1.2rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 168px 0 0;
  background:
    radial-gradient(ellipse 900px 560px at 82% 18%, rgba(31,95,172,.45), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(246,179,26,.12), transparent 60%),
    linear-gradient(180deg, #0d1330 0%, var(--navy) 55%, var(--navy) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.02;
  text-shadow: 0 6px 0 rgba(0,0,0,.25);
}
.hero-copy h1 .hl {
  color: var(--gold);
  -webkit-text-stroke: 1.5px rgba(0,0,0,.25);
}
.hero-copy p.lede {
  margin-top: 22px;
  font-size: 1.18rem;
  color: #cdd6ef;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-tags span {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--sky);
}

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art .glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(246,179,26,.35), transparent 65%);
  filter: blur(10px);
  border-radius: 50%;
}
.hero-art img {
  position: relative;
  width: min(430px, 90%);
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.55));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-chip {
  position: absolute;
  background: var(--navy-2);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.hero-chip.c1 { top: 10%; left: -6%; transform: rotate(-6deg); }
.hero-chip.c2 { bottom: 10%; right: -4%; transform: rotate(5deg); }
.hero-chip .num { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 10px; }
  .hero-art img { width: min(300px, 70%); }
  .hero-chip { display: none; }
}

/* ==========================================================================
   Marquee ribbon (signature element)
   ========================================================================== */
.marquee-wrap {
  position: relative;
  margin-top: 70px;
  background: linear-gradient(180deg, var(--blue), #163f74);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: skewY(-1.6deg);
  transform-origin: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.marquee-track-outer { overflow: hidden; transform: skewY(1.6deg); }
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-set { display: flex; align-items: center; white-space: nowrap; }
.marquee span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 26px;
}
.marquee span.star { color: var(--gold); font-size: .9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Games section
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.game-card {
  background: linear-gradient(180deg, var(--navy-2), var(--navy-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.game-card .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-gold { background: rgba(246,179,26,.15); color: var(--gold-light); border: 1px solid rgba(246,179,26,.4); }
.tag-blue { background: rgba(31,95,172,.25); color: var(--sky); border: 1px solid rgba(31,95,172,.5); }
.tag-red  { background: rgba(226,64,47,.18); color: #ff9a8a; border: 1px solid rgba(226,64,47,.4); }

.game-card .icon-badge {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  background: var(--navy);
  border: 1px solid var(--line);
}
.game-card h3 {
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.game-card p { color: #b9c2e0; font-size: .98rem; margin-bottom: 18px; }
.game-card .feat-list li {
  display: flex;
  gap: 8px;
  font-size: .88rem;
  color: #cfd7f0;
  padding: 5px 0;
}
.game-card .feat-list li::before { content: '✓'; color: var(--green); font-weight: 800; }
.game-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  color: var(--gold-light);
}
.game-card .learn::after { content: '→'; transition: transform .15s ease; }
.game-card:hover .learn::after { transform: translateX(4px); }

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

/* ==========================================================================
   Detail sections (alternating)
   ========================================================================== */
.detail {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail-grid.reverse .detail-media { order: 2; }
.detail-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.device-frame {
  width: 100%;
  max-width: 420px;
  background: #04060f;
  border: 10px solid #1c2554;
  border-radius: 22px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: relative;
}
.device-frame .bar {
  height: 26px;
  background: #0a0f24;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.device-frame .bar i { width: 8px; height: 8px; border-radius: 50%; background: #2a3868; display: block; }
.device-screen { padding: 22px; min-height: 340px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.device-screen .qcat { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); font-weight: 800; }
.device-screen .qtext { font-family: var(--font-display); font-size: 1.3rem; color: #fff; line-height: 1.25; }
.device-screen .choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.device-screen .choices div {
  background: var(--navy-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 10px; font-size: .82rem; color: #dbe1f6; text-align: center;
}
.device-screen .choices div.correct { border-color: var(--green); color: #b8f3cf; background: rgba(46,204,113,.12); }
.device-screen .lb-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; padding: 8px 12px; background: var(--navy-2); border-radius: 8px; border: 1px solid var(--line); }
.device-screen .lb-row .pts { color: var(--gold-light); font-weight: 800; }
.device-badge {
  position: absolute; bottom: -18px; right: 6%;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display);
  padding: 10px 18px; border-radius: 12px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-card);
  font-size: .95rem;
}

.detail-copy .eyebrow { }
.detail-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 16px;
}
.detail-copy h2 span { color: var(--gold); }
.detail-copy p.desc { color: #c3cbe6; font-size: 1.04rem; margin-bottom: 24px; }
.detail-list { display: grid; gap: 14px; margin-bottom: 28px; }
.detail-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .96rem; color: #dbe1f6;
}
.detail-list .num {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--navy-2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
}

/* Bingo card mock */
.bingo-mock {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.bingo-mock div {
  aspect-ratio: 1;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.bingo-mock div.hit { background: rgba(226,64,47,.25); border-color: var(--red); color: #fff; }
.bingo-mock div.free { background: rgba(246,179,26,.2); border-color: var(--gold); font-family: var(--font-display); color: var(--gold-light); font-size: .7rem; }

@media (max-width: 900px) {
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; }
  .detail-grid.reverse .detail-media { order: -1; }
}

/* ==========================================================================
   Find a Game — day tabs + schedule
   ========================================================================== */
.day-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.day-tab {
  background: var(--navy-2);
  border: 1.5px solid var(--line);
  color: #cfd7f0;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 10px 20px;
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.day-tab:hover { border-color: var(--gold); color: #fff; }
.day-tab.is-active {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold);
  color: var(--navy);
}

.schedule-note { text-align: center; font-size: .82rem; color: #7b85ac; margin: -14px 0 26px; }
.schedule-panel { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.schedule-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.schedule-row .time {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  flex: none;
  width: 92px;
}
.schedule-row .who { flex: 1; min-width: 0; }
.schedule-row .who .vname { color: #fff; font-weight: 700; font-size: .98rem; }
.schedule-row .who .vcity { color: #9aa4cc; font-size: .85rem; }
.schedule-row .game-pill {
  flex: none;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 6px 12px;
  border-radius: 999px;
}
.schedule-empty {
  text-align: center;
  background: var(--navy-2);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 24px;
  color: #9aa4cc;
}
.schedule-empty strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 6px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .4px; }

.schedule-cta { margin-top: 40px; display: flex; justify-content: center; }
.notify-card {
  width: 100%;
  max-width: 640px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.notify-card h4 { color: #fff; font-size: 1.05rem; text-transform: uppercase; margin-bottom: 6px; }
.notify-card p { color: #aeb8dd; font-size: .88rem; max-width: 320px; }
.notify-form { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-form input {
  background: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  font-family: inherit;
  min-width: 220px;
}
.notify-form input:focus { outline: none; border-color: var(--gold); }
.notify-form .btn { padding: 12px 22px; }

@media (max-width: 600px) {
  .schedule-row { flex-wrap: wrap; }
  .notify-card { flex-direction: column; align-items: flex-start; }
  .notify-form { width: 100%; }
  .notify-form input { flex: 1; min-width: 0; }
}

/* ==========================================================================
   Leagues & Rankings
   ========================================================================== */
.leagues-band { border-top: 1px solid var(--line); }
.league-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.league-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 16px;
}
.league-copy h2 span { color: var(--gold); }
.league-copy .desc { color: #c3cbe6; font-size: 1.02rem; margin-bottom: 22px; }
.league-copy .detail-list li strong { color: #fff; }

.league-board {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.board-head {
  padding: 14px 16px;
  font-family: var(--font-display);
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .4px;
}
.board-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
}
.board-row .rank {
  font-family: var(--font-display);
  color: var(--gold);
  width: 22px;
  flex: none;
}
.board-row .name { flex: 1; color: #eef1fb; font-weight: 600; font-size: .95rem; }
.board-row .pts { font-family: var(--font-display); color: var(--gold-light); }
.board-row.muted { opacity: .55; }
.board-row.muted .name { font-style: italic; }
.board-note { padding: 10px 16px 4px; font-size: .76rem; color: #7b85ac; }

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

/* ==========================================================================
   Become a Host
   ========================================================================== */
.host-band {
  background: linear-gradient(135deg, rgba(226,64,47,.14), transparent 55%), var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.host-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: center;
}
.host-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.host-copy h2 span { color: var(--gold); }
.host-copy p { color: #c3cbe6; font-size: .98rem; max-width: 480px; }
.host-perks { display: grid; gap: 10px; }
.host-perks li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #dbe1f6; }
.host-perks .ic { font-size: 1.2rem; }

@media (max-width: 900px) {
  .host-grid { grid-template-columns: 1fr; text-align: left; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  flex: none;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: #b9c2e0; font-size: .94rem; padding-bottom: 20px; margin: 0; }

/* ==========================================================================
   Contact extras
   ========================================================================== */
.contact-hours {
  margin-top: 22px;
  font-size: .88rem;
  color: #9aa4cc;
  line-height: 1.6;
}
.contact-hours strong { color: #fff; }
.footer-hours { font-size: .85rem; color: #7b85ac; margin-top: 10px; line-height: 1.6; }

/* ==========================================================================
   Venue pitch band
   ========================================================================== */
.venue-band {
  background:
    linear-gradient(180deg, rgba(226,64,47,.08), transparent 30%),
    var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.venue-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.venue-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.06;
  margin-bottom: 18px;
}
.venue-copy h2 span { color: var(--gold); }
.venue-copy p.desc { color: #c3cbe6; font-size: 1.06rem; margin-bottom: 30px; max-width: 480px; }

.perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
}
.perk .ic { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.perk h4 { font-size: .95rem; text-transform: uppercase; color: #fff; margin-bottom: 6px; letter-spacing: .3px; }
.perk p { font-size: .85rem; color: #aeb8dd; }

@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .perk-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   How it works (numbered — real sequence)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 { color: #fff; font-size: 1.05rem; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: #aeb8dd; font-size: .9rem; }
.step::after {
  content: '';
  position: absolute;
  top: 40px; right: -22px;
  width: 22px; height: 2px;
  background: var(--line);
  display: block;
}
.step:last-child::after { display: none; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band {
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
}
.stat .l {
  margin-top: 10px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--sky);
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
}

/* ==========================================================================
   Testimonials — ticket stub cards
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ticket {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  position: relative;
  box-shadow: var(--shadow-card);
  transform: rotate(var(--r, -1deg));
}
.testi-grid .ticket:nth-child(2) { --r: 1deg; }
.testi-grid .ticket:nth-child(3) { --r: -0.6deg; }
.ticket::before, .ticket::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--navy);
  border-radius: 50%;
}
.ticket::before { left: -10px; }
.ticket::after { right: -10px; }
.ticket .stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.ticket p.quote { font-size: .98rem; line-height: 1.5; margin-bottom: 16px; }
.ticket .who { font-family: var(--font-mark); font-size: 1.05rem; color: var(--red-dark); }
.ticket .who small { display: block; font-family: var(--font-body); font-size: .78rem; color: #6b6450; font-weight: 600; margin-top: 2px; }

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

/* ==========================================================================
   Contact / CTA
   ========================================================================== */
.contact-band {
  background: radial-gradient(ellipse 900px 500px at 20% 0%, rgba(31,95,172,.35), transparent 60%), var(--navy);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-side h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.08;
}
.contact-side h2 span { color: var(--gold); }
.contact-side p { color: #c3cbe6; margin-bottom: 22px; }
.contact-side .mini-list li {
  display: flex; gap: 10px; padding: 8px 0; font-size: .94rem; color: #dbe1f6;
}
.contact-side .mini-list li::before { content: '★'; color: var(--gold); }

.form-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .4px; color: var(--sky); margin-bottom: 6px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .78rem; color: #8b95bd; margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #060914;
  border-top: 3px solid var(--gold);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand .brand-word { font-size: 1.15rem; }
.footer-col p.tag { color: #9aa4cc; font-size: .92rem; max-width: 300px; margin-bottom: 18px; }
.footer-col h5 {
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 16px; font-family: var(--font-body); font-weight: 800;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { color: #aeb8dd; font-size: .92rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: #cfd7f0;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: .82rem;
  color: #7b85ac;
}
.footer-bottom a { color: #7b85ac; }
.footer-bottom a:hover { color: var(--gold-light); }

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

/* ==========================================================================
   Mobile nav
   ========================================================================== */
@media (max-width: 1300px) {
  .nav-links { 
    position: fixed; top: 66px; left: 16px; right: 16px;
    background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius);
    flex-direction: column; align-items: flex-start; padding: 18px 22px;
    gap: 4px;
    box-shadow: var(--shadow-pop);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; width: 100%; margin-right: 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}
