/* ============================================================
   IRON CROWN FIGHTING CHAMPIONSHIP
   Single-page institutional site — Veydros Collective example
   ============================================================ */

/* ----------------------------- TOKENS */
:root {
  --black:          #0A0A0A;
  --carbon:         #111111;
  --charcoal:       #1A1A1A;
  --steel:          #242424;
  --steel-line:     #2E2E2E;
  --ash:            #6B6B6B;
  --ash-light:      #8A8A8A;
  --bone:           #E8E4DC;
  --bone-dim:       #C9C4BA;
  --oxblood:        #6E1414;
  --oxblood-bright: #8B1A1A;
  --oxblood-deep:   #4A0D0D;

  --font-display: 'Anton', 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --font-sub:     'Oswald', 'Inter', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --shell-pad:    clamp(1.25rem, 4vw, 4rem);
  --shell-max:    1480px;

  --section-pad:  clamp(5rem, 10vw, 9rem);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }

::selection { background: var(--oxblood); color: var(--bone); }

/* Lenis hooks */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

/* ----------------------------- TYPOGRAPHY */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: var(--oxblood);
}
.eyebrow-light { color: var(--ash-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.25rem;
}

.section-dek {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 36ch;
}

/* ----------------------------- LAYOUT */
section { padding: var(--section-pad) var(--shell-pad); position: relative; }

.section-head {
  max-width: var(--shell-max);
  margin: 0 auto 4rem;
}
.section-head-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head-split {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
  .section-head-split .section-dek {
    margin-bottom: 0.5rem;
    max-width: 40ch;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--shell-pad);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0));
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--steel-line);
  padding: 0.85rem var(--shell-pad);
}

.nav-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  flex-shrink: 0;
}
.brand-mark { color: var(--oxblood-bright); display: inline-flex; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-line-1 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}
.brand-line-2 {
  font-family: var(--font-sub);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ash-light);
  margin-top: 0.25rem;
}

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--oxblood-bright);
  transition: right 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { right: 0; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--steel-line);
  background: transparent;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.nav-cta:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--bone);
}
.nav-cta span { transition: transform 0.25s var(--ease-out); display: inline-block; }
.nav-cta:hover span { transform: translateX(3px); }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  padding: 6rem var(--shell-pad) 2rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.25rem; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bone);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--steel-line);
}
.nav-mobile-cta { color: var(--oxblood-bright) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 7rem var(--shell-pad) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) brightness(0.55) saturate(0.85);
  will-change: transform;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(110, 20, 20, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 35%, rgba(10,10,10,0.95) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
}

.hero-numeral {
  position: absolute;
  right: -3vw;
  top: 8vh;
  font-family: var(--font-display);
  font-size: clamp(14rem, 35vw, 32rem);
  line-height: 0.85;
  color: rgba(110, 20, 20, 0.13);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: -1;
  user-select: none;
  will-change: transform;
}

.hero-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-tag {
  background: var(--oxblood);
  color: var(--bone);
  padding: 0.4rem 0.85rem;
  letter-spacing: 0.22em;
}
.hero-eyebrow-divider {
  display: none;
  width: 2.5rem;
  height: 1px;
  background: var(--steel-line);
}
@media (min-width: 700px) { .hero-eyebrow-divider { display: block; } }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
}
.hero-headline-line { display: inline-block; color: var(--bone); }
.hero-headline-vs {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  letter-spacing: 0;
  text-transform: lowercase;
  color: var(--oxblood-bright);
  align-self: center;
  padding: 0 0.5rem;
  position: relative;
  top: -0.5em;
}

.hero-dek {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--bone-dim);
  max-width: 38ch;
  margin-bottom: 3rem;
}

/* COUNTDOWN */
.hero-countdown {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  padding: 1.5rem 0;
  width: fit-content;
  max-width: 100%;
  flex-wrap: nowrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: clamp(3.5rem, 8vw, 7rem);
}
.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-top: 0.35rem;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--oxblood);
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

/* HERO CTAs */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn span { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: var(--oxblood);
  color: var(--bone);
  border-color: var(--oxblood);
}
.btn-primary:hover {
  background: var(--oxblood-bright);
  border-color: var(--oxblood-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--steel-line);
}
.btn-ghost:hover {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
}

.hero-fineprint {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--shell-pad);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash-light);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--bone-dim));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--oxblood-bright));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.hero-scroll-text { writing-mode: vertical-rl; transform: rotate(180deg); }
@media (min-width: 1100px) { .hero-scroll { display: flex; } }

/* ============================================================
   EVENTS
   ============================================================ */
.events {
  background: var(--black);
  position: relative;
}
.events::before {
  content: '';
  position: absolute;
  top: 0; left: var(--shell-pad); right: var(--shell-pad);
  height: 1px;
  background: var(--steel-line);
}

.events-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .events-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }
  .event-feature {
    grid-row: span 2;
    grid-column: 1;
  }
}

.event-card {
  background: var(--carbon);
  border: 1px solid var(--steel-line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.event-card:hover { border-color: var(--oxblood); }
.event-card:hover .event-media img { transform: scale(1.04); }
.event-card:hover .event-tickets { color: var(--oxblood-bright); }
.event-card:hover .event-tickets span { transform: translateX(4px); }

.event-link { display: flex; flex-direction: column; height: 100%; }
.event-feature .event-link { min-height: 100%; }

.event-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}
.event-feature .event-media { aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .event-feature .event-media { aspect-ratio: auto; flex: 1; min-height: 360px; }
}
.event-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}
.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  transition: transform 0.8s var(--ease-out);
}

.event-content {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
@media (min-width: 900px) {
  .event-feature .event-content { padding: 2.5rem; gap: 0.85rem; }
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.event-number { color: var(--oxblood-bright); }
.event-date { color: var(--bone-dim); }

.event-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: -0.005em;
}
.event-feature .event-main {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.event-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--bone-dim);
  font-style: italic;
}

.event-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--steel-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.event-venue { color: var(--ash-light); flex: 1; }
.event-tickets {
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s var(--ease-out);
}
.event-tickets span { transition: transform 0.3s var(--ease-out); display: inline-block; }

.event-tba .event-main { color: var(--bone-dim); }

/* ============================================================
   ROSTER
   ============================================================ */
.roster {
  background: var(--carbon);
  position: relative;
}

.roster-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .roster-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .roster-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .roster-grid .fighter:nth-child(4n+2),
  .roster-grid .fighter:nth-child(4n+4) {
    transform: translateY(40px);
  }
  .roster-grid .fighter:nth-child(4n+2).is-revealed,
  .roster-grid .fighter:nth-child(4n+4).is-revealed {
    transform: translateY(40px);
  }
}

.fighter {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.fighter-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
}
.fighter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.08) brightness(0.9);
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.fighter:hover .fighter-media img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05) brightness(0.95);
}

.fighter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.5) 60%,
    rgba(10,10,10,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.fighter:hover .fighter-overlay { opacity: 1; }

.fighter-record {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  color: var(--oxblood-bright);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.fighter-record span { color: var(--bone); }

.fighter-stats {
  display: grid;
  gap: 0.5rem;
  font-family: var(--font-sub);
}
.fighter-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.4rem;
}
.fighter-stats dt {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash-light);
}
.fighter-stats dd {
  font-size: 0.75rem;
  color: var(--bone);
  text-align: right;
}

.fighter-meta {
  padding: 1.1rem 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fighter-class {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
}
.fighter-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 0.15rem;
}
.fighter-nick {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--bone-dim);
}

/* ============================================================
   RESULTS
   ============================================================ */
.results {
  background: var(--black);
  position: relative;
}

.results-table {
  max-width: var(--shell-max);
  margin: 0 auto;
  border-top: 1px solid var(--steel-line);
}

.results-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--steel-line);
  align-items: center;
  transition: background 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.results-row:not(.results-head):hover {
  background: var(--carbon);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 800px) {
  .results-row {
    grid-template-columns: 0.7fr 0.8fr 1.5fr 1.5fr 1.5fr;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
}

.results-head {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  border-bottom-color: var(--bone-dim);
  padding-bottom: 1rem;
  display: none;
}
@media (min-width: 800px) { .results-head { display: grid; } }

.r-event {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--oxblood-bright);
}
.r-date {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}
.r-bout {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.r-bout strong { color: var(--bone); font-weight: 400; }

.r-result {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--bone-dim);
}
.finish {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  margin-right: 0.5rem;
  display: inline-block;
}
.finish-ko  { background: var(--oxblood); color: var(--bone); }
.finish-tko { background: var(--oxblood-deep); color: var(--bone); }
.finish-sub { background: transparent; color: var(--bone); border: 1px solid var(--bone-dim); padding: 0.15rem 0.5rem; }
.finish-dec { background: transparent; color: var(--bone-dim); border: 1px solid var(--steel-line); padding: 0.15rem 0.5rem; }

.r-venue {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-light);
}

.results-archive {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--steel-line);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.results-archive:hover { color: var(--oxblood-bright); border-color: var(--oxblood-bright); }
.results-archive span { transition: transform 0.3s var(--ease-out); display: inline-block; }
.results-archive:hover span { transform: translateX(4px); }

/* ============================================================
   NEWS
   ============================================================ */
.news {
  background: var(--carbon);
  position: relative;
}

.news-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .news-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem 2.5rem;
  }
  .news-feature {
    grid-row: span 3;
  }
}

.news-card {
  background: var(--black);
  border: 1px solid var(--steel-line);
  transition: border-color 0.4s var(--ease-out);
}
.news-card:hover { border-color: var(--bone-dim); }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-card:hover .news-headline { color: var(--oxblood-bright); }

.news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-feature .news-link { gap: 0; }

.news-feature {
  display: flex;
  flex-direction: column;
}
.news-feature .news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:not(.news-feature) .news-link {
  flex-direction: row;
  align-items: stretch;
}
.news-card:not(.news-feature) .news-media {
  flex-shrink: 0;
  width: 38%;
  aspect-ratio: auto;
}
@media (max-width: 900px) {
  .news-card:not(.news-feature) .news-link {
    flex-direction: column;
  }
  .news-card:not(.news-feature) .news-media {
    width: 100%;
    aspect-ratio: 16/10;
  }
}

.news-media {
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}
.news-feature .news-media { aspect-ratio: 16 / 10; }
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.8s var(--ease-out);
}

.news-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.news-feature .news-content { padding: 2.25rem; gap: 1rem; }

.news-tag {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
}

.news-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.3s var(--ease-out);
}
.news-feature .news-headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.news-excerpt {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 50ch;
}

.news-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--black);
  position: relative;
}

.about-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 4rem;
  max-width: 22ch;
}
.about-title em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.55em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-dim);
  position: relative;
  top: -0.15em;
  margin-left: 0.25em;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 900px) {
  .about-body {
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.about-copy p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 56ch;
  margin-bottom: 1.5rem;
}
.about-copy p:last-child { margin-bottom: 0; }

.about-quote {
  position: relative;
  padding: 2rem 0 2rem 2rem;
  border-left: 1px solid var(--oxblood);
}
.quote-mark {
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--oxblood);
  opacity: 0.5;
  pointer-events: none;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: -0.005em;
  position: relative;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stats > div {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--steel-line);
}
.about-stats > div:last-child { border-right: 0; }
@media (max-width: 699px) {
  .about-stats > div:nth-child(2n) { border-right: 0; }
  .about-stats > div:nth-child(1),
  .about-stats > div:nth-child(2) { border-bottom: 1px solid var(--steel-line); }
}
.about-stats dt {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 0.85rem;
}
.about-stats dd {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.about-address {
  font-family: var(--font-sub);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-light);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--carbon);
  border-top: 1px solid var(--steel-line);
}

.footer-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 5rem var(--shell-pad) 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.4fr 2fr 1.3fr;
    gap: 4rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-mark { color: var(--oxblood-bright); }
.footer-tag {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--bone-dim);
}
.footer-tag strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--bone);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--bone-dim);
  transition: color 0.25s var(--ease-out);
}
.footer-col a:hover { color: var(--bone); }

.footer-newsletter label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--bone-dim);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 32ch;
}
.newsletter-row {
  display: flex;
  border: 1px solid var(--steel-line);
}
.newsletter-row input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--bone);
  outline: none;
  min-width: 0;
}
.newsletter-row input::placeholder { color: var(--ash); }
.newsletter-row input:focus { background: var(--black); }
.newsletter-row button {
  background: var(--oxblood);
  color: var(--bone);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out);
}
.newsletter-row button:hover { background: var(--oxblood-bright); }

.footer-base {
  border-top: 1px solid var(--steel-line);
}
.footer-base-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 1.5rem var(--shell-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
@media (min-width: 900px) {
  .footer-base-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: var(--ash);
  transition: color 0.25s var(--ease-out);
}
.footer-legal a:hover { color: var(--bone); }

.footer-disclosure {
  text-transform: none;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ash);
  font-weight: 400;
}
.footer-disclosure a {
  color: var(--bone-dim);
  border-bottom: 1px solid var(--steel-line);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.footer-disclosure a:hover {
  color: var(--bone);
  border-color: var(--oxblood-bright);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1100px) {
  .roster-grid .fighter[data-reveal].is-revealed:nth-child(4n+2),
  .roster-grid .fighter[data-reveal].is-revealed:nth-child(4n+4) {
    transform: translateY(40px);
  }
}

/* Hero load animation (handled by GSAP, but a CSS fallback) */
.hero [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================================
   NAV ACTIVE STATE (multi-page)
   ============================================================ */
.nav-links a.is-active { color: var(--bone); }
.nav-links a.is-active::after { right: 0; }
.nav-mobile a.is-active { color: var(--oxblood-bright); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem var(--shell-pad) 4rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}
@media (min-width: 900px) {
  .page-hero { min-height: 60vh; padding-bottom: 5rem; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.05) brightness(0.45) saturate(0.8);
}
.page-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(110, 20, 20, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.96) 100%);
}

.page-hero-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.page-crumb {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 2rem;
}
.page-crumb a { color: var(--ash-light); transition: color 0.25s var(--ease-out); }
.page-crumb a:hover { color: var(--bone); }
.page-crumb-divider { color: var(--steel-line); }
.page-crumb-current { color: var(--oxblood-bright); }

.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.page-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.45em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone-dim);
  display: inline-block;
  margin-left: 0.4em;
  position: relative;
  top: -0.15em;
}

.page-dek {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 46ch;
}

/* ============================================================
   HOME — MARQUEE TICKER (upcoming events strip)
   ============================================================ */
.home-marquee {
  background: var(--carbon);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}
.home-marquee::before,
.home-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.home-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--carbon), transparent);
}
.home-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--carbon), transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2.5rem;
}
.marquee-item strong {
  font-weight: 400;
  color: var(--bone);
  margin-right: 0.6rem;
}
.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--oxblood-bright);
  margin: 0 1.5rem;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HOME — NEXT EVENT FEATURE BLOCK
   ============================================================ */
.next-event {
  background: var(--black);
  padding: var(--section-pad) var(--shell-pad);
}
.next-event-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .next-event-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.next-event-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal);
}
.next-event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05) brightness(0.85);
}
.next-event-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--oxblood);
  color: var(--bone);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.next-event-content { display: flex; flex-direction: column; gap: 1.25rem; }
.next-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--steel-line);
}
.next-event-meta strong { color: var(--oxblood-bright); font-weight: 500; }

.next-event-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
}

.next-event-copy {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 46ch;
}

.next-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ============================================================
   SECTION CTA — "See all →" tail link
   ============================================================ */
.section-cta {
  max-width: var(--shell-max);
  margin: 3rem auto 0;
  text-align: right;
}
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--steel-line);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.section-cta a:hover { color: var(--oxblood-bright); border-color: var(--oxblood-bright); }
.section-cta a span { transition: transform 0.3s var(--ease-out); display: inline-block; }
.section-cta a:hover span { transform: translateX(4px); }

/* ============================================================
   ROSTER TEASER (4-column on home)
   ============================================================ */
.roster-strip {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) { .roster-strip { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* ============================================================
   NEWS TEASER (1 feature + 1 small on home)
   ============================================================ */
.news-strip {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .news-strip { grid-template-columns: 1.5fr 1fr; gap: 2.5rem; }
}

/* ============================================================
   ABOUT TEASER (home)
   ============================================================ */
.about-teaser {
  background: var(--carbon);
  position: relative;
}
.about-teaser-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-teaser-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}
.about-teaser-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.about-teaser-title em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.55em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-dim);
  position: relative;
  top: -0.15em;
  margin-left: 0.25em;
}
.about-teaser-copy {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 48ch;
  margin-bottom: 2rem;
}

/* Inline mini stats on home about-teaser */
.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
}
@media (min-width: 600px) { .about-mini-stats { grid-template-columns: repeat(4, 1fr); } }
.about-mini-stats > div {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--steel-line);
}
.about-mini-stats > div:last-child { border-right: 0; }
@media (max-width: 599px) {
  .about-mini-stats > div:nth-child(2n) { border-right: 0; }
  .about-mini-stats > div:nth-child(1),
  .about-mini-stats > div:nth-child(2) { border-bottom: 1px solid var(--steel-line); }
}
.about-mini-stats dt {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 0.55rem;
}
.about-mini-stats dd {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   UTILITIES
   ============================================================ */
@media (max-width: 600px) {
  .hero { padding-top: 6rem; }
  .countdown-sep { display: none; }
  .hero-countdown { gap: 1rem; }
  .countdown-unit { min-width: 0; flex: 1; }
}
