/* ============================================================
   KELVIN GASTELUM — "THE HALL OF FAME EXHIBIT"
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --ink:         #0C0A08;
  --surface:     #14100B;
  --surface-2:   #1B160F;
  --gold:        #D4AF6A;
  --gold-deep:   #7A6236;
  --gold-bright: #F4E3BB;
  --ivory:       #F2EAD9;
  --ivory-dim:   rgba(242,234,217,.62);
  --hairline:    rgba(122,98,54,.38);
  --foil: linear-gradient(105deg,#8A6D3D 0%,#D4AF6A 38%,#F4E3BB 50%,#D4AF6A 62%,#8A6D3D 100%);

  --f-display: "Bodoni Moda", Georgia, serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;
  --f-mono:    "Fragment Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

/* ---- RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- GRAIN OVERLAY ---- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- SHARED TYPE ---- */
.foil {
  background: var(--foil);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--ivory);
}

.body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ivory-dim);
  max-width: 58ch;
}

.italic-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.4;
}

.sep { color: var(--gold); padding: 0 .35em; }

.nb { white-space: nowrap; }

/* Engraved hairline rule + diamond */
.rule {
  position: relative;
  height: 1px;
  background: var(--hairline);
  margin: 1.6rem 0;
  max-width: 100%;
}
.rule .diamond {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--gold);
  font-size: .6rem;
  line-height: 1;
  padding: 0 .5rem;
}
.section-head .rule,
.rule { max-width: 640px; }

/* ---- RING BADGE ---- */
.badge-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.ring-badge {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ivory-dim);
  transition: border-color .5s ease, color .5s ease, box-shadow .5s ease;
}
.ring-badge.lit {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,106,.28);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.1em 2.2em;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(212,175,106,.08);
}

/* ---- LAYOUT HELPERS ---- */
.section { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; overflow: hidden; }
.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head .h2 { margin-top: .3rem; }
.section-head .italic-lede { margin-top: 1.2rem; }

/* Scroll-margin so smooth-scroll lands below fixed header */
section[id], [id="newsletter"] { scroll-margin-top: 88px; }

/* Ghost foil numerals */
.ghost-numeral {
  position: absolute;
  z-index: 0;
  font-family: var(--f-display);
  font-weight: 800;
  opacity: .1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.fight .ghost-numeral {
  font-size: 28rem;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
}
.ledger .ghost-32 {
  font-size: 26rem;
  right: 0; top: -2rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,10,8,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark { width: 42px; height: 42px; }
.brand-word {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--ivory);
}
.nav-desktop { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav-link {
  position: relative;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .2s ease;
  padding-bottom: 6px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-ig { color: var(--ivory-dim); transition: color .2s ease; display: grid; place-items: center; }
.nav-ig:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
}

/* Overlay menu */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
}
.overlay-menu[hidden] { display: none; }
.overlay-close {
  position: absolute;
  top: 1.4rem; right: var(--gutter);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}
.overlay-nav { display: flex; flex-direction: column; gap: 1.3rem; }
.overlay-link {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(14px);
}
.overlay-menu.open .overlay-link {
  animation: overlayIn .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.overlay-menu.open .overlay-link:nth-child(1) { animation-delay: .05s; }
.overlay-menu.open .overlay-link:nth-child(2) { animation-delay: .10s; }
.overlay-menu.open .overlay-link:nth-child(3) { animation-delay: .15s; }
.overlay-menu.open .overlay-link:nth-child(4) { animation-delay: .20s; }
.overlay-menu.open .overlay-link:nth-child(5) { animation-delay: .25s; }
.overlay-menu.open .overlay-link:nth-child(6) { animation-delay: .30s; }
.overlay-idx {
  font-family: var(--f-mono);
  font-size: .9rem;
  color: var(--gold);
  min-width: 2.4rem;
}
@keyframes overlayIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   PROGRESS RAIL
   ============================================================ */
.rail, .rail-top { display: none; }
html[data-io] .rail {
  display: block;
  position: fixed;
  left: 2.2rem; top: 20vh;
  width: 1px; height: 60vh;
  background: var(--hairline);
  z-index: 40;
  pointer-events: none;
}
.rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
}
.rail-tip {
  position: absolute;
  left: 50%; bottom: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, 50%) rotate(45deg);
  box-shadow: 0 0 8px rgba(212,175,106,.6);
}
html[data-io] .rail-top {
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 55;
  pointer-events: none;
}
.rail-top-fill {
  display: block;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
@media (min-width: 1100px) { html[data-io] .rail-top { display: none; } }
@media (max-width: 1099px) { html[data-io] .rail { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100svh, 1000px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed fight image + cinematic layers */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-atmos {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(46% 52% at 64% 38%, rgba(212,175,106,.16), transparent 65%),
    radial-gradient(120% 110% at 50% 50%, transparent 58%, rgba(12,10,8,.55) 100%);
  pointer-events: none;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 72%, var(--ink) 98%),
    linear-gradient(90deg, var(--ink) 6%, rgba(12,10,8,.80) 24%, rgba(12,10,8,.34) 46%, rgba(12,10,8,.06) 64%, transparent);
  pointer-events: none;
}
.hero-ghost-shield {
  position: absolute;
  left: -4%;
  top: 0; bottom: 0;
  margin: auto 0;
  width: min(60vw, 700px);
  height: min(60vw, 700px);
  background: url("../assets/logo-kg.png") center/contain no-repeat;
  filter: grayscale(1);
  opacity: .03;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}
.hero-exit {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
}
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 52rem;
  padding: 7rem clamp(1.5rem,4vw,3rem) 4rem clamp(1.5rem,6vw,6rem);
  will-change: transform;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.hero-eyebrow .dash {
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 8.2rem);
  line-height: .92;
  letter-spacing: -.02em;
}
.name-line { display: block; }
.name-kelvin { color: var(--ivory); }
.name-gastelum { background-position: 100% 0; }
.hero-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 1.4rem;
}
.hero-meta {
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--ivory-dim);
  letter-spacing: .04em;
  margin-top: 1.5rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-caption {
  position: absolute;
  right: 3.4rem; bottom: 1.4rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--ivory-dim);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
}
.hero-side {
  position: absolute;
  right: .4rem; top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--ivory-dim);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: .9rem 0;
  overflow: hidden;
  background: var(--ink);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker-group {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .25em;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   THE FIGHT
   ============================================================ */
.fight {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.fight-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 6rem;
  align-items: start;
}
.plaque-meta {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 1.6rem 0;
}
.fight-text .body { margin-bottom: 2rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-bottom: 2.4rem;
}
.fact {
  background: var(--surface-2);
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.fact-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.fact-label {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--ivory-dim);
}

.date-echo {
  border: 1px solid var(--hairline);
  padding: 1.5rem 1.6rem;
  margin-bottom: 2.4rem;
}
.date-echo p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ivory);
}
.date-echo em { color: var(--gold); font-style: italic; }

.payoff {
  background: var(--gold);
  color: var(--ink);
  padding: 1.6rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  line-height: 1.7;
}

/* Museum double-mat frame */
.museum-frame {
  border: 1px solid var(--gold);
  padding: 10px;
  position: relative;
  background: var(--ink);
}
.museum-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--hairline);
  pointer-events: none;
  z-index: 2;
}
.museum-frame img {
  width: 100%;
  filter: sepia(.12) contrast(1.03);
}
.frame-caption {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--ivory-dim);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
.fight-artifact { margin: 0; }

/* ============================================================
   STORY
   ============================================================ */
.beats { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }
.beat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.beat-reverse .beat-media { order: 2; }
.beat-media { margin: 0; }
.beat-media .museum-frame img { filter: sepia(.14) contrast(1.03); }
.beat-media-hof { max-width: 600px; }
.beat-copy { max-width: 46ch; }
.beat-index {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .6rem;
}
.beat-year {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.beat-quote {
  text-align: center;
  padding: clamp(1rem, 4vw, 2.5rem) 0;
}
.beat-quote .rule { max-width: min(680px, 100%); margin-left: auto; margin-right: auto; }
.beat-index.center { text-align: center; margin: 1.6rem 0 1.4rem; }
.pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--ivory);
  max-width: 26ch;
  margin: 0 auto;
}

/* ============================================================
   THE LEDGER
   ============================================================ */
.stat-plates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-bottom: 1.4rem;
}
.stat-plate {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--ivory-dim);
}
.stat-strip {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--ivory-dim);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.minor-eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.victories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.victory {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .25s ease, transform .25s ease;
}
.victory:hover { border-color: var(--gold); transform: translateY(-4px); }
.v-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.05;
}
.v-method {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--gold);
}
.v-event {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--ivory-dim);
}

/* Fight table */
.fight-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-mono);
  font-size: .74rem;
}
.fight-table th {
  text-align: left;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--gold);
  padding: 0 .8rem 1rem;
  border-bottom: 1px solid var(--hairline);
}
.fight-table td {
  padding: .85rem .8rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
  letter-spacing: .03em;
  color: var(--ivory-dim);
}
.fight-table .col-res { width: 3.5rem; white-space: nowrap; }
.fight-table .col-date { white-space: nowrap; color: var(--ivory-dim); }
.res { display: inline-flex; align-items: center; gap: .5rem; }
.r-w .col-opp, .r-w .res { color: var(--gold); }
.r-w .mark {
  width: 6px; height: 6px;
  background: var(--gold);
  display: inline-block;
}
.r-l .col-opp { color: var(--ivory-dim); }
.r-nc .res { color: var(--ivory-dim); }
.fight-table .star { color: var(--gold); }
.fight-table .dagger { color: var(--gold); }
.table-foot {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--ivory-dim);
  margin-top: 1.4rem;
}

/* ============================================================
   THE REEL
   ============================================================ */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.video-card { margin: 0; }
.video-lite {
  display: block;
  width: 100%;
  padding: 0;
}
.video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.play-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 1rem;
  z-index: 3;
  transition: transform .25s ease, background-color .25s ease;
  padding-left: 3px;
}
.video-lite:hover .play-ring { transform: translate(-50%,-50%) scale(1.08); background: var(--gold-bright); }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   SHOP
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.product { margin: 0; display: flex; flex-direction: column; }
.product-frame {
  border: 1px solid var(--hairline);
  background: #EFE9DC;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.product-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.product-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: .4rem;
}
.product-price {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.btn-cart { width: 100%; margin-top: auto; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
/* All four logos forced to one warm-ivory silhouette so they read at
   equal weight; per-logo heights balance wordmarks vs. crests. */
.partner-logos img {
  width: auto;
  filter: brightness(0) invert(.93) sepia(.22) saturate(1.15) brightness(1.02);
  opacity: .75;
  transition: opacity .3s ease;
}
.partner-logos img:hover { opacity: 1; }
.pl-jimmy { height: 30px; }
.pl-kings { height: 52px; }
.pl-ufc   { height: 34px; }
.pl-fw    { height: 44px; }

.partner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 720px;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.field input, .field textarea {
  font-family: var(--f-body);
  font-size: .95rem;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: .85rem 1rem;
  transition: border-color .2s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-actions { align-items: flex-start; }
.form-note {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .06em;
  padding: 1rem 1.2rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ink);
}
.newsletter-inner { text-align: center; max-width: 640px; }
.newsletter .eyebrow { margin-bottom: 1.2rem; }
.newsletter-h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ivory);
  line-height: 1.1;
}
.newsletter-mono {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin: 1rem 0 2rem;
}
.newsletter-form {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input {
  font-family: var(--f-body);
  font-size: .95rem;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: .85rem 1.2rem;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-note {
  margin-top: 1.4rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: clamp(3.5rem, 7vw, 5rem) 0 3rem;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo { width: 56px; height: 56px; margin-bottom: 1.4rem; }
.footer-inner .rule { width: 100%; max-width: 340px; }
.footer-socials { display: flex; gap: 1.5rem; margin: 1.6rem 0; }
.footer-socials a { color: var(--ivory-dim); transition: color .2s ease; display: grid; place-items: center; }
.footer-socials a:hover { color: var(--gold); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 1.6rem;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal p {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .06em;
  color: var(--ivory-dim);
  line-height: 1.9;
}
.footer-disclaimer { max-width: 46ch; margin: .6rem auto 0; opacity: .8; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  padding: .9rem 1.6rem;
  z-index: 80;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast[hidden] { display: block; }

/* ============================================================
   NAV FLASH
   ============================================================ */
.flash > .section-inner,
.flash.newsletter > .section-inner {
  animation: flashPulse 1.2s ease;
  border-radius: 2px;
}
@keyframes flashPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,106,0); }
  25%  { box-shadow: 0 0 0 2px rgba(212,175,106,.55), 0 0 30px rgba(212,175,106,.35); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,106,0); }
}

/* ============================================================
   ENTRANCE + SCROLL-REVEAL (gated: html[data-entrance="js"] ONLY)
   ============================================================ */
html[data-entrance="js"] .reveal { opacity: 0; transform: translateY(24px); }
html[data-entrance="js"] .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}

/* Hero entrance — hidden only under gate */
html[data-entrance="js"] .hero-eyebrow,
html[data-entrance="js"] .hero-italic,
html[data-entrance="js"] .hero-meta,
html[data-entrance="js"] .hero-cta { opacity: 0; transform: translateY(18px); }
html[data-entrance="js"] .name-line { opacity: 0; transform: translateY(30px); clip-path: inset(-12% -8% 100% -8%); }

/* Play triggers */
html[data-entrance="js"] .hero.play .hero-bg {
  animation: heroSettle 6s cubic-bezier(.16,.6,.2,1) both;
}
html[data-entrance="js"] .hero.play .name-kelvin {
  animation: nameReveal .8s cubic-bezier(.2,.7,.2,1) .25s forwards;
}
html[data-entrance="js"] .hero.play .name-gastelum {
  animation: nameReveal .8s cubic-bezier(.2,.7,.2,1) .4s forwards,
             sheenSweep 1.4s ease .9s 1;
}
html[data-entrance="js"] .hero.play .hero-eyebrow { animation: fadeRise .7s ease .55s forwards; }
html[data-entrance="js"] .hero.play .hero-italic  { animation: fadeRise .7s ease .7s forwards; }
html[data-entrance="js"] .hero.play .hero-meta    { animation: fadeRise .7s ease .85s forwards; }
html[data-entrance="js"] .hero.play .hero-cta     { animation: fadeRise .7s ease 1s forwards; }

/* Settled state — once entrance completes, JS adds .played so the final
   visible styles no longer depend on animation fill (lets the sheen re-arm). */
html[data-entrance="js"] .hero.played .hero-eyebrow,
html[data-entrance="js"] .hero.played .hero-italic,
html[data-entrance="js"] .hero.played .hero-meta,
html[data-entrance="js"] .hero.played .hero-cta { opacity: 1; transform: none; }
html[data-entrance="js"] .hero.played .name-line {
  opacity: 1; transform: none; clip-path: inset(-12% -8% -12% -8%);
}
html[data-entrance="js"] .hero.played .name-kelvin,
html[data-entrance="js"] .hero.played .name-gastelum { animation: none; }
html[data-entrance="js"] .hero.played .name-gastelum.resheen {
  animation: sheenSweep 1.4s ease 1;
}

@keyframes heroSettle {
  from { transform: scale(1.08) translateX(1.5%); }
  to   { transform: scale(1) translateX(0); }
}
@keyframes nameReveal {
  to { opacity: 1; transform: translateY(0); clip-path: inset(-12% -8% -12% -8%); }
}
@keyframes fadeRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sheenSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Short viewports — flex hero name down so both CTAs stay above the fold */
@media (max-height: 860px) and (min-width: 821px) {
  .hero-name { font-size: clamp(3rem, 6vw, 6.4rem); }
  .hero-left { padding-top: 6rem; padding-bottom: 2rem; }
}

/* Tablet / mobile header + overlay */
@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .ghost-numeral { display: none; }

  .fight-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fight-artifact { order: 2; }

  .beat { grid-template-columns: 1fr; gap: 2.2rem; }
  .beat-reverse .beat-media { order: 0; }

  .victories { grid-template-columns: repeat(2, 1fr); }
  .reel-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hero → mobile: full-bleed image centered on the impact, type bottom-anchored */
@media (max-width: 820px) {
  .hero-side, .hero-caption { display: none; }

  .hero { align-items: flex-end; }
  .hero-bg { object-position: 26% 30%; }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(12,10,8,.2), var(--ink) 78%);
  }
  .hero-ghost-shield { opacity: .04; }
  .hero-left {
    justify-content: flex-end;
    padding: 6rem 1.5rem 2.5rem;
    max-width: none;
  }
  .hero-name { font-size: 10.5vw; }
  .hero-cta { margin-top: 1.8rem; }
}

/* Very short mobile — guarantee both CTAs above the fold at 375×812 */
@media (max-width: 820px) and (max-height: 820px) {
  .hero-name { font-size: clamp(2.8rem, 9vw, 3.6rem); }
  .hero-italic { font-size: 1.15rem; margin-top: 1rem; }
  .hero-meta { margin-top: 1rem; }
  .hero-cta { margin-top: 1.4rem; }
}

@media (max-width: 640px) {
  .fight-table .col-event, .fight-table th.col-event { display: none; }
  .table-foot { text-align: left; }
}

@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .victories { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .stat-plates { grid-template-columns: repeat(2, 1fr); }
  .partner-form { grid-template-columns: 1fr; }
  .field-half { grid-column: 1 / -1; }
}

/* Clean 2-up shop at ≥420px on small phones */
@media (min-width: 420px) and (max-width: 560px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .hero-meta { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation-play-state: paused; }
}
