/*
  PATRA BOXING — visual system
  Edit brand colors and layout tokens here. Content placeholders live in index.html.
*/

:root {
  --ink: #070707;
  --ink-soft: #0d0d0d;
  --surface: #121212;
  --surface-2: #191919;
  --paper: #f4f1e9;
  --paper-dim: #d8d4cc;
  --muted: #aaa7a0;
  --red: #a90e1b;
  --red-bright: #d51b2b;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(6rem, 10vw, 10rem);
  --header-height: 5.25rem;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  max-width: 15ch;
  font-size: clamp(3.3rem, 7vw, 7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  letter-spacing: -0.015em;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.container {
  width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section);
}

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

.mobile-nav-label,
.mobile-combo-separator,
.mobile-rail-note {
  display: none;
}

.mobile-heading-gap {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  translate: 0 -200%;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 3px solid #ff606c;
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--paper-dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 3px;
  background: var(--red-bright);
  content: "";
}

.eyebrow--light {
  color: var(--paper);
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: 3rem;
}

.section-intro,
.lead {
  max-width: 38rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  padding: 0.95rem 1.3rem 0.95rem 1.5rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  translate: -102% 0;
  background: #7d0812;
  content: "";
  transition: translate 350ms var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button > span:last-child,
.button > b:last-child {
  font-size: 1.15rem;
  font-style: normal;
  transition: transform 300ms var(--ease);
}

.button:hover {
  border-color: #7d0812;
  transform: translateY(-2px);
}

.button:hover::before {
  translate: 0;
}

.button:hover > span:last-child,
.button:hover > b:last-child {
  transform: translate(3px, -3px);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(7, 7, 7, 0.35);
  backdrop-filter: blur(8px);
}

.button--ghost::before {
  background: var(--paper);
}

.button--ghost:hover {
  border-color: var(--paper);
  color: var(--ink);
}

.button--small {
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease;
}

.text-link span {
  color: var(--red-bright);
  font-size: 1.1rem;
  transition: transform 240ms var(--ease);
}

.text-link:hover {
  border-color: var(--red-bright);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  width: min(100%, 1536px);
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(7.75rem, 10vw, 9.5rem);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 1.55vw, 1.8rem);
}

.primary-nav a {
  position: relative;
  display: grid;
  min-height: 2.75rem;
  place-items: center;
  color: var(--paper-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  scale: 0 1;
  background: var(--red-bright);
  content: "";
  transform-origin: right;
  transition: scale 240ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"] {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="location"]::after {
  scale: 1;
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: calc(var(--header-height) + 3rem) 5.5rem;
  background: #050505;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2rem;
  width: 18vw;
  min-width: 11rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.hero-media,
.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background: #050505;
}

.hero-reel-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: #050505;
  pointer-events: none;
  transition:
    opacity 900ms var(--ease),
    visibility 0s linear 900ms;
}

.hero-reel-item.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero-reel-item--portrait {
  right: 0;
  left: auto;
  width: min(54vw, 82vh);
  min-width: 30rem;
  max-width: 62rem;
}

.hero-reel-item :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  scale: 1.035;
  translate: 0 var(--hero-shift, 0);
  filter: saturate(0.82) contrast(1.08);
  transition: filter 600ms ease;
}

.js .hero-reel-item.is-active :is(img, video) {
  animation: hero-reel-drift 6s var(--ease) both;
}

.js .hero-media.is-paused .hero-reel-item.is-active :is(img, video) {
  animation-play-state: paused;
}

.hero-reel-item--corner img {
  object-position: 60% center;
}

.hero-reel-item--coach img {
  object-position: center 34%;
}

.hero-reel-item--focus img {
  object-position: center 38%;
}

.hero-reel-item--team img {
  object-position: center 42%;
}

@keyframes hero-reel-drift {
  from {
    scale: 1.035;
  }

  to {
    scale: 1.07;
  }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.88) 28%, rgba(3, 3, 3, 0.42) 60%, rgba(3, 3, 3, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.88) 0%, transparent 38%, rgba(3, 3, 3, 0.28) 100%);
}

.hero-reel-toggle {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + 1.25rem);
  right: clamp(1.5rem, 5vw, 5rem);
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.48);
  backdrop-filter: blur(8px);
  color: var(--paper-dim);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.hero-reel-toggle[hidden] {
  display: none;
}

.hero-reel-toggle:hover {
  border-color: var(--line-strong);
  background: rgba(7, 7, 7, 0.72);
  color: #fff;
}

.hero-reel-toggle i {
  width: 0.55rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.hero-reel-toggle[data-paused="true"] i {
  width: 0;
  height: 0;
  border-top: 0.38rem solid transparent;
  border-right: 0;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.58rem solid currentColor;
}

.hero-content {
  width: 100%;
  margin-top: 2rem;
}

.hero-title {
  max-width: none;
  margin-left: -0.06em;
  font-size: clamp(5.4rem, 13.8vw, 13.75rem);
  letter-spacing: -0.06em;
  line-height: 0.67;
}

.hero-title span {
  display: block;
}

.hero-title-outline {
  margin-left: 0.3em;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(244, 241, 233, 0.92);
}

.hero-statement {
  max-width: 31ch;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.1vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: var(--paper-dim);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-note span {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(213, 27, 43, 0.15);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2.8rem;
  display: flex;
  min-width: 7.5rem;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 2px;
  height: 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  translate: 0 -100%;
  background: var(--paper);
  content: "";
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
  55%, 100% { translate: 0 100%; }
}

/* Programs */
.programs {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,0.025) 50%, transparent 50.1%),
    var(--ink);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.program-card {
  position: relative;
  display: flex;
  min-height: 37rem;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem clamp(1.25rem, 2.2vw, 2rem);
  border-left: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.32);
  transition: background 300ms ease;
}

.program-card:last-child {
  border-right: 1px solid var(--line);
}

.program-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  scale: 0 1;
  background: var(--red);
  content: "";
  transform-origin: left;
  transition: scale 400ms var(--ease);
}

.program-card:hover {
  background: var(--surface);
}

.program-card:hover::after {
  scale: 1;
}

.program-number {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
}

.program-level {
  position: relative;
  z-index: 1;
  margin-bottom: 4.8rem;
  color: var(--red-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.program-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.program-card > p:not(.program-level) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.program-details {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 2.2rem;
  padding: 0;
  color: var(--paper-dim);
  font-size: 0.78rem;
  list-style: none;
}

.program-details li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.program-details li::before {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--red-bright);
  content: "";
}

.program-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Combo challenge */
.combo-challenge {
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(169, 14, 27, 0.07) 72%),
    var(--paper);
  color: var(--ink);
}

.combo-challenge .eyebrow {
  color: #4e4c47;
}

.combo-challenge .section-intro {
  color: #514f4a;
}

.combo-challenge-heading h1 {
  max-width: 15ch;
  font-size: clamp(3.3rem, 7vw, 7rem);
  letter-spacing: -0.035em;
}

.combo-challenge-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
  border: 1px solid rgba(7, 7, 7, 0.55);
  background: var(--ink);
  box-shadow: 0 2.5rem 6rem rgba(7, 7, 7, 0.18);
}

.combo-setup {
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border-right: 1px solid rgba(7, 7, 7, 0.28);
  background: #e9e5dc;
}

.combo-setup :focus-visible {
  outline-color: var(--ink);
}

.combo-panel-label,
.combo-level-picker legend {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.combo-panel-label {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.combo-level-picker {
  padding: 0;
  margin: 0;
  border: 0;
}

.combo-level-picker legend {
  margin-bottom: 1rem;
  color: #45433f;
}

.combo-level-buttons {
  display: grid;
  gap: 0.65rem;
}

.combo-level-buttons button {
  display: grid;
  min-height: 5.25rem;
  align-content: center;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(7, 7, 7, 0.2);
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  text-align: left;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease);
}

.combo-level-buttons button:hover:not(:disabled) {
  border-color: rgba(7, 7, 7, 0.6);
  transform: translateX(0.2rem);
}

.combo-level-buttons button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 4px 0 var(--red-bright);
  color: var(--paper);
}

.combo-level-buttons button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.combo-level-buttons b {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.combo-level-buttons span {
  color: #65625c;
  font-size: 0.68rem;
}

.combo-level-buttons button[aria-pressed="true"] span {
  color: var(--muted);
}

.combo-sound-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-block: 1.15rem;
  border-block: 1px solid rgba(7, 7, 7, 0.16);
}

.combo-sound-setting > div {
  display: grid;
  gap: 0.1rem;
}

.combo-sound-setting strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.combo-sound-setting > div span,
.combo-safety-note {
  color: #65625c;
  font-size: 0.68rem;
}

.combo-sound-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  border: 0;
  background: transparent;
  color: #3d3b37;
}

.combo-sound-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.combo-switch {
  position: relative;
  width: 2.65rem;
  height: 1.45rem;
  border: 1px solid rgba(7, 7, 7, 0.34);
  background: rgba(7, 7, 7, 0.08);
  transition: background 220ms ease, border-color 220ms ease;
}

.combo-switch i {
  position: absolute;
  top: 0.22rem;
  left: 0.25rem;
  width: 0.88rem;
  height: 0.88rem;
  background: #65625c;
  transition: background 220ms ease, translate 220ms var(--ease);
}

.combo-sound-toggle[aria-pressed="true"] .combo-switch {
  border-color: var(--red);
  background: var(--red);
}

.combo-sound-toggle[aria-pressed="true"] .combo-switch i {
  translate: 1.2rem 0;
  background: #fff;
}

.combo-sound-toggle > b {
  min-width: 4.4rem;
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.combo-safety-note {
  max-width: 30rem;
  margin-top: auto;
  padding-top: 2rem;
  line-height: 1.65;
}

.combo-stage {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 38rem;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(213, 27, 43, 0.16), transparent 31%),
    linear-gradient(135deg, transparent 0 74%, rgba(255, 255, 255, 0.025) 74%),
    var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.combo-stage::before {
  position: absolute;
  z-index: -1;
  top: -0.18em;
  right: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  content: "60";
  font-family: var(--display);
  font-size: clamp(14rem, 29vw, 29rem);
  font-weight: 900;
  line-height: 0.8;
}

.combo-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.combo-stage-head > span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.combo-stage-head > span b {
  color: #ff606c;
  font-family: var(--display);
  font-size: 1.1rem;
}

.combo-stage-head > strong {
  padding: 0.48rem 0.62rem;
  border: 1px solid var(--line-strong);
  color: var(--paper-dim);
  line-height: 1;
}

.combo-stage[data-state="running"] .combo-stage-head > strong,
.combo-stage[data-state="countdown"] .combo-stage-head > strong {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.combo-clock-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.combo-clock {
  display: grid;
  gap: 0.35rem;
}

.combo-clock > span,
.combo-call-count > span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.combo-clock > strong {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.72;
}

.combo-call-count {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
}

.combo-call-count > strong {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 0.75;
}

.combo-progress {
  height: 4px;
  margin-top: 1.4rem;
  overflow: hidden;
  background: var(--line);
}

.combo-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left center;
}

.combo-callout {
  display: grid;
  min-height: 12.5rem;
  align-content: center;
  margin-block: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: 1.5rem;
  border-block: 1px solid var(--line);
}

.combo-callout > p {
  margin-bottom: 0.7rem;
  color: #ff606c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.combo-callout :is(h2, h3) {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5.7vw, 5.8rem);
  line-height: 0.84;
  text-wrap: balance;
}

.combo-callout > span {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.combo-callout.is-switching :is(h2, h3) {
  animation: combo-call-hit 360ms var(--ease);
}

@keyframes combo-call-hit {
  from {
    opacity: 0;
    translate: 0.5rem 0;
  }

  to {
    opacity: 1;
    translate: 0;
  }
}

.combo-stage[data-state="countdown"] .combo-callout :is(h2, h3) {
  color: var(--red-bright);
  font-size: clamp(5.5rem, 12vw, 11rem);
}

.combo-stage[data-state="paused"] .combo-callout {
  opacity: 0.58;
}

.combo-stage[data-state="complete"] .combo-callout :is(h2, h3) {
  color: var(--red-bright);
}

.combo-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.combo-primary {
  min-width: 13.5rem;
}

.combo-reset {
  min-height: 3.65rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease;
}

.combo-reset:hover:not(:disabled) {
  border-color: var(--paper);
  color: #fff;
}

.combo-reset:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.combo-finish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.combo-finish[hidden] {
  display: none;
}

.combo-finish p {
  max-width: 30rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.combo-finish p strong {
  color: var(--paper);
}

.combo-finish .text-link {
  flex: 0 0 auto;
}

/* Standalone challenge page */
.combo-game-page {
  background: var(--paper);
}

.combo-page-topbar {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.combo-page-topbar-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.combo-page-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.combo-page-back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.combo-page-back:hover {
  color: #fff;
}

.combo-challenge--page {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.combo-page-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.combo-page-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.combo-page-footer p {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Method */
.method {
  overflow: hidden;
  background: var(--surface);
}

.method::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32vw;
  height: 1px;
  background: var(--red);
  content: "";
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.method-media {
  position: relative;
  aspect-ratio: 1 / 1.02;
  overflow: visible;
}

.method-media::before {
  position: absolute;
  z-index: 1;
  top: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  border-top: 2px solid var(--red-bright);
  border-left: 2px solid var(--red-bright);
  content: "";
}

.method-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.method-media .method-team-photo {
  object-position: center 62%;
}

.method-stamp {
  position: absolute;
  right: -2rem;
  bottom: -1.75rem;
  display: flex;
  width: 9.5rem;
  height: 9.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  border: 2px solid var(--paper);
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  text-align: center;
  text-transform: uppercase;
}

.method-stamp span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-stamp strong {
  font-size: 2.4rem;
  line-height: 0.9;
}

.method-copy h2 {
  max-width: 10ch;
  margin-bottom: 2rem;
}

.method-copy .lead {
  margin-bottom: 2rem;
}

.method-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skill {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease;
}

.skill:hover {
  background: rgba(255, 255, 255, 0.025);
}

.skill span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
}

.skill h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.skill p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.skill--wide {
  grid-column: span 2;
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 11rem);
  background: var(--red);
  color: #fff;
  isolation: isolate;
}

.manifesto::before {
  position: absolute;
  z-index: -1;
  top: -25%;
  right: -8%;
  width: 43%;
  height: 155%;
  transform: skewX(-13deg);
  background: rgba(0, 0, 0, 0.14);
  content: "";
}

.manifesto::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 68%, rgba(0, 0, 0, 0.16) 68% 69%, transparent 69%);
  content: "";
}

.manifesto-kicker {
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: none;
  font-size: clamp(3.6rem, 8.2vw, 9rem);
  line-height: 0.82;
}

.manifesto h2 span {
  display: block;
}

.manifesto h2 span:nth-child(2) {
  margin-left: 0.9em;
}

.manifesto h2 span:nth-child(3) {
  margin-left: 0.3em;
}

.manifesto h2 i {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.manifesto .container > p:last-child {
  max-width: 38rem;
  margin-top: 2.5rem;
  margin-left: auto;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

/* Journey */
.journey {
  background: var(--ink-soft);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.journey-list li {
  position: relative;
  padding: 2rem clamp(1.2rem, 2.2vw, 2rem) 2.5rem;
  border-right: 1px solid var(--line);
}

.journey-list li:first-child {
  border-left: 1px solid var(--line);
}

.journey-list li::before {
  position: absolute;
  top: -0.34rem;
  left: 1.8rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--red-bright);
  box-shadow: 0 0 0 6px var(--ink-soft);
  content: "";
}

.journey-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
}

.journey-list h3 {
  min-height: 3.8rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 0.98;
}

.journey-list p {
  color: var(--muted);
  font-size: 0.86rem;
}

.journey-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}

/* Coaches */
.coaches {
  overflow: hidden;
  background: var(--ink);
}

.coach-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  isolation: isolate;
}

.coach-feature::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  transform: skewX(-12deg);
  background: linear-gradient(180deg, rgba(169, 14, 27, 0.08), transparent 70%);
  content: "";
}

.coach-feature-media {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  background: #050505;
}

.coach-feature-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 7, 7, 0.72) 0%, transparent 28%),
    linear-gradient(90deg, transparent 75%, rgba(7, 7, 7, 0.25));
  content: "";
}

.coach-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: contrast(1.05);
  transition: filter 500ms ease, scale 700ms var(--ease);
}

.coach-feature:hover .coach-feature-media img {
  filter: contrast(1.1);
  scale: 1;
}

.coach-feature-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-feature-media figcaption strong {
  color: #fff;
  font-size: 0.76rem;
}

.coach-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.coach-feature-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-strong);
}

.coach-feature-head > div > p {
  margin-bottom: 0.7rem;
  color: var(--red-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-feature-head h3 {
  font-size: clamp(3.7rem, 6vw, 6.5rem);
}

.experience-mark {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: end;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.experience-mark span {
  color: var(--paper);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.coach-bio {
  display: grid;
  gap: 1.1rem;
  padding-block: 2rem;
}

.coach-bio p {
  max-width: 50rem;
  color: var(--paper-dim);
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  line-height: 1.75;
}

.coach-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  border-block: 1px solid var(--line-strong);
}

.coach-results > div {
  min-height: 7.5rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.coach-results > div:first-child {
  padding-left: 0;
}

.coach-results > div:last-child {
  border-right: 0;
}

.coach-results dt {
  margin-bottom: 0.5rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.coach-results dd {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.coach-standard {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.coach-standard span {
  color: var(--red-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-standard p {
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.coach-feature-content > .button {
  align-self: flex-start;
}

/* Gallery */
.gallery-section {
  overflow: hidden;
  background: var(--surface);
}

.gallery-heading {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: clamp(13rem, 22vw, 20rem);
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  grid-column: span 4;
  overflow: hidden;
  background: var(--ink);
}

.gallery-item--feature {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item--portrait {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item--half {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.12);
  scale: 1.01;
  transition: scale 700ms var(--ease), filter 500ms ease;
}

.gallery-item .gallery-media--corner {
  object-position: 65% center;
}

.gallery-item .gallery-media--fighter {
  object-position: right center;
}

.gallery-item .gallery-media--contain {
  object-fit: contain;
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.05) 60%);
  content: "";
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(7, 7, 7, 0.35);
  content: "+";
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 250ms ease, border-color 250ms ease, rotate 350ms var(--ease);
}

.gallery-item[data-media-type="video"]::after {
  padding-left: 0.12rem;
  content: "▶";
  font-size: 1rem;
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-item b {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery-item i {
  max-width: 11rem;
  color: var(--paper-dim);
  font-size: 0.68rem;
  font-style: normal;
  text-align: right;
}

.gallery-item:is(:hover, :focus-visible) img {
  filter: saturate(0.92) contrast(1.05);
  scale: 1.055;
}

.gallery-item:is(:hover, :focus-visible)::after {
  rotate: 90deg;
  border-color: var(--red);
  background: var(--red);
}

.gallery-item[data-media-type="video"]:is(:hover, :focus-visible)::after {
  rotate: 0deg;
}

/* Schedule */
.schedule {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(169, 14, 27, 0.12), transparent 28rem),
    var(--ink);
}

.schedule-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.filter-button {
  min-height: 2.65rem;
  padding-inline: 1.1rem;
  border: 0;
  background: transparent;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.filter-button:hover {
  background: var(--surface-2);
  color: var(--paper);
}

.filter-button.is-active,
.filter-button[aria-pressed="true"] {
  background: var(--red);
  color: #fff;
}

.schedule-calendar {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.schedule-calendar-bar {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 46%),
    var(--surface);
}

.schedule-calendar-bar > div:first-child > strong {
  display: block;
  margin-top: 0.12rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-calendar-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-calendar-kicker > span {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red-bright);
  box-shadow: 0 0 0 0.25rem rgba(213, 27, 43, 0.14);
}

.schedule-calendar-meta {
  display: flex;
  border: 1px solid var(--line);
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-calendar-meta span {
  padding: 0.55rem 0.7rem;
}

.schedule-calendar-meta span + span {
  border-left: 1px solid var(--line);
  color: #ff606c;
}

.schedule-scroll-hint {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-scroll-hint span {
  color: var(--red-bright);
  font-size: 1rem;
}

.schedule-calendar-viewport {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--red) var(--ink-soft);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.schedule-calendar-viewport:focus-visible {
  outline-offset: -4px;
}

.schedule-week {
  display: grid;
  width: 100%;
  min-width: 73.5rem;
  grid-template-columns: repeat(7, minmax(10.5rem, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.schedule-day {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 37rem;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  background: var(--ink-soft);
  scroll-snap-align: start;
}

.schedule-day-heading {
  position: relative;
  display: flex;
  min-height: 6.25rem;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1rem;
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 68%);
}

.schedule-day-heading::after {
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 2.4rem;
  height: 3px;
  background: var(--red-bright);
  content: "";
}

.schedule-day-heading > span {
  position: absolute;
  top: -0.65rem;
  right: 0.4rem;
  padding: 0;
  color: rgba(213, 27, 43, 0.2);
  font-family: var(--display);
  font-size: clamp(4.4rem, 5.4vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.schedule-day-heading h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
  letter-spacing: 0.01em;
  text-align: left;
}

.schedule-day-sessions {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.65rem;
  border-left: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 5.95rem,
    rgba(255, 255, 255, 0.022) 6rem
  );
}

.schedule-session {
  --session-accent: #ff606c;
  position: relative;
  display: flex;
  min-height: 10.4rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.9rem 0.8rem 0.8rem 1rem;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.97);
  box-shadow: inset 3px 0 0 var(--session-accent);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.schedule-session[data-category="competitive"] {
  --session-accent: #dfb45f;
}

.schedule-session[data-category="open-gym"] {
  --session-accent: #8da9a3;
}

.schedule-session:is(:hover, :focus-within) {
  z-index: 1;
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.schedule-time {
  color: var(--session-accent);
  font-family: var(--display);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
  white-space: normal;
}

.schedule-session-name {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.schedule-session-name strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.schedule-coach {
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.7rem;
}

.schedule-coach span {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-book {
  display: inline-flex;
  width: 100%;
  min-height: 2.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding-inline: 0.65rem;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease;
}

.schedule-book span {
  color: var(--red-bright);
  transition: transform 220ms var(--ease);
}

.schedule-book:hover {
  border-color: var(--red);
  background: var(--red);
}

.schedule-book:hover span {
  color: #fff;
  transform: translate(3px, -3px);
}

.category-tag {
  display: inline-flex;
  min-height: 1.45rem;
  align-items: center;
  padding-inline: 0.45rem;
  border: 1px solid var(--session-accent);
  color: var(--session-accent);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-empty {
  display: grid;
  min-height: 10.4rem;
  flex: 1;
  place-items: center;
  padding: 1rem;
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.012);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.schedule-empty[hidden] {
  display: none;
}

.schedule-closed {
  display: flex;
  min-height: 16rem;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  border-left: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.028) 0 1px,
    transparent 1px 10px
  );
}

.schedule-day--closed {
  opacity: 0.72;
}

.schedule-day--closed .schedule-day-heading::after {
  background: var(--muted);
}

.schedule-closed strong {
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.schedule-closed span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-day[hidden],
.schedule-session[hidden] {
  display: none;
}

.schedule-notes {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.schedule-notes strong {
  color: var(--paper-dim);
}

/* Memberships */
.memberships {
  background: var(--surface);
}

.membership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  overflow: visible;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.membership-access {
  display: flex;
  min-height: 36rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(145deg, transparent 0 70%, rgba(169, 14, 27, 0.16) 70%),
    var(--ink-soft);
}

.membership-index {
  margin-bottom: 3.5rem;
  color: var(--red-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-access h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.membership-access > p:not(.membership-index) {
  max-width: 30rem;
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.membership-access ul {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 2.5rem;
  padding: 0;
  color: var(--paper-dim);
  font-size: 0.78rem;
  list-style: none;
}

.membership-access li {
  display: grid;
  grid-template-columns: 0.5rem 1fr;
  gap: 0.75rem;
}

.membership-access li::before {
  width: 0.38rem;
  height: 0.38rem;
  margin-top: 0.45rem;
  background: var(--red-bright);
  content: "";
}

.membership-access .button {
  margin-top: auto;
}

.membership-rates {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid var(--line-strong);
}

.membership-rate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-strong);
  transform-origin: center;
  transition:
    background-color 220ms ease,
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.membership-rate:last-child {
  border-bottom: 0;
}

.membership-rate:hover {
  background: rgba(255, 255, 255, 0.025);
}

.membership-rate--best {
  background: rgba(169, 14, 27, 0.09);
}

.membership-rate--best::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.25rem;
  background: var(--red-bright);
  content: "";
}

@media (hover: hover) and (pointer: fine) {
  .membership-rate:hover {
    z-index: 2;
    background-color: #181818;
    box-shadow:
      0 1.25rem 2.75rem rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-0.3rem) scale(1.015);
  }

  .membership-rate--best:hover {
    background-color: #210d10;
  }
}

.membership-rate-copy > p {
  margin-bottom: 0.65rem;
  color: var(--red-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-rate-copy h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
}

.membership-rate-copy span {
  color: var(--muted);
  font-size: 0.72rem;
}

.membership-rate .price {
  display: flex;
  min-width: 8.5rem;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  text-align: right;
}

.membership-rate .price strong {
  font-family: var(--display);
  font-size: clamp(2.75rem, 4.5vw, 4.4rem);
  line-height: 0.86;
}

.membership-rate .price span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-note {
  max-width: 60rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.7rem;
}

/* FAQ */
.faq {
  background: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.faq-intro h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.1rem, 5.5vw, 5.7rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 29rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  min-height: 5.7rem;
  grid-template-columns: 1fr 2.5rem;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1px;
  translate: -50% -50%;
  background: var(--paper);
  content: "";
  transition: rotate 250ms var(--ease);
}

.faq-list summary span::after {
  rotate: 90deg;
}

.faq-list details[open] summary span {
  border-color: var(--red);
  background: var(--red);
}

.faq-list details[open] summary span::after {
  rotate: 0deg;
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 4rem 2rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Contact */
.contact {
  background: var(--surface);
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.5rem;
}

.contact-heading > p:last-child {
  max-width: 35rem;
  padding-bottom: 0.5rem;
  color: var(--paper-dim);
  font-size: 1.08rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.75fr) minmax(30rem, 1.25fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-info address {
  border-top: 1px solid var(--line-strong);
  font-style: normal;
}

.contact-row {
  display: grid;
  min-height: 5rem;
  grid-template-columns: 7.5rem 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-row > span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-dim);
  font-size: 0.82rem;
}

.contact-row a b {
  color: var(--red-bright);
  font-style: normal;
}

.contact-row a:hover {
  color: #fff;
}

.map-embed {
  margin-top: 2rem;
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.map-frame {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  background: var(--surface-2);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed-meta {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line-strong);
}

.map-embed-meta > span {
  display: grid;
  gap: 0.25rem;
}

.map-embed-meta small {
  color: var(--red-bright);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-embed-meta strong {
  color: var(--paper-dim);
  font-size: 0.72rem;
  font-weight: 600;
}

.map-embed-meta > a {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-embed-meta > a i {
  color: var(--red-bright);
  font-style: normal;
  transition: transform 220ms var(--ease);
}

.map-embed-meta > a:hover i {
  transform: translate(3px, -3px);
}

.booking-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 4px solid var(--red);
  background: var(--ink-soft);
}

.form-heading {
  margin-bottom: 2.5rem;
}

.form-heading > span {
  color: var(--red-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-block: 0.7rem;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.form-heading p {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-heading p span,
.field label > span:first-child {
  color: #ff606c;
}

.form-summary {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-left: 4px solid #ff606c;
  background: rgba(213, 27, 43, 0.1);
}

.form-summary strong {
  display: block;
  font-size: 0.82rem;
}

.form-summary p {
  color: var(--paper-dim);
  font-size: 0.72rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #101010;
  color: var(--paper);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  padding-inline: 0.9rem;
}

.field textarea {
  min-height: 8rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--paper-dim) 50%),
    linear-gradient(135deg, var(--paper-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.7rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.32rem 0.32rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--paper);
  box-shadow: 0 0 0 1px var(--paper);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.checkbox-field input[aria-invalid="true"] + span {
  border-color: #ff606c;
  box-shadow: 0 0 0 1px #ff606c;
}

.field-error {
  display: block;
  min-height: 1.15rem;
  padding-top: 0.2rem;
  color: #ff7a84;
  font-size: 0.66rem;
  font-weight: 700;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  gap: 0.7rem;
  margin-top: 1.25rem;
  cursor: pointer;
}

.checkbox-field input {
  position: absolute;
  opacity: 0;
}

.checkbox-field > span {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  border: 1px solid var(--line-strong);
}

.checkbox-field input:checked + span {
  border-color: var(--red);
  background: var(--red);
}

.checkbox-field input:checked + span::after {
  position: absolute;
  top: 0.15rem;
  left: 0.38rem;
  width: 0.3rem;
  height: 0.6rem;
  rotate: 45deg;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
}

.checkbox-field input:focus-visible + span {
  outline: 3px solid #ff606c;
  outline-offset: 4px;
}

.checkbox-field em {
  color: var(--paper-dim);
  font-size: 0.74rem;
  font-style: normal;
}

.consent-error {
  margin-left: 1.9rem;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: var(--paper-dim);
  font-size: 0.72rem;
}

.form-status.is-error {
  color: #ff7a84;
}

.form-status.is-success {
  color: #9fdda9;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Footer */
.site-footer {
  padding-top: 4rem;
  border-top: 1px solid var(--line-strong);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.5fr;
  align-items: start;
  gap: 3rem;
  padding-bottom: 4rem;
}

.brand--footer .brand-logo {
  width: clamp(8.75rem, 14vw, 11rem);
}

.footer-top > p {
  max-width: 16rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem 1.5rem;
}

.footer-top nav a {
  min-height: 2rem;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-top nav a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Gallery dialog */
.lightbox {
  width: min(94vw, 84rem);
  max-width: none;
  max-height: 92svh;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
}

.lightbox:not([open]) {
  display: none;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-inner {
  position: relative;
  display: grid;
  min-height: 60vh;
  grid-template-columns: 4rem 1fr 4rem;
  align-items: center;
}

.lightbox figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.lightbox-media {
  display: grid;
  min-width: 0;
  place-items: center;
  background: #050505;
}

.lightbox-media > img {
  width: 100%;
  max-height: 76svh;
  object-fit: contain;
}

.lightbox-media > video {
  width: min(100%, 32rem);
  max-height: 76svh;
  object-fit: contain;
}

.lightbox-media > [hidden] {
  display: none;
}

.lightbox figcaption {
  padding: 1rem;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox button {
  border: 0;
  background: transparent;
}

.lightbox-nav {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  color: var(--paper);
  font-size: 1.4rem;
  transition: background 200ms ease;
}

.lightbox-nav:hover {
  background: var(--red);
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 0.5rem;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--ink) !important;
  font-size: 1.8rem;
  line-height: 1;
}

/* Reveal motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.program-grid [data-reveal]:nth-child(2),
.journey-list [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.program-grid [data-reveal]:nth-child(3),
.journey-list [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.program-grid [data-reveal]:nth-child(4),
.journey-list [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 80rem) {
  .schedule-calendar-meta {
    display: none;
  }

  .schedule-scroll-hint {
    display: inline-flex;
  }
}

/* Tablet */
@media (max-width: 70rem) {
  .primary-nav {
    gap: 0.85rem;
  }

  .primary-nav a {
    font-size: 0.68rem;
  }

  .nav-shell {
    gap: 1rem;
  }

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

  .program-card {
    min-height: 32rem;
    border-bottom: 1px solid var(--line);
  }

  .program-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill--wide {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: clamp(14rem, 30vw, 20rem);
  }

  .gallery-item--half {
    grid-column: span 12;
  }

  .schedule-week {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(7, 17rem);
  }
}

@media (max-width: 61.99rem) {
  :root {
    --header-height: calc(4.75rem + env(safe-area-inset-top, 0px));
    --safe-gutter-left: max(var(--gutter), env(safe-area-inset-left, 0px));
    --safe-gutter-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  }

  body::before {
    display: none;
  }

  .site-header.is-scrolled,
  .site-header:focus-within {
    background: #070707;
    backdrop-filter: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding-top: env(safe-area-inset-top, 0px);
    padding-right: var(--safe-gutter-right);
    padding-left: var(--safe-gutter-left);
  }

  .container {
    padding-right: var(--safe-gutter-right);
    padding-left: var(--safe-gutter-left);
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 3rem;
    height: 3rem;
    grid-column: 3;
    place-content: center;
    gap: 0.42rem;
    margin-left: auto;
    border: 1px solid var(--line-strong);
    background: #070707;
  }

  .nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--paper);
    transition: rotate 180ms var(--ease), translate 180ms var(--ease);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    translate: 0 4px;
    rotate: 45deg;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    translate: 0 -4px;
    rotate: -45deg;
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding:
      calc(var(--header-height) + 1.25rem)
      var(--safe-gutter-right)
      max(7rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)))
      var(--safe-gutter-left);
    translate: 100% 0;
    background:
      linear-gradient(135deg, transparent 0 68%, rgba(169, 14, 27, 0.13) 68%),
      #070707;
    transition: visibility 0s linear 300ms, translate 300ms var(--ease);
  }

  .primary-nav.is-open {
    visibility: visible;
    translate: 0;
    transition-delay: 0s;
  }

  .primary-nav a {
    display: flex;
    min-height: 4.4rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .primary-nav a::before {
    content: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    position: fixed;
    z-index: 102;
    right: var(--safe-gutter-right);
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    left: var(--safe-gutter-left);
    display: inline-flex;
    visibility: hidden;
    min-height: 3.4rem;
    translate: 0 1rem;
    opacity: 0;
    pointer-events: none;
    transition:
      visibility 0s linear 220ms,
      opacity 180ms ease,
      translate 220ms var(--ease);
  }

  .primary-nav.is-open + .nav-cta {
    visibility: visible;
    translate: 0;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .hero-reel-toggle,
  .mobile-arrow,
  [data-combo-primary-icon] {
    display: none !important;
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-nav-label,
  .mobile-combo-separator {
    display: inline;
  }

  .lightbox-nav .mobile-nav-label {
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .hero-reel-item :is(img, video) {
    filter: none;
  }

  .js .hero-reel-item.is-active :is(img, video) {
    animation: none;
  }

  .gallery-item[data-media-type="video"]::after {
    width: auto;
    padding-inline: 0.65rem;
    content: "Video";
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .js [data-reveal] {
    transform: translateY(12px);
    transition-duration: 400ms;
  }

  .program-grid [data-reveal],
  .journey-list [data-reveal] {
    transition-delay: 0s;
  }

  a,
  button,
  input,
  select,
  textarea {
    touch-action: manipulation;
  }

  .combo-challenge-shell {
    grid-template-columns: 1fr;
  }

  .combo-level-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-setup {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.28);
  }

  .combo-panel-label {
    margin-bottom: 3rem;
  }

  .combo-safety-note {
    margin-top: 2rem;
  }

  .combo-stage {
    min-height: 36rem;
  }

  .method-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .coach-feature {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  }

  .coach-feature-media {
    min-height: 43rem;
  }

  .coach-feature-content {
    padding: 2rem;
  }

  .gallery-item--feature {
    grid-column: span 12;
    grid-row: span 2;
  }

  .gallery-item--portrait {
    grid-column: span 6;
    grid-row: span 2;
  }

  .membership-panel {
    grid-template-columns: 1fr;
  }

  .membership-access {
    min-height: 30rem;
  }

  .membership-rates {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.25fr;
    gap: 2.5rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    align-content: center;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 61.99rem) and (max-height: 40.625rem) {
  .primary-nav {
    padding-top: calc(var(--header-height) + 0.65rem);
  }

  .primary-nav a {
    min-height: 3.35rem;
    font-size: clamp(1.75rem, 8vh, 2.5rem);
  }
}

/* Mobile */
@media (max-width: 47.99rem) {
  :root {
    --gutter: 1.2rem;
    --section: 4rem;
  }

  .js.mobile-page-mode #main-content > [data-mobile-page][hidden] {
    display: none !important;
  }

  h2 {
    font-size: clamp(2.85rem, 13vw, 3.5rem);
    line-height: 0.92;
  }

  .section-heading,
  .contact-heading,
  .gallery-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 br,
  .contact-heading h2 br,
  .gallery-heading h2 br {
    display: none;
  }

  .mobile-heading-gap {
    display: inline;
  }

  .section-heading--split,
  .contact-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .contact-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: end;
    padding-block: calc(var(--header-height) + 2.5rem) 3rem;
  }

  .hero-reel-item--portrait {
    right: 0;
    left: 0;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .hero-reel-item--corner img {
    object-position: 62% center;
  }

  .hero-reel-item {
    transition:
      opacity 450ms var(--ease),
      visibility 0s linear 450ms;
  }

  .hero-reel-item.is-active {
    transition-delay: 0s;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3,3,3,0.98) 0%, rgba(3,3,3,0.8) 48%, rgba(3,3,3,0.28) 100%),
      linear-gradient(90deg, rgba(3,3,3,0.7), transparent);
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-title {
    font-size: clamp(4.7rem, 22vw, 6rem);
    line-height: 0.7;
  }

  .hero-title-outline {
    margin-left: 0.12em;
  }

  .hero-statement {
    max-width: 24ch;
    margin-top: 1.4rem;
    font-size: clamp(1.5rem, 6.4vw, 1.85rem);
  }

  .hero-copy {
    max-width: 35rem;
    margin-top: 0.9rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1.4rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .mobile-rail-note {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: -0.75rem 0 1rem;
    color: var(--paper-dim);
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-rail-note::before {
    width: 1.75rem;
    height: 2px;
    background: #ff606c;
    content: "";
  }

  .program-grid {
    display: flex;
    gap: 0.75rem;
    margin-right: calc(var(--safe-gutter-right) * -1);
    overflow-x: auto;
    padding-right: var(--safe-gutter-right);
    border-bottom: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .program-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .program-card {
    min-height: 27rem;
    flex: 0 0 min(84vw, 21rem);
    padding: 1.5rem;
    border-top: 1px solid var(--line-strong);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line-strong);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .program-level {
    margin-bottom: 2.75rem;
    color: #ff606c;
    font-size: 0.72rem;
  }

  .program-card > p:not(.program-level) {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .program-details {
    margin-block: 1.5rem;
    font-size: 0.82rem;
  }

  .combo-setup,
  .combo-stage {
    padding: 1rem;
  }

  .combo-level-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-panel-label {
    margin-bottom: 1.25rem;
  }

  .combo-challenge--page {
    padding-top: 3rem;
  }

  .combo-challenge-heading {
    margin-bottom: 2rem;
  }

  .combo-challenge-heading h1 {
    font-size: clamp(2.9rem, 13vw, 3.6rem);
    line-height: 0.9;
  }

  .combo-challenge-heading h1 br {
    display: none;
  }

  .combo-challenge .section-intro {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .combo-setup {
    min-height: 0;
  }

  .combo-level-buttons button {
    min-height: 4.4rem;
    padding: 0.75rem;
  }

  .combo-level-buttons span {
    display: none;
  }

  .combo-sound-setting {
    margin-top: 1rem;
    padding-block: 0.75rem;
  }

  .combo-safety-note {
    margin-top: 0;
    padding-top: 0.75rem;
    font-size: 0.75rem;
  }

  .combo-stage {
    min-height: 31rem;
  }

  .combo-stage-head {
    order: -2;
  }

  .combo-clock-row {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .combo-clock > strong {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .combo-callout {
    min-height: 10rem;
    margin-block: 1.25rem;
  }

  .combo-callout :is(h2, h3) {
    font-size: clamp(2.6rem, 12vw, 4.6rem);
  }

  .combo-controls {
    order: -1;
    align-items: stretch;
    flex-direction: column;
    margin: 1rem 0 0.5rem;
  }

  .combo-primary,
  .combo-reset {
    width: 100%;
  }

  .combo-finish {
    align-items: flex-start;
    flex-direction: column;
  }

  .combo-page-actions .button {
    display: none;
  }

  .combo-page-topbar-inner {
    gap: 1rem;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .combo-page-back {
    font-size: 0.7rem;
  }

  .combo-page-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .combo-page-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .method-copy {
    order: 1;
  }

  .method-copy h2 {
    max-width: none;
  }

  .method-media {
    order: 2;
  }

  .method-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-actions .button {
    max-width: 100%;
  }

  .method-media {
    aspect-ratio: 4 / 4.2;
  }

  .method-stamp {
    right: 1rem;
    width: 7rem;
    height: 7rem;
  }

  .method-stamp strong {
    font-size: 1.8rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .skill {
    min-height: 9.5rem;
    padding: 1rem;
  }

  .skill span {
    margin-bottom: 1.15rem;
    color: #ff606c;
  }

  .skill h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .skill p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .skill:last-child {
    grid-column: span 2;
  }

  .manifesto h2 span:nth-child(2),
  .manifesto h2 span:nth-child(3) {
    margin-left: 0;
  }

  .manifesto h2 {
    font-size: clamp(2.75rem, 13vw, 3.6rem);
    line-height: 0.88;
  }

  .manifesto {
    padding-block: 4rem;
  }

  .manifesto-kicker {
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
  }

  .manifesto .container > p:last-child {
    margin-top: 1.75rem;
    font-size: 0.95rem;
  }

  .journey-list {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .journey-list li,
  .journey-list li:first-child {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .journey-list li::before {
    top: 2rem;
    left: -0.35rem;
  }

  .journey-number {
    margin-bottom: 0;
  }

  .journey-list h3 {
    min-height: 0;
  }

  .journey-action {
    justify-content: stretch;
  }

  .journey-action .button {
    width: 100%;
  }

  .coach-feature {
    grid-template-columns: 1fr;
  }

  .coach-feature-media {
    min-height: 0;
    aspect-ratio: 876 / 1192;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .coach-feature-content {
    padding: 1.25rem;
  }

  .coach-feature-head {
    align-items: start;
  }

  .experience-mark span {
    font-size: 2.8rem;
  }

  .coach-results > div {
    min-height: 6.5rem;
    padding: 1rem 0.7rem;
  }

  .coach-results > div:first-child {
    padding-left: 0;
  }

  .coach-results dd {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .coach-feature-head > div > p,
  .coach-standard span {
    color: #ff606c;
    font-size: 0.72rem;
  }

  .coach-bio {
    gap: 0.8rem;
    padding-block: 1.5rem;
  }

  .coach-bio p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .coach-standard {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .coach-feature-content > .button {
    width: 100%;
  }

  .gallery-grid {
    display: flex;
    gap: 0.75rem;
    margin-right: calc(var(--safe-gutter-right) * -1);
    overflow-x: auto;
    padding-right: var(--safe-gutter-right);
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-item,
  .gallery-item--feature,
  .gallery-item--portrait {
    width: auto;
    height: min(108vw, 27rem);
    flex: 0 0 min(82vw, 20rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gallery-item > span {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .gallery-item i {
    text-align: left;
  }

  .filter-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.4rem;
  }

  .filter-button {
    width: 100%;
    min-height: 3rem;
    padding-inline: 0.7rem;
    font-size: 0.78rem;
  }

  .schedule-calendar-bar {
    min-height: 4.25rem;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .schedule-calendar-bar > div:first-child > strong {
    font-size: 1.25rem;
  }

  .schedule-scroll-hint {
    margin-left: auto;
    white-space: nowrap;
  }

  .schedule-calendar-viewport {
    scroll-snap-type: x mandatory;
  }

  .schedule-week {
    grid-template-columns: repeat(7, min(82vw, 18rem));
  }

  .schedule-day {
    min-height: 34rem;
  }

  .schedule-day-heading {
    min-height: 5.25rem;
    padding: 0.85rem 1rem;
  }

  .schedule-day-heading > span {
    top: -0.9rem;
    font-size: 5rem;
  }

  .schedule-day-heading h3 {
    font-size: 1.65rem;
  }

  .schedule-session,
  .schedule-empty {
    min-height: 9.75rem;
  }

  .schedule-book {
    min-height: 2.9rem;
    font-size: 0.78rem;
  }

  .category-tag {
    min-height: 1.75rem;
    font-size: 0.65rem;
  }

  .schedule-coach {
    font-size: 0.76rem;
  }

  .schedule-coach span {
    font-size: 0.66rem;
  }

  .schedule-calendar-kicker,
  .category-tag,
  .schedule-coach span,
  .coach-feature-head > div > p,
  .coach-standard span,
  .contact-row > span,
  .map-embed-meta small,
  .footer-bottom {
    font-size: 0.75rem;
  }

  .schedule-closed {
    min-height: 7rem;
  }

  .schedule-notes {
    flex-direction: column;
    gap: 0.4rem;
  }

  .membership-access {
    min-height: 0;
    padding: 1.35rem;
  }

  .membership-access .button {
    margin-top: 0;
  }

  .membership-index {
    margin-bottom: 1.75rem;
    color: #ff606c;
    font-size: 0.72rem;
  }

  .membership-access h3 {
    font-size: 2.7rem;
  }

  .membership-access ul {
    margin-block: 1.5rem;
    font-size: 0.84rem;
  }

  .membership-rate {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1.25rem;
  }

  .membership-rate .price {
    min-width: 5.6rem;
  }

  .membership-rate .price strong {
    font-size: 2.7rem;
  }

  .membership-rate-copy > p {
    color: #ff606c;
    font-size: 0.7rem;
  }

  .membership-note {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .faq-list details p {
    padding-right: 0;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .faq-list summary {
    min-height: 4.75rem;
    grid-template-columns: 1fr 2.5rem;
    gap: 1rem;
    font-size: 1.3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading > p:last-child {
    font-size: 0.98rem;
  }

  .contact-info {
    display: contents;
  }

  .contact-info address {
    order: 2;
  }

  .map-embed {
    order: 3;
  }

  .booking-form {
    order: 1;
    padding: 1.25rem;
  }

  .field label,
  .form-heading p,
  .checkbox-field em {
    font-size: 0.78rem;
  }

  .field-error:empty,
  .form-status:empty {
    display: none;
  }

  .checkbox-field {
    min-height: 2.75rem;
    align-items: center;
  }

  .contact-row > span {
    font-size: 0.75rem;
  }

  .contact-row a,
  .contact-row p {
    min-height: 2.75rem;
    font-size: 0.84rem;
  }

  .map-embed-meta > a {
    min-height: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top nav a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .footer-bottom {
    min-height: 6rem;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
  }

  .lightbox {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    max-height: none;
    border: 0;
  }

  .lightbox-inner {
    height: 100%;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 4.5rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .lightbox-close {
    top: max(0.5rem, env(safe-area-inset-top, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .lightbox figure {
    grid-column: 1 / -1;
    align-self: center;
  }

  .lightbox-media > img,
  .lightbox-media > video {
    max-height: calc(100svh - 9rem);
  }

  .lightbox-prev,
  .lightbox-next {
    width: 100%;
    grid-row: 2;
    border-top: 1px solid var(--line) !important;
  }

  .lightbox-nav .mobile-nav-label {
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .eyebrow,
  .program-level,
  .method-stamp span,
  .coach-feature-media figcaption span,
  .coach-results dd,
  .gallery-item i,
  .schedule-scroll-hint,
  .schedule-calendar-meta,
  .schedule-empty,
  .schedule-closed span,
  .schedule-notes,
  .membership-index,
  .membership-rate-copy > p,
  .membership-rate-copy > span,
  .membership-rate .price span,
  .map-embed-meta strong,
  .form-heading > span,
  .form-summary p,
  .field-error,
  .form-status,
  .combo-page-back,
  .combo-panel-label,
  .combo-level-picker legend,
  .combo-sound-setting > div span,
  .combo-sound-toggle > b,
  .combo-stage-head,
  .combo-clock > span,
  .combo-call-count > span,
  .combo-callout > p,
  .combo-callout > span,
  .combo-page-footer p {
    font-size: 0.75rem;
  }
}

@media (max-width: 47.99rem) and (max-height: 40.625rem) {
  .hero {
    padding-block: calc(var(--header-height) + 0.75rem) 1.5rem;
  }

  .hero-title {
    font-size: clamp(4.15rem, 20vw, 5rem);
  }

  .hero-statement {
    margin-top: 0.85rem;
    font-size: 1.35rem;
  }

  .hero-copy {
    margin-top: 0.65rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 0.85rem;
  }

  .hero-actions .button {
    min-height: 3.25rem;
  }

  .hero-actions .button--ghost,
  .hero-note {
    display: none;
  }
}

@media (max-width: 25rem) {
  .brand-logo {
    width: 7.25rem;
  }

  .hero-title {
    font-size: 4.7rem;
  }

  .hero-copy {
    line-height: 1.55;
  }

  .combo-stage-head {
    align-items: flex-start;
  }

  .combo-stage-head > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .combo-call-count > strong {
    font-size: 2.5rem;
  }

}

@media (hover: none) {
  .button:hover,
  .gallery-item:hover img {
    transform: none;
    scale: 1.01;
  }

  .combo-level-buttons button:hover:not(:disabled) {
    transform: none;
  }

  .coach-feature:hover .coach-feature-media img {
    transform: none;
    scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-reel-item :is(img, video) {
    animation: none !important;
    scale: 1.035;
    translate: 0;
  }

  .hero-reel-item {
    display: none;
  }

  .hero-reel-item:first-child {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero-reel-toggle {
    display: none;
  }

  .membership-rate:hover {
    transform: none;
  }

  .combo-callout.is-switching :is(h2, h3) {
    animation: none !important;
  }

  .combo-level-buttons button:hover:not(:disabled) {
    transform: none;
  }
}
