/* ==========================================================================
   MMTA — Fight Night
   Black / gold from the MMTA badge, blood-red fight light, one page per round.
   ========================================================================== */

:root {
  --ink: #070606;
  --ink-2: #0e0b0a;
  --ink-3: #161110;
  --bone: #f1ebe1;
  --bone-dim: rgba(241, 235, 225, .64);
  --bone-faint: rgba(241, 235, 225, .38);
  --gold: #c9a24a;
  --gold-hi: #f0cf7a;
  --gold-lo: #7d5f22;
  --blood: #b3121b;
  --blood-deep: #5e070c;
  --blue: #2b4f9e;
  --line: rgba(241, 235, 225, .13);

  --f-display: "Big Shoulders Display", "Archivo", sans-serif;
  --f-stencil: "Big Shoulders Stencil Display", "Big Shoulders Display", sans-serif;
  --f-ui: "Archivo", system-ui, sans-serif;
  --f-serif: "Instrument Serif", "Bodoni 72", Georgia, serif;

  --gutter: clamp(16px, 3vw, 40px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 12px; top: -60px; z-index: 300;
  padding: 10px 16px; background: var(--gold); color: var(--ink); border-radius: 8px; font-weight: 700;
}
.skip:focus { top: 12px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--f-ui);
  font-variation-settings: "wdth" 110;
  font-size: 12px; font-weight: 650; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.h-xl, .h-xxl {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  line-height: .88; letter-spacing: -.005em;
}
.h-xl { font-size: clamp(52px, 8vw, 132px); }
.h-xxl { font-size: clamp(84px, 17vw, 300px); line-height: .82; }
.gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 55%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot__word-main b { font-weight: inherit; background: none; color: var(--blood); }
.gold .ch {   /* split characters each carry the gradient so it survives their transforms */
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 55%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.word { display: inline-block; white-space: nowrap; }

/* editorial accent: a high-contrast serif italic set against the heavy condensed caps */
.h-xl em, .h-xxl em, .phero__title em, .arena__title em, .foot__tag em, .manifesto__text em, .quote__text em, .loader__caption em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: -.015em;
  font-size: 1.14em; line-height: .8;
  color: var(--gold-hi);
}
.manifesto__text em { font-size: 1.08em; }
/* italics lean out of their masks, so give each masked word a little room */
[data-split] em .word, .phero__title em .word { padding: 0 .14em .14em 0; margin: 0 -.14em -.14em 0; }
[data-split] .word { overflow: hidden; vertical-align: top; padding-bottom: .04em; margin-bottom: -.04em; }
[data-split] .ch, .hero__sub .ch, .loader__caption .ch { display: inline-block; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 250; pointer-events: none; opacity: .065;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

/* ---------- buttons ---------- */
.btn {
  --h: 52px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: var(--h); padding: 0 1.9em;
  border-radius: 999px;
  font-family: var(--f-ui); font-variation-settings: "wdth" 112;
  font-size: 13px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease-out), border-color .45s, transform .35s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  transform: translateY(101%); transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn .ico { width: 1.35em; height: 1.35em; }
.btn--sm { --h: 40px; padding: 0 1.3em; font-size: 11px; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold::before { background: var(--bone); }
.btn--line { border: 1.5px solid var(--bone); color: var(--bone); }
.btn--line::before { background: var(--bone); }
.btn--line:hover { color: var(--ink); }
.btn--ghost { color: var(--bone-dim); padding: 0 1em; }
.btn--ghost::before { display: none; }
.btn--ghost:hover { color: var(--bone); }
.btn:active { transform: scale(.97); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--gold); font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.eyebrow--icon { display: flex; align-items: center; gap: 10px; }
.eyebrow--icon .ico { width: 18px; height: 18px; }

.chips { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  padding: 8px 14px; border: 1px solid rgba(201, 162, 74, .5); border-radius: 999px;
  font-size: 11px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(7, 6, 6, .35);
}

/* ---------- custom cursor ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 260; pointer-events: none; }
.cursor__dot, .cursor__ring { position: absolute; left: 0; top: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: var(--gold-hi); }
.cursor__ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(240, 207, 122, .55);
  display: grid; place-items: center;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .35s, border-color .35s;
}
.cursor__ring span {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  opacity: 0; transition: opacity .2s;
}
.cursor.is-hover .cursor__ring { width: 58px; height: 58px; border-color: var(--gold); }
.cursor.is-label .cursor__ring { width: 84px; height: 84px; background: var(--gold); border-color: var(--gold); }
.cursor.is-label .cursor__ring span { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-hidden { opacity: 0; }
@media (pointer: fine) { .has-cursor, .has-cursor a, .has-cursor button, .has-cursor summary { cursor: none; } }

/* ==========================================================================
   Round-card transition
   ========================================================================== */
.fx { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.fx.is-active, .fx-arrive .fx { visibility: visible; pointer-events: auto; }
.fx__panel { position: absolute; inset: 0; will-change: transform; }
.fx__panel--l {
  background: radial-gradient(90% 70% at 20% 50%, #1b1311, transparent 70%), #070606;
  clip-path: polygon(0 0, 58% 0, 46% 100%, 0 100%);
  transform: translateX(-100%);
}
.fx__panel--r {
  background: radial-gradient(80% 70% at 80% 40%, #c41822, transparent 70%), linear-gradient(135deg, #8a0d14, #3e0408);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 46% 100%);
  transform: translateX(100%);
}
.fx-arrive .fx__panel { transform: none; }
.fx__seam { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; }
.fx__seam line { stroke: var(--gold-hi); stroke-width: 3px; vector-effect: non-scaling-stroke; }
.fx-arrive .fx__seam { opacity: 1; }
.fx__flash {
  position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 52% 50%, rgba(255, 240, 200, .95), rgba(240, 207, 122, .35) 30%, transparent 60%);
  mix-blend-mode: screen;
}
.fx__card {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  opacity: 0;
}
.fx-arrive .fx__card { opacity: 1; }
.fx__badge { width: clamp(64px, 8vh, 96px); margin-bottom: 1.4vh; filter: drop-shadow(0 10px 30px rgba(0,0,0,.6)); }
.fx__label {
  font-family: var(--f-ui); font-variation-settings: "wdth" 125; font-weight: 700;
  font-size: clamp(12px, 1.3vw, 16px); letter-spacing: .6em; text-transform: uppercase;
  margin-right: -.6em;
}
.fx__num {
  font-family: var(--f-stencil); font-weight: 900;
  font-size: clamp(150px, 32vh, 340px); line-height: .82;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 60%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.55));
}
.fx__title {
  margin-top: .6vh;
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(38px, 7vh, 76px); line-height: 1; letter-spacing: -.01em;
  color: var(--bone);
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: 84px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 24px;
  transition: background .5s, height .5s var(--ease-out), transform .6s var(--ease-out);
}
.nav.is-solid {
  height: 70px;
  background: rgba(7, 6, 6, .62);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { justify-self: start; display: flex; }
.nav__badge { width: 64px; height: auto; transition: width .5s var(--ease-out); }
.nav.is-solid .nav__badge { width: 54px; }
.nav__links { justify-self: center; display: flex; gap: clamp(16px, 1.9vw, 32px); }
.nav__links a {
  position: relative;
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  font-variation-settings: "wdth" 108; white-space: nowrap;
  color: var(--bone-dim); transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1.5px;
  background: var(--gold); transition: right .45s var(--ease-out);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--bone); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__right { justify-self: end; display: flex; align-items: center; gap: 14px; }

.sound { display: flex; align-items: center; gap: 10px; height: 40px; padding: 0 4px; color: var(--bone-dim); }
.sound__bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.sound__bars i { width: 2px; height: 30%; background: currentColor; border-radius: 1px; }
.sound[aria-pressed="true"] { color: var(--gold); }
.sound[aria-pressed="true"] .sound__bars i { animation: eq 1s ease-in-out infinite; }
/* on, but waiting for a tap before the browser allows audio: bars hold still and dim */
.sound[aria-pressed="true"].is-waiting .sound__bars i { animation: none; height: 45%; opacity: .6; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(2) { animation-delay: -.3s; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(3) { animation-delay: -.6s; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(4) { animation-delay: -.15s; }
@keyframes eq { 0%, 100% { height: 25%; } 50% { height: 100%; } }
.sound.is-hinting { color: var(--gold); }
.sound.is-hinting .sound__bars i { animation: eq 1.1s ease-in-out infinite alternate; }
.sound.is-hinting .sound__bars i:nth-child(2) { animation-delay: -.4s; }
.sound.is-hinting .sound__bars i:nth-child(3) { animation-delay: -.8s; }
.sound.is-hinting .sound__bars i:nth-child(4) { animation-delay: -.2s; }

/* one-time hint under the sound toggle: a little gold fight-card ticket */
.sound-hint {
  position: fixed; z-index: 240; display: flex; align-items: center; gap: 2px;
  padding: 4px; border-radius: 999px; background: var(--gold); color: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(240,207,122,.5);
  white-space: nowrap; opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.96); transform-origin: var(--arrow, 50%) 0;
  transition: opacity .35s, transform .5s var(--ease-out), visibility 0s .5s;
}
.sound-hint.is-on { opacity: 1; visibility: visible; transform: none; transition: opacity .35s, transform .6s var(--ease-out); animation: hint-bob 2.4s var(--ease-io) .8s 3; }
@keyframes hint-bob { 50% { transform: translateY(4px); } }
.sound-hint__rd {
  display: grid; place-items: center; height: 30px; padding: 0 10px; border-radius: 999px;
  background: var(--ink); color: var(--gold-hi); font-family: var(--f-stencil); font-weight: 900; font-size: 13px; letter-spacing: .06em;
}
.sound-hint__play { padding: 8px 6px 8px 10px; font: 500 13.5px/1 var(--f-ui); color: inherit; }
.sound-hint__play b { font-weight: 750; }
.sound-hint__play:hover b { text-decoration: underline; text-underline-offset: 3px; }
.sound-hint__x { position: relative; width: 30px; height: 30px; border-radius: 50%; flex: none; }
.sound-hint__x:hover { background: rgba(7,6,6,.12); }
.sound-hint__x i { position: absolute; left: 50%; top: 50%; width: 11px; height: 1.6px; margin: -.8px 0 0 -5.5px; background: currentColor; transform: rotate(45deg); }
.sound-hint__x i + i { transform: rotate(-45deg); }
.sound-hint__arrow { position: absolute; bottom: 100%; left: var(--arrow, 50%); margin-left: -7px; border: 7px solid transparent; border-top: 0; border-bottom: 8px solid var(--gold); }
@media (prefers-reduced-motion: reduce) { .sound-hint.is-on { animation: none; } }

.sound__label { font-size: 10px; font-weight: 650; letter-spacing: .24em; text-transform: uppercase; }

.nav__burger {
  display: none; place-content: center; gap: 6px;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
}
.nav__burger i { display: block; width: 18px; height: 1.5px; background: var(--bone); transition: transform .4s var(--ease-out); }
.nav__burger[aria-expanded="true"] i:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] i:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- menu overlay ---------- */
.menu {
  position: fixed; inset: 0; z-index: 85;
  background: #080606;
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center;
  padding: 110px var(--gutter) 150px;
  clip-path: circle(0% at calc(100% - 50px) 42px);
  visibility: hidden;
}
.menu.is-open { visibility: visible; }
.menu__ropes { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 22vh; pointer-events: none; }
.menu__ropes i { height: 3px; background: linear-gradient(90deg, transparent, var(--blood) 15%, var(--blood) 85%, transparent); opacity: .35; }
.menu__ropes i:nth-child(2) { background: linear-gradient(90deg, transparent, var(--bone) 15%, var(--bone) 85%, transparent); opacity: .12; }
.menu__ropes i:nth-child(3) { background: linear-gradient(90deg, transparent, var(--blue) 15%, var(--blue) 85%, transparent); opacity: .35; }
.menu__links { position: relative; display: flex; flex-direction: column; }
.menu__link { display: flex; align-items: baseline; gap: 18px; overflow: hidden; }
.menu__rd { font-family: var(--f-stencil); font-weight: 900; font-size: 14px; color: var(--gold); letter-spacing: .1em; min-width: 52px; }
.menu__name {
  display: inline-block;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(40px, 7.4vh, 84px); line-height: .98;
  color: transparent; -webkit-text-stroke: 1.5px var(--bone-dim);
  transition: color .35s, -webkit-text-stroke-color .35s, transform .5s var(--ease-out);
}
.menu__link:hover .menu__name { color: var(--bone); -webkit-text-stroke-color: var(--bone); transform: translateX(14px); }
.menu__link[aria-current="page"] .menu__name { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.menu__preview {
  position: relative; justify-self: center;
  width: min(34vw, 460px); aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.menu__preview img { width: 100%; height: 100%; object-fit: cover; }
.menu__bottom {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 26px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.menu__foot {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-faint);
}
.menu__foot a:hover { color: var(--gold); }

/* ---------- round clock (nav scoreboard) ---------- */
.clock {
  position: relative;
  display: flex; align-items: baseline; gap: 8px;
  height: 36px; padding: 0 12px;
  align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden;
  transition: border-color .4s;
  pointer-events: none;
}
.clock__rd { font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--gold); white-space: nowrap; }
.clock__time { min-width: 3.1ch; font-family: var(--f-stencil); font-weight: 900; font-size: 18px; line-height: 1; font-variant-numeric: tabular-nums; }
.clock__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: transparent; }
.clock__bar b { display: block; height: 100%; background: var(--gold); transform-origin: left; transform: scaleX(0); }
.clock.is-bell { border-color: var(--blood); }
.clock.is-bell .clock__time { color: #ff5a5a; }
.clock.is-bell .clock__bar b { background: var(--blood); }

/* ==========================================================================
   Home — opening
   ========================================================================== */
.intro-logo {
  position: fixed; left: 50%; top: 46%; z-index: 95;
  width: min(46vh, 64vw); height: auto;
  pointer-events: none; opacity: 0;
  will-change: transform, opacity, filter;
}
.loader {
  --r: 0px;
  position: fixed; inset: 0; z-index: 94;
  background: radial-gradient(60vmax 60vmax at 50% 46%, #1a0c07 0%, #090606 45%, #050404 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 46%, transparent var(--r), #000 calc(var(--r) + 1px));
          mask-image: radial-gradient(circle at 50% 46%, transparent var(--r), #000 calc(var(--r) + 1px));
}
.seen .loader, .fx-arrive .loader, .seen .intro-logo, .fx-arrive .intro-logo { display: none; }
.loader__meta {
  position: absolute; top: var(--gutter); left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  font-variation-settings: "wdth" 110; color: var(--bone-dim);
}
.loader__glow {
  position: absolute; left: 50%; top: 46%; width: 70vmin; height: 70vmin;
  transform: translate(-50%, -50%) scale(.6); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 162, 74, .28), rgba(179, 18, 27, .12) 55%, transparent 75%);
  opacity: 0; filter: blur(10px);
}
.loader__ring {
  position: absolute; left: 50%; top: 46%; width: 40vmin; height: 40vmin;
  transform: translate(-50%, -50%) scale(.4); border-radius: 50%;
  border: 2px solid var(--gold-hi); opacity: 0;
}
.loader__caption {
  position: absolute; left: 0; right: 0; top: calc(46% + min(25vmin, 34vw) + 28px);
  text-align: center;
  font-family: var(--f-display); font-weight: 800; font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: .32em; text-transform: uppercase;
}
.loader__caption em { font-style: normal; color: var(--gold); }
.loader__count {
  position: absolute; right: var(--gutter); bottom: calc(var(--gutter) + 14px);
  font-family: var(--f-stencil); font-weight: 900; font-size: clamp(64px, 11vw, 168px);
  line-height: .8; font-variant-numeric: tabular-nums;
}
.loader__bar { position: absolute; left: var(--gutter); right: var(--gutter); bottom: var(--gutter); height: 2px; background: var(--line); }
.loader__bar i { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi)); }

/* ==========================================================================
   Home — hero
   ========================================================================== */
.hero {
  --fh: 104%;           /* fighter height; his chin sits ~41% down the cut-out */
  --foot-h: 104px;      /* room for the scroll cue (its height + bottom offset) */
  position: relative; height: 100svh; min-height: 600px;
  overflow: hidden; isolation: isolate; container-type: size;
  background: #0a0405;
}
.hero__smoke, .phero__smoke { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__backtype {
  position: absolute; left: 0; right: 0; top: 13%; z-index: 1;
  overflow: hidden;
  font-family: var(--f-display); font-weight: 900;
  font-size: min(22vw, 34cqh); line-height: .9;
  text-transform: uppercase; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(240, 207, 122, .3);
  pointer-events: none;
}
.hero__backtype-track { display: flex; width: max-content; animation: drift 46s linear infinite; }
.hero__backtype-set { display: flex; flex: none; }
.hero__backtype span { display: block; padding-right: .32em; }
@keyframes drift { to { transform: translateX(-50%); } }
.hero__fighter {
  position: absolute; left: 50%; bottom: 0; z-index: 2;
  height: var(--fh); width: auto; max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 60px rgba(179, 18, 27, .35));
  user-select: none;
}
.hero__fighter.is-missing { display: none; }
.hero__embers { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; mix-blend-mode: screen; }
.hero__shade {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,6,6,.5) 0%, transparent 11%, transparent 55%, rgba(7,6,6,.92) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(7,6,6,.7) 100%);
}
.hero__content {
  position: absolute; left: 0; right: 0; top: calc(100% - var(--fh) * .575); z-index: 4;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 var(--gutter);
}
.hero__title {
  /* brush art is 2.23:1 — sized to the space under the chin, above the CTAs and scroll cue */
  /* space below the content's top (100% − 57.5% of 104% = 59.8%) − subtitle/CTAs − scroll cue − air */
  width: min(60cqw, 900px, calc((59.8cqh - var(--cta-block, 150px) - var(--foot-h) - 16px) * 2.23));
}
.hero__brush { width: 100%; height: auto; filter: drop-shadow(0 6px 30px rgba(0,0,0,.55)); }
.hero__sub {
  margin-top: clamp(10px, 1.6vw, 22px);
  font-variation-settings: "wdth" 115; font-weight: 700;
  font-size: clamp(13px, 1.55vw, 22px); letter-spacing: .34em; text-transform: uppercase;
}
.hero__ctas { margin-top: clamp(22px, 3vw, 38px); display: flex; gap: 10px; align-items: center; }

.scrollcue {
  position: absolute; left: 50%; bottom: clamp(18px, 3.4vh, 34px); z-index: 4;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  font-variation-settings: "wdth" 110; color: var(--bone-dim);
  white-space: nowrap; pointer-events: none;
}
.scrollcue i { width: 1.5px; height: 44px; background: var(--line); position: relative; overflow: hidden; }
.scrollcue i::after {
  content: ""; position: absolute; left: 0; top: -40%; width: 100%; height: 40%;
  background: var(--gold); animation: drip 1.8s var(--ease-out) infinite;
}
@keyframes drip { to { top: 100%; } }

/* ==========================================================================
   Home — arena
   ========================================================================== */
.arena { position: relative; background: var(--ink); }
.arena__pin { position: relative; height: 100vh; overflow: hidden; }
.arena__rows { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; }
.arena__row {
  display: flex; align-items: center; gap: .35em; width: max-content;
  font-family: var(--f-display); font-weight: 900; font-size: clamp(72px, 13.5vw, 230px);
  line-height: .86; text-transform: uppercase; color: var(--gold); white-space: nowrap;
  will-change: transform;
}
.arena__row b { font-size: .35em; color: var(--blood); font-weight: 400; }
.arena__row--line span { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.arena__frame {
  position: absolute; inset: 0; z-index: 2;
  clip-path: inset(30% 36% 30% 36% round 18px);
  will-change: clip-path;
}
.arena__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arena__frame::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 42% 60% at 50% 62%, rgba(7,6,6,.62) 0%, rgba(7,6,6,.25) 60%, transparent 100%),
    linear-gradient(0deg, rgba(7,6,6,.92) 0%, rgba(7,6,6,.35) 45%, rgba(7,6,6,.1) 100%);
}
/* centred in the aisle, so the heavy bags frame the copy on both sides */
.arena__copy {
  position: absolute; left: 0; right: 0; bottom: clamp(32px, 8vh, 90px); z-index: 1;
  width: min(760px, calc(100% - 2 * var(--gutter))); margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  opacity: 0;
}
.arena__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; font-weight: 650; letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
  font-variation-settings: "wdth" 115;
}
.arena__eyebrow i { width: 34px; height: 1.5px; background: var(--gold); }
.arena__title {
  margin: 18px 0 0;
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--f-display); font-weight: 900; font-size: clamp(54px, 7.2vw, 124px);
  line-height: .86; text-transform: uppercase; letter-spacing: -.005em;
  text-shadow: 0 6px 40px rgba(0,0,0,.55);
}
.arena__l2 { text-shadow: none; color: transparent; -webkit-text-stroke: 2px var(--gold-hi); }
.arena__l3 em { font-size: 1.2em; margin-right: .06em; }
.arena__lede { margin: 22px auto 30px; max-width: 540px; text-wrap: balance; color: var(--bone-dim); font-size: clamp(15px, 1.2vw, 17px); }

/* ==========================================================================
   Manifesto (word-by-word scrub)
   ========================================================================== */
.manifesto { padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1500px; margin: 0 auto; }
.manifesto--tight { padding-top: clamp(80px, 12vh, 140px); padding-bottom: clamp(60px, 10vh, 120px); }
.manifesto__text {
  margin-top: 28px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(34px, 5.2vw, 84px); line-height: 1.02; text-transform: uppercase;
}
.js [data-words] .w { opacity: .14; }
.inl {
  display: inline-block; vertical-align: middle;
  width: 1.9em; height: .9em; margin: 0 .12em;
  border-radius: 999px; overflow: hidden;
  transform: translateY(-.06em);
}
.inl img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Tale of the tape
   ========================================================================== */
.tape { padding: 0 var(--gutter) clamp(30px, 5vh, 60px); max-width: 1500px; margin: 0 auto; }
.tape__title { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.tape__title span { font-size: 12px; font-weight: 650; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.tape__title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.tape__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.tape__item { padding: 34px 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.tape__item + .tape__item { padding-left: 24px; border-left: 1px solid var(--line); }
.tape__item b {
  font-family: var(--f-stencil); font-weight: 900; font-size: clamp(72px, 9vw, 150px);
  line-height: .8; font-variant-numeric: tabular-nums;
}
.tape__item b small { font-size: .42em; color: var(--gold); vertical-align: top; margin: 0 .05em; }
.tape__item > span { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-dim); line-height: 1.6; }

/* ==========================================================================
   Disciplines — horizontal cards
   ========================================================================== */
.cards { position: relative; }
.cards__pin { height: 100vh; overflow: hidden; display: flex; align-items: center; }
.cards__track { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); padding-right: var(--gutter); will-change: transform; }
.cards__head { flex: none; width: clamp(300px, 34vw, 520px); padding-left: var(--gutter); }
.cards__head .h-xl { margin-top: 18px; }
.cards__hint { margin-top: 26px; font-size: 11px; font-weight: 650; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-faint); }
.cards__hint span { display: inline-block; color: var(--gold); animation: nudge 1.4s var(--ease-io) infinite; }
@keyframes nudge { 50% { transform: translateX(8px); } }
.dcard {
  position: relative; flex: none;
  width: clamp(260px, 26vw, 400px); aspect-ratio: 4 / 5.4;
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: var(--ink-3);
  isolation: isolate;
}
.dcard__media { position: absolute; inset: 0; z-index: -1; }
.dcard__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 1.1s var(--ease-out), filter .6s; filter: saturate(.85) brightness(.8); }
.dcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,6,6,.95), rgba(7,6,6,.1) 55%); }
.dcard:hover .dcard__media img { transform: scale(1); filter: saturate(1.05) brightness(1); }
.dcard__no { position: absolute; top: 18px; left: 22px; font-family: var(--f-stencil); font-weight: 900; font-size: 20px; color: var(--gold); }
.dcard__name { font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 4vw, 64px); line-height: .9; text-transform: uppercase; }
.dcard__line { margin-top: 8px; color: var(--bone-dim); font-size: 14px; }

/* ==========================================================================
   Feature (fight team teaser)
   ========================================================================== */
.feature { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.feature__media { position: absolute; inset: 0; overflow: hidden; }
.feature__media img { width: 100%; height: 118%; object-fit: cover; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,6,6,.9) 0%, rgba(7,6,6,.3) 55%, rgba(7,6,6,.2) 100%), linear-gradient(0deg, rgba(7,6,6,.8), transparent 40%); }
.feature__copy { position: relative; z-index: 1; padding: 0 var(--gutter) clamp(60px, 12vh, 130px); max-width: 780px; }
.feature__copy .h-xl { margin: 16px 0 22px; }
.feature__lede { max-width: 480px; color: var(--bone-dim); margin-bottom: 30px; }

/* ==========================================================================
   Purse (membership teaser)
   ========================================================================== */
.purse { padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1500px; margin: 0 auto; }
.purse__head .h-xl { margin-top: 16px; }
.purse__plans { margin-top: clamp(40px, 7vh, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.purse__plan {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 28px 26px 30px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: border-color .4s;
}
.purse__plan:hover { border-color: var(--gold); }
.purse__plan--hot { border-color: rgba(201, 162, 74, .55); background: linear-gradient(180deg, #2a1d10, var(--ink-2)); }
.purse__name { font-size: 12px; font-weight: 650; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.purse__price { font-family: var(--f-stencil); font-weight: 900; font-size: clamp(64px, 7vw, 110px); line-height: .85; }
.purse__price small { font-family: var(--f-display); font-size: .32em; color: var(--bone-dim); margin: 0 .1em; }
.purse__what { color: var(--bone-dim); }
.purse__trial { margin-top: 26px; text-align: center; color: var(--bone-dim); }
.purse__trial a { color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 2px; margin-left: 6px; }
.purse__trial a:hover { color: var(--gold-hi); }

/* Membership — casual booking + member portal / app */
.portal { padding: 0 var(--gutter) clamp(60px, 10vh, 110px); max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.portal__card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); border-radius: 18px; background: var(--ink-2);
}
.portal__card--book { border-color: rgba(201, 162, 74, .55); background: linear-gradient(180deg, #2a1d10, var(--ink-2)); }
.portal__card > p:not(.eyebrow) { color: var(--bone-dim); max-width: 460px; }
.portal__title { font-family: var(--f-display); font-weight: 900; font-size: clamp(36px, 3.6vw, 60px); line-height: .9; text-transform: uppercase; }
.portal__title em { font-family: var(--f-serif); font-weight: 400; text-transform: none; color: var(--gold); }
.portal .btn { margin-top: 6px; }

/* App Store / Google Play badges */
.apps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.apps__badge {
  display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 16px 0 12px;
  border: 1px solid var(--line); border-radius: 10px; background: #000; color: var(--bone);
  font-size: 16px; font-weight: 650; line-height: 1.05; transition: border-color .25s;
}
.apps__badge:hover { border-color: var(--gold); }
.apps__badge .ico { width: 24px; height: 24px; }
.apps__badge span { display: flex; flex-direction: column; }
.apps__badge small { font-size: 10px; font-weight: 450; letter-spacing: .02em; color: var(--bone-dim); }

/* Nav member login + menu portal buttons */
.nav__login { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-dim); transition: color .25s; }
.nav__login:hover { color: var(--gold); }
.nav__login .ico { width: 17px; height: 17px; }
.menu__portal { display: flex; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   Instagram
   ========================================================================== */
.insta { padding: 0 var(--gutter) clamp(110px, 18vh, 200px); max-width: 1500px; margin: 0 auto; }
.insta__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.insta__head .h-xl { margin-top: 16px; }
.insta__grid { margin-top: clamp(36px, 6vh, 64px); display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta__tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; background: var(--ink-3); }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out), filter .5s; filter: brightness(.85); }
.insta__tile:hover img { transform: scale(1.07); filter: brightness(1); }
.insta__tile:nth-child(even) { margin-top: 24px; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.phero {
  position: relative; min-height: 100svh; overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end;
  background: #0a0405;
}
.phero--short { min-height: 78svh; }
.phero__media { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.phero__media img {
  position: absolute; right: 0; top: 0; height: 100%; width: 62%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
  opacity: .9;
}
.phero--wide .phero__media img { width: 100%; -webkit-mask-image: none; mask-image: none; }
.phero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(0deg, rgba(7,6,6,.95) 0%, rgba(7,6,6,.25) 45%, rgba(7,6,6,.4) 100%);
}
.phero--wide::after { background: linear-gradient(0deg, rgba(7,6,6,.96) 0%, rgba(7,6,6,.35) 50%, rgba(7,6,6,.55) 100%); }
.phero__inner { position: relative; z-index: 3; padding: 140px var(--gutter) clamp(124px, 15vh, 160px); width: 100%; }   /* clears the scroll cue */
.phero--short .phero__inner { padding-bottom: clamp(70px, 12vh, 130px); }   /* short heroes have no scroll cue */
.phero__rd { display: flex; align-items: baseline; gap: 12px; }
.phero__rd span { font-size: 12px; font-weight: 700; letter-spacing: .4em; text-transform: uppercase; color: var(--bone-dim); }
.phero__rd b { font-family: var(--f-stencil); font-weight: 900; font-size: 34px; color: var(--gold); line-height: 1; }
.phero__title {
  margin-top: 10px;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(min(80px, 18vw), 15vw, 270px); line-height: .8; letter-spacing: -.01em;
}
.phero__title .word { overflow: hidden; vertical-align: top; padding-bottom: .05em; }
.phero__title .ch { display: inline-block; }
.phero__lede { margin-top: 26px; max-width: 520px; font-size: clamp(16px, 1.3vw, 19px); color: var(--bone-dim); }

/* ==========================================================================
   Classes — discipline list
   ========================================================================== */
.dlist { position: relative; padding: clamp(80px, 12vh, 140px) var(--gutter); max-width: 1600px; margin: 0 auto; }
.dlist__float {
  position: fixed; left: 0; top: 0; z-index: 5; width: 280px; aspect-ratio: 4 / 5;
  border-radius: 14px; overflow: hidden; pointer-events: none;
  opacity: 0;
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}
.dlist__float img { width: 100%; height: 100%; object-fit: cover; }
.drow { border-top: 1px solid var(--line); }
.drow:last-of-type { border-bottom: 1px solid var(--line); }
.drow__head {
  width: 100%; display: grid; grid-template-columns: 80px 1fr auto 48px; align-items: center; gap: 20px;
  padding: clamp(18px, 3vh, 30px) 0; text-align: left;
}
.drow__no { font-family: var(--f-stencil); font-weight: 900; font-size: 22px; color: var(--gold); }
.drow__name {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(52px, 8.5vw, 150px); line-height: .88;
  transition: color .4s, transform .6s var(--ease-out);
}
.drow__head:hover .drow__name { color: var(--gold); transform: translateX(14px); }
.drow__tag { font-size: 12px; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-dim); text-align: right; }
.drow__plus { position: relative; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; transition: transform .5s var(--ease-out), background .3s, border-color .3s; }
.drow__plus::before, .drow__plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 1.5px; background: var(--bone); transform: translate(-50%, -50%); }
.drow__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.drow.is-open .drow__plus { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.drow.is-open .drow__plus::before, .drow.is-open .drow__plus::after { background: var(--ink); }
.drow__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .7s var(--ease-out); }
.drow.is-open .drow__body { grid-template-rows: 1fr; }
.drow__inner { overflow: hidden; min-height: 0; display: grid; grid-template-columns: minmax(200px, 360px) 1fr; gap: clamp(20px, 4vw, 60px); }
.drow.is-open .drow__inner { padding-bottom: 36px; }
.drow__media { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; }
.drow__media img { width: 100%; height: 100%; object-fit: cover; }
.drow__text { align-self: center; max-width: 620px; font-size: clamp(16px, 1.4vw, 20px); color: var(--bone-dim); }
.drow__note { margin-top: 18px; font-size: 14px; color: var(--bone-faint); }

/* ==========================================================================
   Path
   ========================================================================== */
.path { padding: clamp(80px, 12vh, 140px) var(--gutter); max-width: 1600px; margin: 0 auto; }
.path__head .h-xl { margin-top: 16px; }
.path__steps { list-style: none; margin: clamp(40px, 7vh, 80px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.path__step { position: relative; padding: 28px 24px 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-2); overflow: hidden; }
.path__step::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--blood), var(--gold)); transform-origin: left; transform: scaleX(0); transition: transform 1.2s var(--ease-out) .2s; }
.path__step.is-in::before { transform: scaleX(1); }
.path__no { font-family: var(--f-stencil); font-weight: 900; font-size: 56px; line-height: .9; color: var(--gold); }
.path__step h3 { margin: 18px 0 10px; font-family: var(--f-display); font-weight: 900; font-size: 30px; text-transform: uppercase; line-height: 1; }
.path__step p { color: var(--bone-dim); font-size: 15px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { position: relative; min-height: 90vh; display: grid; place-items: center; overflow: hidden; text-align: center; padding: 120px var(--gutter); }
.cta--slim { min-height: auto; padding: clamp(100px, 16vh, 180px) var(--gutter); }
.cta__bg { position: absolute; left: 0; top: -10%; width: 100%; height: 120%; object-fit: cover; opacity: .45; }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, rgba(7,6,6,.3), rgba(7,6,6,.92)); }
.cta--slim::after { background: radial-gradient(60% 80% at 50% 0%, rgba(179, 18, 27, .22), transparent 70%); }
.cta__inner { position: relative; z-index: 1; width: 100%; max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.cta__inner p { margin-top: 22px; max-width: 520px; color: var(--bone-dim); font-size: clamp(16px, 1.3vw, 19px); }
.cta__btns { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Timetable
   ========================================================================== */
.tt { padding: clamp(60px, 10vh, 110px) var(--gutter); max-width: 1400px; margin: 0 auto; }
.tt__notice {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 18px 22px; border: 1px dashed rgba(201, 162, 74, .5); border-radius: 14px;
  color: var(--bone-dim); font-size: 14px;
}
.tt__notice p { max-width: 760px; }
.tt__notice b { color: var(--gold); }
.tt__controls { margin: 36px 0 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.tt__days { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.tt__days button {
  height: 44px; padding: 0 18px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 800; font-size: 18px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bone-dim); transition: background .3s, color .3s;
}
.tt__days button[aria-selected="true"] { background: var(--gold); color: var(--ink); }
.tt__filters { display: flex; gap: 6px; flex-wrap: wrap; }
.tt__filters button {
  height: 38px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-dim);
  transition: border-color .3s, color .3s, background .3s;
}
.tt__filters button.is-on { border-color: var(--gold); color: var(--gold); background: rgba(201, 162, 74, .08); }
.tt__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; min-height: 300px; align-content: start; }
.tt__item {
  display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 20px;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--ink-2);
  transition: border-color .3s, transform .4s var(--ease-out);
}
.tt__item:hover { border-color: rgba(201, 162, 74, .6); transform: translateX(6px); }
.tt__time { font-family: var(--f-stencil); font-weight: 900; font-size: 26px; color: var(--bone-faint); }
.tt__class { font-family: var(--f-display); font-weight: 900; font-size: clamp(26px, 3vw, 40px); text-transform: uppercase; line-height: 1; }
.tt__tag { font-size: 11px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); padding: 7px 12px; border: 1px solid rgba(201, 162, 74, .45); border-radius: 999px; white-space: nowrap; }
.tt__empty { padding: 40px; text-align: center; color: var(--bone-faint); border: 1px dashed var(--line); border-radius: 14px; }

/* ==========================================================================
   Coaches
   ========================================================================== */
.quote { padding: clamp(100px, 16vh, 180px) var(--gutter) clamp(60px, 10vh, 110px); max-width: 1400px; margin: 0 auto; }
.quote__text { font-family: var(--f-display); font-weight: 800; font-size: clamp(38px, 5.6vw, 92px); line-height: 1; text-transform: uppercase; }
.quote__by { margin-top: 26px; font-size: 12px; font-weight: 650; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.corner { padding: 0 var(--gutter) clamp(90px, 14vh, 160px); max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.coach { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--ink-2); }
.coach__photo {
  position: relative; aspect-ratio: 16 / 11; display: grid; place-items: center;
  background:
    radial-gradient(70% 60% at 50% 40%, rgba(179, 18, 27, .5), transparent 70%),
    repeating-linear-gradient(135deg, #150e0c 0 14px, #110b0a 14px 28px);
  border-bottom: 3px solid var(--blood);
}
.coach--blue .coach__photo { background: radial-gradient(70% 60% at 50% 40%, rgba(43, 79, 158, .5), transparent 70%), repeating-linear-gradient(135deg, #0d0f15 0 14px, #0a0c11 14px 28px); border-bottom-color: var(--blue); }
.coach__badge { width: 26%; opacity: .16; filter: grayscale(1); }
.coach__ph { position: absolute; bottom: 18px; font-size: 11px; font-weight: 650; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-faint); }
.coach__corner { position: absolute; top: 16px; left: 16px; padding: 6px 12px; border-radius: 999px; background: var(--blood); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.coach--blue .coach__corner { background: var(--blue); }
.coach__info { padding: 28px 28px 34px; }
.coach__name { margin: 12px 0 6px; font-family: var(--f-display); font-weight: 900; font-size: clamp(48px, 5vw, 84px); line-height: .86; text-transform: uppercase; }
.coach__role { color: var(--gold); font-weight: 600; }
.coach__bio { margin-top: 16px; color: var(--bone-dim); max-width: 520px; }
.coach__ig { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 650; border-bottom: 1px solid var(--gold); color: var(--gold); padding-bottom: 2px; }

/* ==========================================================================
   Fight team
   ========================================================================== */
.roster { padding: clamp(40px, 8vh, 90px) var(--gutter) clamp(90px, 14vh, 160px); max-width: 1500px; margin: 0 auto; }
.roster__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.roster__head p { color: var(--bone-faint); max-width: 360px; font-size: 14px; }
.roster__grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fighter { position: relative; padding: 18px 18px 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); overflow: hidden; }
.fighter::before { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(179,18,27,.35), transparent 70%); }
.fighter__photo { aspect-ratio: 4 / 3.2; border-radius: 12px; display: grid; place-items: end center; padding-bottom: 16px; background: repeating-linear-gradient(135deg, #150e0c 0 14px, #110b0a 14px 28px); }
.fighter__photo span { font-size: 11px; font-weight: 650; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-faint); }
.fighter__nick { margin-top: 20px; font-family: var(--f-display); font-weight: 800; font-size: 22px; color: var(--gold); text-transform: uppercase; letter-spacing: .04em; }
.fighter__name { margin-top: 4px; font-family: var(--f-display); font-weight: 900; font-size: clamp(44px, 4vw, 66px); line-height: .86; text-transform: uppercase; }
.fighter__stats { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.fighter__stats div { padding-top: 12px; }
.fighter__stats dt { font-size: 10px; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-faint); }
.fighter__stats dd { margin-top: 4px; font-weight: 650; font-size: 14px; }
.bout { padding: 0 var(--gutter) clamp(90px, 14vh, 160px); }
.bout__inner { max-width: 1200px; margin: 0 auto; padding: clamp(40px, 7vh, 80px) var(--gutter); border-radius: 22px; text-align: center; background: linear-gradient(90deg, rgba(179,18,27,.35), rgba(7,6,6,.2) 50%, rgba(43,79,158,.35)); border: 1px solid var(--line); }
.bout__vs { margin: 22px 0; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 80px); }
.bout__side { font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 6vw, 96px); line-height: .9; text-transform: uppercase; }
.bout__side small { display: block; margin-top: 8px; font-family: var(--f-ui); font-size: 11px; font-weight: 650; letter-spacing: .24em; color: var(--bone-faint); }
.bout__v { font-family: var(--f-stencil); font-weight: 900; font-size: clamp(56px, 8vw, 140px); line-height: .8; }
.bout__meta { color: var(--bone-dim); letter-spacing: .12em; text-transform: uppercase; font-size: 13px; font-weight: 600; }

/* ==========================================================================
   Membership
   ========================================================================== */
.plans { padding: clamp(60px, 10vh, 110px) var(--gutter); max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; perspective: 1200px; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px 32px; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  will-change: transform;
}
.plan--hot { border-color: var(--gold); background: radial-gradient(90% 60% at 50% 0%, rgba(201, 162, 74, .2), transparent 70%), linear-gradient(180deg, #1d140b, var(--ink-2)); }
.plan__flag { position: absolute; top: -13px; left: 30px; padding: 6px 14px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 750; letter-spacing: .24em; text-transform: uppercase; }
.plan__tier { font-family: var(--f-display); font-weight: 900; font-size: 34px; text-transform: uppercase; }
.plan__price { margin: 14px 0 22px; font-family: var(--f-stencil); font-weight: 900; line-height: .8; }
.plan__price b { font-size: clamp(96px, 9vw, 150px); font-weight: 900; }
.plan__price small { font-family: var(--f-display); font-size: 26px; color: var(--bone-dim); }
.plan__list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; flex: 1; align-content: start; }
.plan__list li { position: relative; padding-left: 26px; color: var(--bone-dim); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--gold); }
.plan .btn { width: 100%; }
.recover { padding: clamp(60px, 10vh, 120px) var(--gutter); max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.recover__media { border-radius: 18px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.recover__copy .h-xl { margin: 16px 0 22px; }
.recover__copy > p:last-child { color: var(--bone-dim); max-width: 460px; }
.faq { padding: clamp(80px, 12vh, 140px) var(--gutter); max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(30px, 6vw, 90px); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 24px 50px 24px 0; font-family: var(--f-display); font-weight: 800; font-size: clamp(22px, 2vw, 30px); text-transform: uppercase; line-height: 1.1;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 30px; color: var(--gold); transition: transform .4s var(--ease-out); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 40px 24px 0; color: var(--bone-dim); }
.faq__item a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* ==========================================================================
   Contact
   ========================================================================== */
.visit { padding: clamp(60px, 10vh, 110px) var(--gutter); max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.visit__details { display: grid; gap: 34px; align-content: start; }
.visit__block .eyebrow { margin-bottom: 12px; }
.visit__big { font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 3.6vw, 56px); line-height: .95; text-transform: uppercase; }
.visit__big a:hover { color: var(--gold); }
.visit__small { color: var(--bone-dim); overflow-wrap: anywhere; }
.visit__small a:hover { color: var(--gold); }
.visit__social { display: flex; gap: 10px; flex-wrap: wrap; }
.visit__map { position: relative; min-height: 520px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) sepia(.35) hue-rotate(-20deg) saturate(1.6); }
.visit__pin { position: absolute; left: 50%; top: 50%; width: 64px; transform: translate(-50%, -110%); filter: drop-shadow(0 10px 20px rgba(0,0,0,.6)); pointer-events: none; animation: bob 2.4s var(--ease-io) infinite; }
@keyframes bob { 50% { transform: translate(-50%, -125%); } }
.enquire { padding: clamp(60px, 10vh, 110px) var(--gutter) clamp(100px, 16vh, 170px); max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.enquire .h-xl { margin-top: 16px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field span { font-size: 11px; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-faint); }
.field input, .field select, .field textarea {
  width: 100%; padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--ink-2); color: var(--bone);
  font: inherit; transition: border-color .3s, background .3s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-3); }
.field.is-bad input { border-color: #ff5a5a; }
.form__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.form__msg { color: var(--gold); font-size: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { position: relative; padding: 0 var(--gutter); border-top: 1px solid var(--line); background: radial-gradient(70% 40% at 50% 0%, rgba(179, 18, 27, .16), transparent 70%), var(--ink); overflow: hidden; }
.foot__next { display: block; padding: clamp(70px, 12vh, 130px) 0 clamp(40px, 7vh, 70px); }
.foot__next-label { font-size: 12px; font-weight: 650; letter-spacing: .28em; text-transform: uppercase; color: var(--bone-dim); }
.foot__next-label b { color: var(--gold); margin-left: 8px; font-weight: 700; }
.foot__next-title {
  display: flex; flex-wrap: wrap; align-items: center; gap: .15em; margin-top: 14px;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(min(76px, 16vw), 14vw, 250px); line-height: .8;
  color: transparent; -webkit-text-stroke: 2px var(--bone);
  transition: color .5s var(--ease-out), -webkit-text-stroke-color .5s;
}
.foot__next-title i { font-style: normal; font-size: .5em; -webkit-text-stroke: 0; color: var(--gold); transition: transform .6s var(--ease-out); }
.foot__next:hover .foot__next-title { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.foot__next:hover .foot__next-title i { transform: translateX(.3em); }
.foot__marquee { margin: 0 calc(var(--gutter) * -1); padding: 18px 0; border-block: 1px solid var(--line); overflow: hidden; }
.foot__marquee-track { display: flex; width: max-content; gap: 28px; align-items: center; animation: marquee 30s linear infinite; }
.foot__marquee span { font-family: var(--f-display); font-weight: 900; font-size: clamp(28px, 3vw, 44px); text-transform: uppercase; white-space: nowrap; }
.foot__marquee b { color: var(--blood); font-size: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }
/* icons */
.ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.2em; }
.ico--sm { width: .95em; height: .95em; }

.foot__main { display: grid; grid-template-columns: .9fr 1.25fr 1.1fr; gap: clamp(28px, 4vw, 64px); padding: clamp(56px, 9vh, 96px) 0 clamp(40px, 6vh, 64px); }
.foot__brand img { width: 104px; height: auto; }
.foot__tag { margin-top: 22px; font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 4vw, 64px); line-height: .88; text-transform: uppercase; }
.foot__blurb { margin-top: 16px; max-width: 340px; color: var(--bone-faint); font-size: 14px; }
.foot__ctas { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

/* contact bento */
.foot__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.fcard {
  display: flex; align-items: flex-start; gap: 16px; min-width: 0;
  padding: 20px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  transition: border-color .35s, transform .45s var(--ease-out);
}
.fcard:nth-child(n+3) { grid-column: 1 / -1; }
div.fcard { border-style: dashed; }
a.fcard:hover { border-color: var(--gold); transform: translateY(-3px); }
.fcard__icon {
  flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 20px; color: var(--gold);
  border: 1px solid rgba(201, 162, 74, .45); background: rgba(201, 162, 74, .08);
  transition: background .35s, color .35s;
}
a.fcard:hover .fcard__icon { background: var(--gold); color: var(--ink); }
.fcard__body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.fcard__body small { font-size: 10px; font-weight: 650; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.fcard__body b { font-family: var(--f-display); font-weight: 800; font-size: clamp(20px, 1.6vw, 26px); line-height: 1.05; text-transform: uppercase; overflow-wrap: anywhere; }
.fcard__body em { font-style: normal; font-size: 13px; color: var(--bone-faint); display: inline-flex; align-items: center; gap: 6px; }

/* links as a fight card */
@media (min-width: 961px) { .foot--nomap .foot__main { grid-template-columns: 1fr 1.7fr; } }
.foot__map { position: relative; min-height: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); }
.foot__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) sepia(.35) hue-rotate(-20deg) saturate(1.6); }
.foot__map .visit__pin { width: 52px; }
.foot__map .visit__pin img { width: 100%; }
.foot__map-cta {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: 999px; background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transition: background .3s;
}
.foot__map-cta:hover { background: var(--gold-hi); }
.foot__map-cta .ico:last-child { width: .95em; height: .95em; }
.foot__social { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line); }
.foot__social-label { margin-right: 14px; font-size: 11px; font-weight: 650; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-faint); }
.soc {
  display: inline-flex; align-items: center; gap: 9px;
  height: 40px; padding: 0 16px 0 12px; border: 1px solid transparent; border-radius: 999px;
  font-size: 13px; font-weight: 550; color: var(--bone-dim);
  transition: background .35s, color .35s, border-color .35s;
}
.soc .ico { width: 18px; height: 18px; color: var(--gold); transition: color .35s; }
.soc:hover { border-color: var(--line); color: var(--bone); background: var(--ink-3); }
.soc--top { margin-left: auto; border-color: var(--line); }
.soc--top:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.soc--top:hover .ico { color: var(--ink); }

/* giant academy wordmark closing every page */
.foot__word {
  display: flex; flex-direction: column; align-items: stretch;
  margin: clamp(30px, 5vw, 70px) calc(var(--gutter) * -.2) 0; user-select: none;
}
.foot__word-top {
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
  font-size: clamp(11px, 1.35vw, 22px); font-weight: 650; letter-spacing: .55em; text-transform: uppercase; color: var(--gold);
  white-space: nowrap; padding-left: .55em;
}
.foot__word-top i { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-lo)); }
.foot__word-top i:last-child { transform: scaleX(-1); }
.foot__word-main {
  display: flex; justify-content: space-between;
  font-family: var(--f-display); font-weight: 900; font-size: 30vw; line-height: .74; text-transform: uppercase;
  margin-top: .06em; padding-bottom: .02em;
}
.foot__word-main span, .foot__word-main b {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 32px; margin-top: clamp(18px, 3vw, 40px); border-top: 1px solid var(--line); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-faint); }
.menu__foot a { display: inline-flex; align-items: center; gap: 8px; }
.menu__foot .ico { color: var(--gold); }

/* ==========================================================================
   Reveal defaults (JS adds motion; content stays visible without JS)
   ========================================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(36px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1500px) {
  .sound__label { display: none; }
}
@media (max-width: 1320px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__join, .nav__login { display: none; }
  .nav__burger { display: grid; }
  .foot__main { grid-template-columns: 1fr 1.4fr; }
  .foot__map { grid-column: 1 / -1; min-height: 300px; }
}
@media (max-height: 760px) and (min-width: 961px) {
  .hero { --foot-h: 96px; --cta-block: 124px; }
  .hero__sub { margin-top: 8px; font-size: 13px; }
  .hero__ctas { margin-top: 16px; }
  .hero__ctas .btn { --h: 44px; }
}
@media (max-width: 960px) {
  .nav { height: 72px; }
  .nav__badge, .nav.is-solid .nav__badge { width: 52px; }
  .sound__label { display: none; }
  /* content starts at 100% − 57.5% of 80% = 54%, leaving 46% below it */
  .hero { --fh: 80%; --foot-h: 100px; --cta-block: 112px; }
  .hero__title { width: min(86cqw, 620px, calc((46cqh - var(--cta-block) - var(--foot-h) - 14px) * 2.23)); }
  .hero__backtype { top: calc(72px + 1.2cqh); font-size: min(22vw, 11cqh); }
  .hero__sub { font-size: 12px; letter-spacing: .26em; }
  .hero__ctas .btn--ghost { display: none; }
  .loader__meta span:last-child { display: none; }
  .arena__frame { clip-path: inset(32% 18% 32% 18% round 14px); }
  .menu { grid-template-columns: 1fr; align-items: start; padding-top: 120px; }
  .menu__preview { display: none; }
  .tape__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tape__item:nth-child(3) { padding-left: 0; border-left: 0; }
  .tape__item { padding-bottom: 30px; }
  .tape { padding-bottom: 0; }
  .cards__pin { height: auto; display: block; padding: 90px 0; }
  .cards__head { width: auto; padding: 0 var(--gutter); margin-bottom: 30px; }
  .cards__track { overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 12px; scrollbar-width: none; }
  .cards__track::-webkit-scrollbar { display: none; }
  .dcard { width: 74vw; scroll-snap-align: center; }
  .purse__plans, .plans, .path__steps, .roster__grid, .corner { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .phero__media img { width: 100%; -webkit-mask-image: linear-gradient(0deg, transparent, #000 60%); mask-image: linear-gradient(0deg, transparent, #000 60%); opacity: .6; }
  .drow__head { grid-template-columns: 44px minmax(0, 1fr) 40px; gap: 12px; }
  .drow__name { font-size: min(52px, 13vw); }
  .drow__tag { display: none; }
  .drow__plus { width: 40px; height: 40px; }
  .drow__inner { grid-template-columns: 1fr; }
  .drow__media { aspect-ratio: 16 / 10; }
  .dlist__float { display: none; }
  .tt__item { grid-template-columns: 1fr auto; }
  .tt__time { grid-column: 1 / -1; font-size: 20px; }
  .tt__days { overflow-x: auto; max-width: 100%; }
  .recover, .faq, .visit, .enquire, .portal { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .visit__map { min-height: 380px; }
  .clock { height: 34px; padding: 0 10px; gap: 6px; }
  .clock__rd { display: none; }
  .menu__name { font-size: min(7vh, 11.5vw); }
}
@media (max-width: 760px) {
  .foot__main { grid-template-columns: 1fr; }
  .foot__contact { grid-template-columns: 1fr; }
  .foot__map { min-height: 260px; }
  .soc--top { margin-left: 0; }
}
@media (max-width: 520px) {
  .tape__item { padding-right: 12px; }
  .tape__item + .tape__item { padding-left: 14px; }
  .tape__item:nth-child(3) { padding-left: 0; }
  .tape__item > span { letter-spacing: .12em; }
  .tape__item b { font-size: clamp(54px, 18vw, 72px); }
  /* the name line above the wordmark: tighter so the whole name fits */
  .foot__word-top { gap: 8px; font-size: min(11px, 3vw); letter-spacing: .22em; padding-left: .22em; }
  /* the email address: break only after the @, never mid-word */
  .fcard[href^="mailto"] .fcard__body b { font-size: min(20px, 4.3vw); overflow-wrap: normal; }
  /* long button labels wrap instead of running off the screen */
  .btn { max-width: 100%; height: auto; min-height: var(--h); padding-block: 12px; white-space: normal; text-align: center; line-height: 1.3; }
  .bout__vs { flex-direction: column; gap: 10px; }
  .tt__days button { padding: 0 12px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .hero__backtype-track, .scrollcue i::after, .foot__marquee-track, .cards__hint span, .visit__pin { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
