:root {
  --bg: #050608;
  --bg-soft: #0b1015;
  --bg-panel: rgba(12, 16, 22, 0.82);
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #f3f5f7;
  --text-soft: rgba(243, 245, 247, 0.72);
  --text-dim: rgba(243, 245, 247, 0.5);
  --accent: #ed1c24;
  --accent-soft: rgba(237, 28, 36, 0.18);
  --steel: #b7bec7;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --max-width: 1280px;
  --display-font: 'Teko', sans-serif;
  --heading-font: 'Bebas Neue', sans-serif;
  --logo-font: 'Sarpanch', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(237, 28, 36, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #07090d 0%, #040506 42%, #090d11 100%);
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
}

body:not(.is-loaded) {
  overflow: hidden;
  height: 100svh;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 78%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, transparent, transparent 180px, rgba(255, 255, 255, 0.03) 180px, rgba(255, 255, 255, 0.03) 181px);
  pointer-events: none;
  z-index: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

#emberscape,
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#emberscape {
  z-index: 0;
  opacity: 0.85;
}

.noise-layer {
  z-index: 1;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  background-size: 12px 12px, 100% 100%;
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffffff 0%, #ed1c24 42%, #7a0e14 100%);
  box-shadow: 0 0 24px rgba(237, 28, 36, 0.55);
}

.loader {
  --loader-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(237, 28, 36, 0.12) 0%, transparent 36%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.98), rgba(5, 6, 8, 1));
  transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.8s;
  overflow: hidden;
}

.loader-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(237, 28, 36, 0.15) 0%, transparent 60%),
    url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.08"/%3E%3C/svg%3E'),
    rgba(5, 6, 8, 1);
  mix-blend-mode: multiply;
  z-index: 1;
}

.loader-mark {
  position: relative;
  z-index: 2;
  width: min(280px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  gap: 0;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-logo {
  position: relative;
  width: clamp(176px, 24vw, 280px);
  aspect-ratio: 1;
  filter: drop-shadow(0 22px 52px rgba(0, 0, 0, 0.44));
}

.loader-logo-base,
.loader-logo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-logo-base {
  filter: grayscale(1) brightness(0.82) contrast(1.06);
  opacity: 0.96;
}

.loader-logo-fill {
  clip-path: inset(calc((1 - var(--loader-progress)) * 100%) 0 0 0);
}

.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;
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 2;
}

.site-header {
  --header-merge-progress: 0;
  position: fixed;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 20;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  isolation: isolate;
  transition: top 0.34s ease;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgba(9, 11, 15, 0.96), rgba(9, 11, 15, 0.78)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.18), transparent 45%);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition:
    padding 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-lockup img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.site-nav {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgba(9, 11, 15, 0.96), rgba(9, 11, 15, 0.8)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.16), transparent 32%);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition:
    padding 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(237, 28, 36, 0.24);
  clip-path: inherit;
  pointer-events: none;
}

.site-nav a {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.82rem 1rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: -0.08rem;
  top: 50%;
  width: 1px;
  height: 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(237, 28, 36, 0.58), transparent);
  transform: translateY(-50%) skewX(-20deg);
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  padding: 0.88rem 1.25rem 0.82rem;
  background: linear-gradient(135deg, #ff2f38, #981117);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.menu-toggle {
  display: none;
  padding: 0.78rem 1rem 0.72rem;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgba(9, 11, 15, 0.96), rgba(9, 11, 15, 0.8)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.16), transparent 32%);
  color: var(--text);
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.section-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-kicker,
.eyebrow,
.feature-kicker,
.day-kicker,
.film-kicker {
  margin: 0 0 0.65rem;
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.75rem);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.display-heading {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 0.8;
  text-wrap: balance;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.05);
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero,
.hero.section-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100svh;
  padding-inline: clamp(16px, 4vw, 32px);
  padding-top: clamp(8.5rem, 15vh, 11rem);
  padding-bottom: clamp(4.4rem, 10vh, 6.4rem);
  overflow: clip;
  isolation: isolate;
  text-align: center;
}

body[data-page='home'] .hero {
  margin-top: 0;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  background: #050608;
}

.hero-background-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background-video {
  top: -3vh;
  left: -5vw;
  width: calc(100% + 10vw);
  height: calc(100% + 6vh);
  object-fit: cover;
  object-position: center center;
  opacity: 0.78;
  filter: blur(0.2px) saturate(0.9) brightness(0.84) contrast(1.08);
  transform: scale(1.04);
}

.hero-video-overlay {
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.48) 0%, rgba(5, 6, 8, 0.14) 24%, rgba(5, 6, 8, 0.32) 68%, rgba(5, 6, 8, 0.72) 100%);
}

.hero-media.is-static .hero-background-video {
  opacity: 0;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2vw, 1.45rem);
  width: min(1060px, calc(100% - 32px));
  margin-top: clamp(-7.8rem, -8.9vh, -4.2rem);
  padding: clamp(1rem, 3vw, 1.8rem) 0;
  text-align: center;
}

.hero-kicker {
  margin-bottom: -0.3rem;
}

.hero-stage::before,
.hero-stage::after {
  content: none;
}

.hero-wordmark {
  position: relative;
  display: block;
  width: min(100%, 980px);
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  isolation: isolate;
}

.hero-wordmark::before,
.hero-wordmark::after {
  content: none;
}

.hero-title {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: clamp(4.25rem, 9.2vw, 8.5rem);
  letter-spacing: 0.035em;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.58);
}

.hero-title-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.04em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-body {
  max-width: 42ch;
  margin: clamp(0.7rem, 1.8vw, 1.15rem) 0 0;
  font-size: 1rem;
  color: rgba(243, 245, 247, 0.88);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.52);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-actions--single {
  width: 100%;
}

.contact-actions--single .button-primary {
  width: min(420px, 100%);
}

.hero-actions {
  justify-content: center;
  margin-top: 0.25rem;
}

.button-primary,
.button-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 58px;
  padding: 0.95rem 1.55rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button-primary::after,
.button-secondary::after {
  content: '/';
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9em;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #ff2c35, #9f1117);
  color: #fff;
  box-shadow: 0 18px 40px rgba(237, 28, 36, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.18), transparent 48%);
  color: var(--text);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 28, 36, 0.5);
  box-shadow: 0 24px 45px rgba(237, 28, 36, 0.22);
}

@keyframes heroGridDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes flameJet {
  0%,
  100% {
    transform: scaleY(0.96) translateY(4px);
    opacity: 0.82;
  }
  35%,
  55% {
    transform: scaleY(1.08) translateY(-6px);
    opacity: 1;
  }
  78% {
    transform: scaleY(0.9) translateY(6px);
    opacity: 0.72;
  }
}

@keyframes meltPulse {
  0% {
    transform: scaleY(0.96);
    opacity: 0.86;
  }
  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.96);
    opacity: 0.86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video {
    display: none;
  }
}

.scroll-film {
  height: 360svh;
  position: relative;
}

.film-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  transform: translateZ(0);
}

#frameCanvas,
.film-shade {
  position: absolute;
  inset: 0;
}

#frameCanvas {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.film-shade {
  background:
    radial-gradient(circle at center, transparent 32%, rgba(5, 6, 8, 0.1) 55%, rgba(5, 6, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.65), transparent 25%, transparent 60%, rgba(5, 6, 8, 0.9));
}

.film-notes {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.film-note {
  position: absolute;
  width: min(360px, calc(50vw - 72px));
  min-height: clamp(240px, 28vh, 320px);
  padding: 1.4rem 1.5rem 1.55rem;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.72)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.16), transparent 42%);
  backdrop-filter: blur(18px);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate3d(var(--note-shift-x, 0), var(--note-shift-y, 24px), 0) scale(0.88);
  transition: opacity 0.18s ease, transform 0.24s ease, border-color 0.24s ease, filter 0.24s ease;
}

.film-note--nw {
  top: clamp(108px, 16vh, 160px);
  left: clamp(16px, 4vw, 48px);
  transform-origin: left top;
  --note-shift-x: -42px;
  --note-shift-y: -24px;
}

.film-note--ne {
  top: clamp(108px, 16vh, 160px);
  right: clamp(16px, 4vw, 48px);
  transform-origin: right top;
  --note-shift-x: 42px;
  --note-shift-y: -24px;
}

.film-note--sw {
  bottom: clamp(48px, 11vh, 112px);
  left: clamp(16px, 4vw, 48px);
  transform-origin: left bottom;
  --note-shift-x: -42px;
  --note-shift-y: 28px;
}

.film-note--se {
  bottom: clamp(48px, 11vh, 112px);
  right: clamp(16px, 4vw, 48px);
  transform-origin: right bottom;
  --note-shift-x: 42px;
  --note-shift-y: 28px;
}

.film-note::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(237, 28, 36, 0.26);
  clip-path: inherit;
  pointer-events: none;
}

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

.film-note.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(237, 28, 36, 0.48);
  filter: none;
}

.film-note.is-before,
.film-note.is-after {
  opacity: 0;
  filter: saturate(0.72);
}

.film-note.is-before {
  transform: translate3d(calc(var(--note-shift-x) * 0.34), calc(var(--note-shift-y) * 0.34), 0) scale(0.78);
}

.film-note.is-after {
  transform: translate3d(calc(var(--note-shift-x) * 0.6), calc(var(--note-shift-y) * 0.6), 0) scale(0.72);
}

.film-note.is-hidden {
  opacity: 0;
  transform: translate3d(var(--note-shift-x), var(--note-shift-y), 0) scale(0.62);
}

.scroll-film--stepped .film-note {
  transition: opacity 0.14s ease, transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.film-label {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-rating {
  display: flex;
  gap: 0.28rem;
  margin-top: 0.7rem;
}

.film-star {
  color: #f3d7d9;
  font-size: 1rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(237, 28, 36, 0.22);
}

.film-quote {
  margin-top: 0.9rem;
  max-width: 24ch;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  line-height: 1.3;
  text-wrap: balance;
}

.film-quote--summary {
  font-size: clamp(1.52rem, 2.3vw, 2.38rem);
  line-height: 0.96;
  max-width: 10ch;
}

.film-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.8rem;
  margin-top: 1rem;
}

.film-author {
  color: var(--steel);
  font-family: var(--display-font);
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.film-stat {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.film-note--summary .film-label {
  color: rgba(255, 255, 255, 0.76);
}

.film-note--summary .film-author {
  max-width: 10ch;
  color: #fff;
  font-size: 0.94rem;
}

.trust-grid,
.program-grid,
.coach-grid,
.testimonial-grid,
.gallery-grid,
.audience-grid,
.persona-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.trust-card,
.persona-card,
.program-card,
.kids-feature,
.testimonial-card,
.gallery-card,
.contact-card,
.day-card,
.schedule-hero-card {
  border: 1px solid var(--panel-border);
  background: var(--bg-panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 1.45rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 28, 36, 0.78);
  box-shadow:
    0 0 0 1px rgba(237, 28, 36, 0.32),
    0 0 34px rgba(237, 28, 36, 0.2),
    var(--shadow);
}

.trust-value {
  display: block;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
}

.trust-label {
  margin-top: 0.4rem;
  font-size: 1.8rem;
}

.trust-detail {
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.persona-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.5rem;
  border: 1px solid rgba(183, 190, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(7, 9, 12, 0.9)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.14), transparent 48%);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.persona-card--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 9, 12, 0.92)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.22), transparent 50%);
}

.persona-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 28, 36, 0.46);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.persona-label {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.persona-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.persona-body {
  max-width: 36ch;
}

.persona-cta {
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.62rem 1rem 0.56rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 12, 0.42);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.persona-cta::after {
  content: '/';
  color: var(--accent);
}

.programs .section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.program-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.program-showcase::before {
  display: none;
}

.program-panel {
  position: relative;
  grid-column: span 3;
  min-height: 360px;
  padding: 0;
  border: 1px solid rgba(183, 190, 199, 0.18);
  background: #07090d;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-media,
.program-overlay {
  position: absolute;
  inset: 0;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center center);
  filter: saturate(0.8) brightness(0.42) contrast(1.08);
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.program-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.45) 32%, rgba(5, 6, 8, 0.92) 100%),
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 45%);
  transition: background 0.35s ease;
}

.program-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.6rem;
  min-height: inherit;
  height: 100%;
  padding: 1.75rem;
  text-align: center;
}

.program-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.12rem 0.68rem 0;
  border: 1px solid rgba(183, 190, 199, 0.28);
  background: rgba(8, 10, 12, 0.68);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.program-meta {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-title {
  max-width: 7.2ch;
  font-size: clamp(1.95rem, 2.25vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 0.84;
}

.program-body {
  max-width: 27ch;
  font-size: 0.96rem;
}

.program-panel[data-slug='kickboxing'] .program-content,
.program-panel[data-slug='conditioning'] .program-content,
.program-panel[data-slug='ladies-kickboxing'] .program-content {
  justify-items: center;
  text-align: center;
}

.program-panel[data-slug='kickboxing'] .program-title,
.program-panel[data-slug='conditioning'] .program-title,
.program-panel[data-slug='ladies-kickboxing'] .program-title,
.program-panel[data-slug='kickboxing'] .program-body,
.program-panel[data-slug='conditioning'] .program-body,
.program-panel[data-slug='ladies-kickboxing'] .program-body {
  margin-inline: auto;
}

.program-cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 1rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 12, 0.42);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.program-cta::after {
  content: '/';
  color: var(--accent);
}

.program-panel:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 28, 36, 0.7);
  box-shadow:
    0 0 0 1px rgba(183, 190, 199, 0.08),
    0 0 34px rgba(237, 28, 36, 0.18),
    0 30px 60px rgba(0, 0, 0, 0.52);
}

.program-panel:hover .program-media img {
  transform: scale(1.08);
  filter: saturate(0.98) brightness(0.66) contrast(1.12);
}

.program-panel:hover .program-overlay {
  background:
    linear-gradient(180deg, rgba(237, 28, 36, 0.08), rgba(5, 6, 8, 0.38) 30%, rgba(5, 6, 8, 0.9) 100%),
    linear-gradient(135deg, rgba(237, 28, 36, 0.24), rgba(183, 190, 199, 0.08) 55%, transparent 82%);
}

.program-panel:hover .program-title {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(237, 28, 36, 0.24);
}

.program-panel:hover .program-cta {
  transform: translateY(-2px);
  border-color: rgba(237, 28, 36, 0.58);
  background: rgba(10, 12, 14, 0.62);
}

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

.audience-card {
  display: grid;
  align-content: start;
  position: relative;
  min-height: clamp(360px, 24vw, 440px);
  padding: 1.85rem 1.9rem 1.7rem;
  border: 1px solid rgba(183, 190, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(5, 6, 8, 0.92)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.14), transparent 46%);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.audience-media,
.audience-overlay {
  position: absolute;
  inset: 0;
}

.audience-media {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--audience-image-position, center center);
  filter: saturate(0.78) brightness(0.46) contrast(1.05);
}

.audience-overlay {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.1), rgba(5, 6, 8, 0.86)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.14), transparent 46%);
  transition: background 0.28s ease;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 28, 36, 0.54);
  box-shadow:
    0 0 0 1px rgba(237, 28, 36, 0.22),
    0 0 28px rgba(237, 28, 36, 0.16),
    0 28px 56px rgba(0, 0, 0, 0.46);
}

.audience-card:hover .audience-media {
  opacity: 0.38;
}

.audience-card:hover .audience-overlay {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06), rgba(5, 6, 8, 0.78)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(183, 190, 199, 0.05) 62%, transparent 86%);
}

.audience-kicker,
.audience-stat {
  position: relative;
  z-index: 1;
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-title {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  max-width: 17ch;
  font-size: clamp(2.35rem, 3.15vw, 3.95rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.audience-body {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  max-width: 31ch;
  font-size: 1rem;
  line-height: 1.5;
}

.audience-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  margin-top: 1.3rem;
  padding: 0.9rem 1.2rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 12, 0.22);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.audience-stat::after {
  content: '/';
  color: var(--accent);
}

.instructors .section-heading {
  max-width: 560px;
}

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

.coach-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 0;
  padding: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    var(--bg-panel);
}

.coach-role {
  color: var(--steel);
  font-size: 0.95rem;
}

.coach-name {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.coach-focus {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0.2rem 0 0;
}

.coach-focus li {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
}

.testimonial-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 1.65rem;
  border: 1px solid rgba(183, 190, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 6, 8, 0.92)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 46%);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  color: rgba(237, 28, 36, 0.12);
  font-family: var(--display-font);
  font-size: 10rem;
  line-height: 1;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-label,
.testimonial-stat {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  color: var(--text);
  max-width: 24ch;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1rem;
  color: var(--steel);
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.9rem 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.faq .section-heading {
  max-width: 720px;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(183, 190, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 6, 8, 0.94)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 52%);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.faq-item[open] {
  border-color: rgba(237, 28, 36, 0.44);
  box-shadow:
    0 0 0 1px rgba(237, 28, 36, 0.14),
    0 24px 52px rgba(0, 0, 0, 0.32);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.faq-question::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.45rem 1.35rem;
  max-width: 70ch;
  color: var(--text-soft);
}

.faq-answer p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-copy,
.contact-stack {
  min-height: 100%;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 0.4rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-body {
  max-width: 52ch;
  margin-top: 1rem;
}

.contact-actions {
  align-items: stretch;
}

.contact-socials {
  width: min(560px, 100%);
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.contact-socials-heading {
  margin: 0;
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.14), transparent 56%);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-social-link::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(237, 28, 36, 0.14);
  clip-path: inherit;
  pointer-events: none;
}

.contact-social-link::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(237, 28, 36, 0.88));
  transform: skewX(-38deg);
  pointer-events: none;
}

.contact-social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 28, 36, 0.42);
  box-shadow: 0 18px 34px rgba(237, 28, 36, 0.16);
}

.contact-social-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(237, 28, 36, 0.2));
}

.contact-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-social-link--facebook .contact-social-icon svg path,
.contact-social-link--tiktok .contact-social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.contact-social-link--facebook:hover,
.contact-social-link--instagram:hover,
.contact-social-link--tiktok:hover,
.contact-social-link--whatsapp:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.2), transparent 56%);
}

.contact-social-label {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card,
.schedule-hero-card {
  padding: 1.5rem;
}

.schedule-hero-copy {
  display: grid;
  gap: 1.2rem;
}

.schedule-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.schedule-metric {
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 44%);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.schedule-metric-value,
.day-stat-value {
  display: block;
  color: #fff;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.schedule-metric-label,
.day-stat-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 2rem;
}

.contact-card dl {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0 0;
}

.contact-card dt {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0.35rem 0 0;
  color: var(--text);
}

.contact-map {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(183, 190, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 6, 8, 0.94)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.08), transparent 52%);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.88);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
}

.site-footer strong {
  display: block;
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
}

.site-footer span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mobile-action-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 10px;
  width: min(calc(100vw - 20px), 420px);
  transform: translateX(-50%);
  z-index: 35;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.94), rgba(6, 7, 9, 0.88)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.16), transparent 44%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.mobile-action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 0.8rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.mobile-action-link--accent {
  background: linear-gradient(135deg, #ff2f38, #981117);
}

.schedule-page .section-shell:first-of-type {
  padding-top: clamp(7.4rem, 11vw, 8.2rem);
  padding-bottom: 2.2rem;
}

.schedule-hero {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.schedule-hero-copy {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  max-width: 40rem;
}

.schedule-hero-copy > p:last-child {
  max-width: 38ch;
}

.schedule-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.schedule-days {
  padding-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.schedule-download-button {
  min-height: 56px;
  padding-inline: 1.15rem;
}

.schedule-download-button::after {
  content: none;
}

.schedule-download-button--wide {
  min-width: min(100%, 280px);
}

.day-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  margin-bottom: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 18, 0.9), rgba(7, 8, 10, 0.76)),
    linear-gradient(135deg, rgba(237, 28, 36, 0.14), transparent 44%);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  height: 100%;
}

.day-card-header {
  display: grid;
  gap: 0.45rem;
}

.day-summary {
  max-width: 60ch;
}

.day-card-actions {
  display: flex;
  justify-content: flex-end;
}

.day-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.day-stat {
  padding: 0.95rem 1rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.day-table {
  display: grid;
  gap: 0.6rem;
}

.day-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 148px;
  gap: 0;
  align-items: stretch;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.08), transparent 34%);
}

.day-row span,
.day-row strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.day-row-time,
.day-row-coach {
  color: var(--steel);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.day-row-session {
  color: var(--text);
  font-size: 1rem;
  padding-inline: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.day-row strong {
  color: var(--text);
}

.day-row-time {
  padding-right: 0.95rem;
}

.day-row-coach {
  justify-content: flex-start;
  padding-left: 1rem;
}

body.has-reveal .reveal,
body.has-reveal .trust-card,
body.has-reveal .program-panel,
body.has-reveal .coach-card,
body.has-reveal .testimonial-card,
body.has-reveal .gallery-card,
body.has-reveal .day-card,
body.has-reveal .audience-card,
body.has-reveal .faq-item,
body.has-reveal .contact-map {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.has-reveal .is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .trust-grid,
  .testimonial-grid,
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact,
  .schedule-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.2rem;
    padding-bottom: 4.8rem;
  }

  .program-showcase {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .program-panel {
    grid-column: span 3;
  }

  .hero-stage {
    width: min(920px, 100%);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .trust-grid,
  .persona-grid,
  .audience-grid,
  .testimonial-grid,
  .gallery-grid,
  .coach-grid {
    grid-template-columns: 1fr;
  }

  .program-showcase {
    grid-template-columns: 1fr;
  }

  .program-panel,
  .program-panel-kids {
    grid-column: span 1;
  }

  .hero {
    min-height: auto;
    padding-top: 8.2rem;
    padding-bottom: 4rem;
  }

  body[data-page='home'] .hero {
    min-height: 100svh;
  }

  .hero-stage {
    margin-top: clamp(-10.25rem, -12.25vh, -6.15rem);
    gap: 1rem;
  }

  .hero-wordmark {
    width: min(100%, 920px);
  }

  .hero-body {
    max-width: 38ch;
  }

  .scroll-film {
    height: 240svh;
  }

  .film-notes {
    left: 16px;
    right: 16px;
    bottom: 1.5rem;
    top: auto;
    inset: auto 16px 1.5rem;
  }

  .film-note {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    min-height: 228px;
    transform-origin: center bottom;
    --note-shift-x: 0;
    --note-shift-y: 42px;
    padding: 1.2rem 1.25rem 1.35rem;
  }

  .film-note.is-before,
  .film-note.is-after {
    opacity: 0;
  }

  .film-note.is-before {
    transform: translate3d(0, -42px, 0) scale(0.9);
  }

  .film-note.is-after {
    transform: translate3d(0, 42px, 0) scale(0.9);
  }

  .film-note.is-hidden {
    transform: translate3d(0, 68px, 0) scale(0.86);
  }

  .coach-card {
    min-height: 0;
  }

  .audience-card {
    min-height: 0;
  }

  .audience-title {
    max-width: 12ch;
    font-size: clamp(2.35rem, 6vw, 3.1rem);
  }

  .audience-body {
    max-width: 100%;
  }

  .schedule-days {
    grid-template-columns: 1fr;
  }

  .day-meta-row {
    grid-template-columns: 1fr;
  }

  .day-row {
    grid-template-columns: 88px minmax(0, 1fr) 132px;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 8px;
    padding-top: 0.6rem;
  }

  .brand-lockup {
    padding: 0.62rem 0.78rem;
  }

  .brand-lockup img {
    width: 76px;
    height: 76px;
  }

  .section-shell {
    width: min(var(--max-width), calc(100% - 20px));
    padding: 4.2rem 0;
  }

  .hero.section-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3.05rem, 13.4vw, 5rem);
    letter-spacing: 0.028em;
  }

  .hero-stage {
    margin-top: clamp(-6.65rem, -8.4vh, -3.6rem);
    width: calc(100% - 20px);
  }

  body[data-page='home'] .hero {
    min-height: 100svh;
  }

  .hero-body {
    max-width: 24ch;
    font-size: 0.92rem;
  }

  .hero-actions {
    width: min(360px, 100%);
    justify-content: center;
  }

  .mobile-action-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .day-card-actions {
    justify-content: stretch;
  }

  .schedule-download-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .day-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .day-row-time,
  .day-row-coach {
    font-size: 0.72rem;
  }

  .program-panel {
    min-height: 320px;
  }

  .scroll-film {
    height: 210svh;
  }

  .scroll-film.scroll-film--mobile {
    height: auto;
    min-height: 0;
    padding-block: 0;
  }

  .scroll-film.scroll-film--mobile .film-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 1.25rem 0 1.5rem;
  }

  .scroll-film.scroll-film--mobile #frameCanvas,
  .scroll-film.scroll-film--mobile .film-shade {
    display: none;
  }

  .scroll-film.scroll-film--mobile .film-notes {
    position: relative;
    inset: auto;
    width: min(100%, 390px);
    min-height: clamp(30rem, 60svh, 34rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0 0;
    pointer-events: auto;
  }

  .scroll-film.scroll-film--mobile .film-note {
    display: none;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(calc(100vw - 36px), 360px);
    min-height: 0;
    padding: 1.35rem 1.2rem 1.45rem;
    transform: scale(0.98);
    transform-origin: center center;
    --note-shift-x: 0;
    --note-shift-y: 0;
    text-align: center;
  }

  .scroll-film.scroll-film--mobile .film-note.is-active {
    display: block;
    transform: scale(1);
  }

  .scroll-film.scroll-film--mobile .film-note.is-before,
  .scroll-film.scroll-film--mobile .film-note.is-after,
  .scroll-film.scroll-film--mobile .film-note.is-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.98);
    filter: none;
  }

  .scroll-film.scroll-film--mobile .film-label,
  .scroll-film.scroll-film--mobile .film-quote,
  .scroll-film.scroll-film--mobile .film-quote--summary {
    margin-inline: auto;
    text-align: center;
  }

  .scroll-film.scroll-film--mobile .film-rating {
    justify-content: center;
  }

  .scroll-film.scroll-film--mobile .film-meta {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .scroll-film.scroll-film--mobile .film-author,
  .scroll-film.scroll-film--mobile .film-stat {
    text-align: center;
  }

  .film-mobile-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    margin-top: 0.9rem;
  }

  .film-mobile-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .film-mobile-dot.is-active {
    background: #ed1c24;
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.16);
  }

  .program-content {
    padding: 1.45rem 1.15rem;
  }

  .program-body {
    max-width: 24ch;
    font-size: 0.92rem;
  }

  .audience-card {
    min-height: 0;
    padding: 1.25rem 1.05rem 1.1rem;
  }

  .audience-title {
    max-width: 100%;
    font-size: clamp(1.88rem, 7.7vw, 2.45rem);
    line-height: 0.92;
  }

  .audience-body {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.44;
  }

  .audience-stat {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    padding: 0.82rem 0.9rem 0.76rem;
  }

  .day-row,
  .day-row-head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
