/* ============================================================
   Ballin in Boutwell 2026 — "The Next Act"
   Brand system: black stage, gold duotone, two type voices.
   ============================================================ */

/* ---------- Fonts (self-hosted Nike, woff2) ---------- */
/* Nike Gravity — heavy condensed sans. Impact / headlines / CTAs. */
@font-face {
  font-family: "Nike Gravity";
  src: url("../fonts/NikeGravity-Compressed.woff2") format("woff2");
  font-weight: 900;
  font-stretch: 75%;
  font-display: swap;
}
@font-face {
  font-family: "Nike Gravity";
  src: url("../fonts/NikeGravity-Condensed.woff2") format("woff2");
  font-weight: 800;
  font-stretch: 87%;
  font-display: swap;
}
@font-face {
  font-family: "Nike Gravity";
  src: url("../fonts/NikeGravity-ExtraCondensed.woff2") format("woff2");
  font-weight: 800;
  font-stretch: 70%;
  font-display: swap;
}
/* Nike Rhymes — editorial serif. Narrative / storytelling moments. */
@font-face {
  font-family: "Nike Rhymes";
  src: url("../fonts/NikeRhymesDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nike Rhymes";
  src: url("../fonts/NikeRhymesDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Nike Rhymes Text";
  src: url("../fonts/NikeRhymesText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --black: #171717;
  --black-deep: #0e0e0e;
  --gold: #c69f66;
  --gold-bright: #d8b57e;
  --white: #ffffff;
  --ink-60: rgba(255, 255, 255, 0.6);
  --ink-40: rgba(255, 255, 255, 0.4);
  --hairline: rgba(198, 159, 102, 0.22);

  --sans: "Nike Gravity", "Arial Narrow", system-ui, sans-serif;
  --serif: "Nike Rhymes", Georgia, "Times New Roman", serif;
  --serif-text: "Nike Rhymes Text", Georgia, serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --nav-h: 78px;
  --ticker-h: 38px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--ticker-h) + var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--serif-text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Film-grain overlay — lightweight SVG noise, fixed over everything. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type utilities ---------- */
.u-impact {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.005em;
}
.u-serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}
.u-eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
}
.u-gold { color: var(--gold); }
.u-white { color: var(--white); }

/* ---------- Duotone image treatment ----------
   Grayscale source multiplied over gold => shadows→black, highlights→gold.
   No extra image weight; hover can reveal full color. */
.duotone {
  position: relative;
  background: var(--gold);
  overflow: hidden;
}
.duotone > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  mix-blend-mode: multiply;
}
.duotone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0) 58%, rgba(23,23,23,0.7) 100%);
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.duotone > img { transition: filter 0.5s var(--ease); }

/* ---------- Layout ---------- */
.wrap {
  width: min(100% - calc(var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}
.wrap--wide {
  width: min(100% - calc(var(--gutter) * 2), 1520px);
  margin-inline: auto;
}
section { position: relative; }
.section-pad { padding-block: clamp(72px, 12vw, 160px); }

.section-head { margin-bottom: clamp(36px, 6vw, 72px); }
.section-head .u-eyebrow { display: block; margin-bottom: 18px; }
.section-title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: 0.004em;
  font-size: clamp(3.2rem, 10.5vw, 8.5rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  line-height: 1;
  padding: 1.18em 1.7em 0.92em;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { background: var(--gold-bright); transform: translateY(-2px); }
/* secondary: white outline */
.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}
.btn--dark:hover { background: #000; color: var(--gold-bright); }
/* non-clickable "coming soon" status button */
.btn--disabled {
  background: transparent;
  border-color: rgba(198, 159, 102, 0.4);
  color: rgba(198, 159, 102, 0.75);
  cursor: default;
}
.btn--disabled:hover { background: transparent; transform: none; }
.btn__arrow { font-family: var(--sans); font-weight: 900; }

/* ============================================================
   NAV
   ============================================================ */
/* ============================================================
   MATCHUPS TICKER — scrolling gold banner above the nav
   ============================================================ */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-deep);
  color: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  flex: none;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* logo-based ticker items (white team logos rendered black on the gold bar) */
.tk-group { display: inline-flex; align-items: center; gap: 1em; }
.tk-label {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--gold);
}
.tk-match { display: inline-flex; align-items: center; gap: 0.55em; }
.tk-logo {
  height: 22px;
  width: auto;
  max-width: 30px;
  object-fit: contain; /* white artwork stays white on the black bar */
}
.tk-mono {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--white);
}
.tk-vs {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0.6;
}
.tk-tbd {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.tk-dot { padding: 0 0.7em; font-size: 0.55rem; color: var(--gold); opacity: 0.55; }
.tk-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 1.6em;
  background: rgba(255, 255, 255, 0.22);
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
/* when there are no announced matchups, the ticker is hidden -> nav to the top */
body.no-ticker .nav { top: 0; }

.nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  background: rgba(14, 14, 14, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav--scrolled {
  background: rgba(14, 14, 14, 0.82);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(24px, 5vw, 72px);
}
.nav__logo { height: 50px; width: auto; }
.nav__logo img { height: 100%; width: auto; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 87%;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--white);
  padding: 0.62em 0.9em 0.42em;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { color: var(--gold); background: rgba(198, 159, 102, 0.1); }
/* Tickets CTA — always visible, right-aligned via space-between */
.nav__cta {
  padding: 0.85em 1.5em 0.68em;
  font-size: 0.92rem;
}
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ============================================================
   HERO — bold, gritty, centered content low in the frame
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
/* Wide featured banner up top */
.hero__media {
  position: relative;
  width: 100%;
  height: clamp(380px, 72vh, 820px);
  flex: none;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: contrast(1.06) saturate(1.06);
}
/* fade the black up into the photo */
.hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,23,23,0.3) 0%, rgba(23,23,23,0) 18%, rgba(23,23,23,0) 34%, rgba(23,23,23,0.55) 60%, rgba(23,23,23,0.9) 82%, var(--black) 94%);
}
/* text pulled up over the fade and continuing onto the black */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(-260px, -21vh, -150px);
  padding-bottom: clamp(36px, 5vh, 64px);
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
}
.hero__lockup {
  height: clamp(14px, 1.8vw, 20px);
  width: auto;
  opacity: 1;
  margin-bottom: clamp(2px, 0.6vw, 6px);
}
.hero__title {
  margin: 0;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.004em;
  font-size: clamp(3.4rem, 12.5vw, 11.5rem);
  color: var(--gold);
}

.hero__meta { /* smaller details — heavy condensed sans */
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 87%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: var(--white);
}
.hero__meta .dot { color: var(--gold); margin: 0 0.5em; }

.hero__saleline {
  margin: clamp(-12px, -1.3vw, -6px) 0 0; /* tighten gap to the dates line above */
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 2.3vw, 1.5rem);
  color: var(--gold);
}
.hero__saleline[hidden] { display: none; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(6px, 1.4vw, 12px);
}

/* ============================================================
   COUNTDOWN — solid gold band, below the matchups
   ============================================================ */
.countdown-section {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--hairline);
}
.countdown-section::before { /* blurred arena bg */
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/countdown-bg.jpg") center/cover no-repeat;
  filter: blur(8px) brightness(0.5) saturate(1.05);
  transform: scale(1.12);
  z-index: -2;
}
.countdown-section::after { /* glass tint */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.5);
  z-index: -1;
}
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 1.6vw, 18px);
  padding-block: clamp(30px, 4vw, 52px);
}
.countdown__label {
  margin: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
}
.countdown__units {
  display: flex;
  align-items: flex-start;
  gap: clamp(26px, 6vw, 72px);
}
.count__unit { text-align: center; }
.count__num {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.9;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.count__unit span {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* ============================================================
   MATCHUPS — "Set the Stage"
   ============================================================ */
.matchups { background: var(--black); padding-block: clamp(28px, 5vw, 64px); }
.matchups__grid {
  --cardgap: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--cardgap);
}

.card {
  position: relative;
  flex: 0 1 100%;
  background: var(--black);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(20px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
/* 2 per row */
@media (min-width: 620px) {
  .card { flex-basis: calc((100% - var(--cardgap)) / 2 - 0.5px); }
}
/* 3 up top, 2 centered below */
@media (min-width: 1000px) {
  .card { flex-basis: calc((100% - 2 * var(--cardgap)) / 3 - 0.5px); }
}
.card:hover { background: #1c1c1c; border-color: rgba(198, 159, 102, 0.4); }
.card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(198,159,102,0.10), transparent 60%);
  pointer-events: none;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: auto;
}
.card__day {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 87%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--white);
}
.card__time {
  font-family: var(--serif-text);
  color: var(--ink-60);
  font-size: 0.82rem;
  margin-top: 3px;
}
.card__sale-note {
  margin-top: 8px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.6rem;
  line-height: 1.3;
  color: var(--gold);
}
.badges { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.badge {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.58rem;
  padding: 0.62em 0.8em 0.42em;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--gold);
  white-space: nowrap;
}
/* MBB = gold tab, WBB = grey tab (division distinction) */
.badge--division { border-color: var(--gold); color: var(--black); background: var(--gold); }
.badge--division.badge--wbb {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.badge--special { border-color: var(--white); color: var(--white); }

/* Matchup: text-forward like the posters, logo slot optional */
.matchup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: clamp(20px, 2.4vw, 30px) 0;
}
.team {
  display: flex;
  align-items: center;
  gap: 13px;
}
.team__logo {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
}
.team__logo img { width: 100%; height: 100%; object-fit: contain; }
.team__logo--mono { /* fallback monogram when no logo asset */
  border: 1.5px solid var(--hairline);
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--gold);
}
/* opponent to be announced */
.team__logo--tbd {
  border: 1.5px dashed rgba(198, 159, 102, 0.4);
  border-radius: 50%;
}
.team--tbd .team__name { color: var(--ink-40); }
.team__name {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: 0.86;
  font-size: clamp(1.9rem, 2.3vw, 2.5rem);
  color: var(--white);
}
.team__mascot {
  font-family: var(--serif-text);
  color: var(--gold);
  font-size: 0.9rem;
  margin-left: 55px;
  margin-top: -9px;
}
.matchup__vs {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-40);
  font-size: 0.68rem;
  margin: 6px 0 6px 55px;
}

.card__cta { margin-top: 8px; }
.card__cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 1em 1em 0.78em;
  letter-spacing: 0.06em;
}

/* ============================================================
   PLACEHOLDER SECTIONS (built after hero + matchups sign-off)
   ============================================================ */
.stub {
  border-top: 1px solid var(--hairline);
}
.stub .section-title { color: var(--gold); }
.stub__note {
  font-family: var(--serif-text);
  color: var(--ink-40);
  font-style: italic;
  max-width: 46ch;
  margin-top: 18px;
}

/* ---------- Footer mini ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(40px, 6vw, 64px);
}
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: center; }
.footer__logos { display: flex; align-items: center; gap: 28px; }
.footer__logos img { height: 30px; width: auto; opacity: 0.9; }
.footer__legal { font-family: var(--serif-text); color: var(--ink-40); font-size: 0.85rem; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SHARED — section intro + gold-outline button variant
   ============================================================ */
.section-intro {
  margin: clamp(20px, 3vw, 30px) 0 0;
  max-width: 46ch;
  font-family: var(--serif-text);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   THE BOUTWELL STORY
   ============================================================ */
.story { border-top: 1px solid var(--hairline); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 900px) { .story__grid { grid-template-columns: 1.05fr 0.95fr; } }
.story__copy > .u-eyebrow { display: block; margin-bottom: clamp(14px, 2vw, 20px); }
.story__copy .section-title { margin-bottom: clamp(22px, 3vw, 34px); }
.story__copy p {
  max-width: 52ch;
  font-family: var(--serif-text);
  color: var(--white);
  margin: 0 0 1.1em;
}
.story__copy .lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.35;
  color: var(--white);
}
.pullquote {
  margin: clamp(28px, 4vw, 40px) 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold);
  margin: 0 0 0.5em;
}
.pullquote cite {
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--ink-40);
}
.pullquote.is-placeholder { opacity: 0.55; }
.story__copy .story__closer {
  max-width: none;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 0.9;
  color: var(--gold);
  margin: 0 0 clamp(24px, 3vw, 32px);
}
.story__media {
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
@media (max-width: 899px) { .story__media { aspect-ratio: 16 / 10; } }
.story__media:hover > img { filter: none; mix-blend-mode: normal; }

/* ============================================================
   FAN EXPERIENCE
   ============================================================ */
.experience { border-top: 1px solid var(--hairline); }
.exp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(36px, 5vw, 60px);
}
@media (min-width: 640px) { .exp__grid { grid-template-columns: repeat(3, 1fr); } }
.exp-card {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.exp-card:hover { border-color: rgba(198,159,102,0.4); transform: translateY(-3px); }
.exp-card__media { aspect-ratio: 4 / 5; }
.exp-card:hover .exp-card__media > img { filter: none; mix-blend-mode: normal; }
.exp-card__body { padding: clamp(20px, 2vw, 26px); }
.exp-card__title {
  margin: 0 0 0.5em;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold);
}
.exp-card__body p {
  margin: 0;
  font-family: var(--serif-text);
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.5;
}
.exp__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--hairline);
}
.exp__note p { margin: 0; max-width: 60ch; font-family: var(--serif-text); color: var(--white); }
.exp__note strong { color: var(--white); font-weight: 400; }
.exp__note a { color: var(--gold); }

/* ============================================================
   RELIVE 2025
   ============================================================ */
.relive { border-top: 1px solid var(--hairline); }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-top: clamp(20px, 3vw, 30px);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.relive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3px, 0.3vw, 5px);
  margin-top: clamp(6px, 0.6vw, 10px);
}
@media (min-width: 680px)  { .relive__grid { grid-template-columns: repeat(4, 1fr); } }
.relive__tile {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  cursor: pointer;
}
.relive__tile:hover > img { filter: none; mix-blend-mode: normal; }
.relive__tile:hover::after { opacity: 0.3; }

/* ============================================================
   TICKETS
   ============================================================ */
.tickets { border-top: 1px solid var(--hairline); }
.tickets__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 900px) { .tickets__layout { grid-template-columns: 0.9fr 1.1fr; } }

.seatmap {
  margin: clamp(32px, 4vw, 52px) auto 0;
  max-width: 1040px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(12px, 1.8vw, 24px);
  background: #0e0e0e;
}
.seatmap img { display: block; width: 100%; height: auto; border-radius: 8px; }
.seatmap svg { width: 100%; height: auto; }
.zone { stroke: rgba(23,23,23,0.6); stroke-width: 1.5; }
.zone--floor { fill: var(--gold); }
.zone--sideline { fill: rgba(198,159,102,0.5); }
.zone--endzone { fill: rgba(198,159,102,0.22); }
.seatmap__court {
  fill: var(--gold);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-anchor: middle;
  text-transform: uppercase;
}
.seatmap__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--ink-60);
}
.seatmap__legend span { display: inline-flex; align-items: center; gap: 8px; }
.seatmap__legend .dot { width: 12px; height: 12px; border-radius: 3px; }
.dot--floor { background: var(--gold); }
.dot--sideline { background: rgba(198,159,102,0.5); }
.dot--endzone { background: rgba(198,159,102,0.22); }

.tiers { display: flex; flex-direction: column; gap: clamp(12px, 1.5vw, 16px); }
.tier {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "name price" "blurb blurb" "perks perks";
  gap: 6px 16px;
  align-items: baseline;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  transition: border-color 0.4s var(--ease);
}
.tier:hover { border-color: rgba(198,159,102,0.4); }
.tier--featured { border-color: var(--gold); background: rgba(198,159,102,0.06); }
.tier__name {
  grid-area: name;
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--white);
}
.tier--featured .tier__name { color: var(--gold); }
.tier__price {
  grid-area: price;
  justify-self: end;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--gold);
}
.tier__blurb {
  grid-area: blurb;
  margin: 2px 0 0;
  font-family: var(--serif-text);
  color: var(--ink-60);
  font-size: 0.98rem;
}
.tier__perks {
  grid-area: perks;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tier__perks li {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.64rem;
  color: var(--gold);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.45em 0.75em;
}
.tickets__cta {
  margin-top: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.tickets__contact { margin: 14px 0 0; font-family: var(--serif-text); color: var(--ink-60); max-width: 52ch; }
.tickets__contact a { color: var(--gold); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners__lockup {
  height: clamp(20px, 3.2vw, 32px);
  width: auto;
  margin: clamp(16px, 2.4vw, 24px) 0 clamp(22px, 3vw, 32px);
}
.partners__inner .section-title { margin: 0; }
.partners__inner .section-intro { text-align: center; margin-inline: auto; }
.partners__inner .btn { margin-top: clamp(24px, 3vw, 34px); }

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.signup {
  border-top: 1px solid var(--hairline);
  background: #101010;
}
.signup__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 820px) { .signup__inner { grid-template-columns: 1fr 1fr; } }
.signup__copy .section-title { margin: 12px 0 0; }
.signup__note {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--white);
}
.signup__row { display: flex; gap: 10px; flex-wrap: wrap; }
.signup__row input {
  flex: 1 1 220px;
  min-width: 0;
  background: transparent;
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--serif-text);
  font-size: 1rem;
  padding: 1em 1.3em;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.signup__row input::placeholder { color: var(--ink-40); }
.signup__row input:focus { border-color: var(--gold); }
.signup__fineprint {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: var(--ink-40);
}
.signup__success {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
}

/* ============================================================
   FOOTER (expanded)
   ============================================================ */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}
@media (min-width: 760px) { .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer__brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.footer__logo { height: clamp(88px, 11vw, 128px); width: auto; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 87%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--ink-60);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact > a {
  font-family: var(--serif-text);
  color: var(--gold);
  font-size: 1.05rem;
}
.footer__social { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__social a {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--ink-60);
  transition: color 0.2s var(--ease);
}
.footer__social a:hover { color: var(--white); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--hairline);
}
.footer__legal { margin: 0; font-family: var(--serif-text); color: var(--ink-40); font-size: 0.85rem; }
