/* ==========================================================================
   MAX FIT · single-page stylesheet
   Palette: strictly black / white / red
   ========================================================================== */

:root {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --bg-card: #1c1c1c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #ffffff;
  --dim: #999999;
  --red: #e00000;
  --red-dim: #a80000;
  --on-red: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --max-w: 1240px;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Preloader: logo resolve ---------- */

body.is-loading { overflow: hidden; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 640px);
  height: auto;
}

.preloader__caption {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  transform: translateY(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  opacity: 0;
  animation: preloader-caption-in 0.5s var(--ease) 0.3s forwards;
}

.preloader__dots {
  display: inline-flex;
  gap: 4px;
}

.preloader__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: preloader-dot-pulse 1.1s ease-in-out infinite;
}

.preloader__dots span:nth-child(2) { animation-delay: 0.15s; }
.preloader__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes preloader-caption-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-dot-pulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.15); }
}

body.is-loading .site-header,
body.is-loading .float-cta,
body.is-loading .hero__shapes,
body.is-loading .hero__label,
body.is-loading .hero__logo-wrap,
body.is-loading .hero__tagline,
body.is-loading .hero__sub,
body.is-loading .hero__free-badge,
body.is-loading .hero__actions,
body.is-loading .hero__scroll,
body.is-loading main > *:not(.hero) {
  opacity: 0;
}

.float-cta,
.hero__shapes,
.hero__label,
.hero__logo-wrap,
.hero__tagline,
.hero__sub,
.hero__free-badge,
.hero__actions,
.hero__scroll,
main > *:not(.hero) {
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  #preloader { display: none; }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--dim); }

section {
  scroll-margin-top: var(--nav-h);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.section {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--line);
}

.section--tight { padding: 80px 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 18px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--red);
  color: var(--on-red);
}

.btn--primary:hover { background: var(--white); color: var(--bg); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}

.btn--outline:hover { border-color: var(--red); color: var(--red); }

.btn--sm { padding: 12px 22px; font-size: 0.8rem; }

/* ---------- Cursor ---------- */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s ease;
  mix-blend-mode: difference;
  display: none;
}

.cursor-dot.is-active { display: block; }

.cursor-dot.is-hover {
  width: 44px;
  height: 44px;
  background: var(--white);
}

/* ---------- Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease), opacity 0.6s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.nav__logo span { color: var(--red); }

.logo-mark {
  height: 24px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  position: relative;
  display: inline-block;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--dim);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover { color: var(--white); }

.nav__links a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}

.nav__cta {
  margin-left: 8px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .nav__toggle { display: flex; z-index: 120; }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    background: var(--bg);
    display: none;
  }

  .nav__links.is-open { display: flex; }

  .nav__links a { font-size: 1.4rem; padding: 10px 24px; }

  .nav__cta { margin-left: 0; margin-top: 12px; }
}

/* Floating book pill, always reachable */

.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(224, 0, 0, 0.35);
}

@media (max-width: 880px) {
  .float-cta { right: 14px; bottom: 14px; padding: 14px 20px; font-size: 0.8rem; }
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  will-change: transform;
  transition: transform 0.15s linear;
}

.shape--ring {
  width: 130px;
  height: 130px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  top: 18%;
  right: 10%;
}

.shape--dot {
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  top: 62%;
  right: 22%;
}

.shape--plus {
  width: 46px;
  height: 46px;
  top: 30%;
  left: 6%;
}

.shape--plus::before,
.shape--plus::after {
  content: "";
  position: absolute;
  background: var(--line-strong);
}

.shape--plus::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.shape--plus::after { height: 100%; width: 2px; left: 50%; transform: translateX(-50%); }

.shape--sq {
  width: 60px;
  height: 60px;
  border: 2px solid var(--red);
  top: 72%;
  left: 12%;
  transform: rotate(20deg);
}

.shape--chevron {
  width: 300px;
  height: 420px;
  bottom: -80px;
  right: -80px;
  background: var(--red);
  opacity: 0.16;
  clip-path: polygon(0% 0%, 42% 0%, 100% 50%, 42% 100%, 0% 100%, 58% 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__label {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.hero__logo-wrap {
  position: relative;
  width: min(92%, 560px);
  margin-bottom: 20px;
}

.hero__logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.hero__logo-underglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224, 0, 0, 0.4), rgba(224, 0, 0, 0.12) 45%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.hero__tagline {
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  letter-spacing: 4px;
  margin: 0 0 28px;
  color: var(--red);
}

.accent { color: var(--red); }

.hero__sub {
  font-size: 1.2rem;
  color: var(--dim);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__free-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.hero__free-badge svg { width: 22px; height: 22px; flex: none; }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--red);
  color: var(--on-red);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  text-transform: uppercase;
  padding: 22px 0;
  white-space: nowrap;
}

.marquee__item span.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--on-red);
  display: inline-block;
}

.marquee__item + .marquee__item { margin-left: 40px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee--dark {
  background: var(--bg-alt);
  color: var(--white);
}

.marquee--dark .marquee__item span.dot { background: var(--red); }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.grow-in {
  transform: scale(0.85);
  opacity: 0.4;
  will-change: transform, opacity;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.reveal-fade.is-visible {
  opacity: 1;
}

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Grid ---------- */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- Media placeholder ---------- */

.media-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, var(--bg-card), var(--bg-card) 10px, #1b1b1b 10px, #1b1b1b 20px);
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.media-placeholder--video { aspect-ratio: 16 / 9; }
.media-placeholder--square { aspect-ratio: 1 / 1; }
.media-placeholder--portrait { aspect-ratio: 3 / 4; }
.media-placeholder--landscape { aspect-ratio: 4 / 3; }

.media-placeholder__inner { padding: 24px; max-width: 260px; }

.media-placeholder__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.media-placeholder__label {
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.media-placeholder__hint {
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 4px;
}

/* ---------- About / bio ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
}

.coach-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.bio-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.bio-card__summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  cursor: pointer;
  user-select: none;
}

.bio-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--red);
}

.bio-card__name { font-size: 1.05rem; margin-bottom: 2px; }

.bio-card__role {
  font-size: 0.85rem;
  color: var(--dim);
  margin: 0;
}

.bio-card__toggle {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.35s var(--ease), border-color 0.2s ease;
}

.bio-card.is-open .bio-card__toggle {
  transform: rotate(45deg);
  border-color: var(--red);
}

.bio-card__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.bio-card.is-open .bio-card__body-wrap {
  grid-template-rows: 1fr;
}

.bio-card__body {
  overflow: hidden;
}

.bio-card__body-inner {
  padding: 0 22px 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.bio-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.bio-card__fact {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(224, 0, 0, 0.12);
  border: 1px solid rgba(224, 0, 0, 0.4);
  padding: 8px 14px;
  border-radius: 999px;
}

/* Pull quote */

.pull-quote {
  margin: 28px 0 32px;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--red);
}

.pull-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 10px;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

/* Drag strip */

.drag-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  cursor: grab;
  scrollbar-width: none;
}

.drag-strip.is-dragging { cursor: grabbing; }

.drag-strip::-webkit-scrollbar { display: none; }

.drag-strip__item {
  flex: none;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.drag-strip__item h4 {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.drag-strip__item p {
  font-size: 0.82rem;
  margin: 0;
}

.drag-hint {
  font-size: 0.75rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .drag-strip {
    flex-direction: column;
    overflow-x: visible;
    cursor: default;
  }

  .drag-strip__item {
    min-width: 0;
    width: 100%;
  }

  .drag-hint {
    display: none;
  }
}

/* ---------- Programs ---------- */

.program {
  border-top: 1px solid var(--line);
}

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

.program__head {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  cursor: pointer;
}

.program__num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--dim);
  flex: none;
  width: 50px;
  transition: color 0.2s ease;
}

.program.is-open .program__num,
.program__head:hover .program__num { color: var(--red); }

.program__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0;
  flex: 1;
  transition: transform 0.3s var(--ease);
}

.program__head:hover .program__title { transform: translateX(8px); }

.program__toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), border-color 0.2s ease, background 0.2s ease;
}

.program.is-open .program__toggle {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: var(--on-red);
}

.program__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.program.is-open .program__body-wrap { grid-template-rows: 1fr; }

.program__body { overflow: hidden; }

.program__body-inner {
  padding: 0 0 36px 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .program__body-inner { padding-left: 0; }
  .program__head { gap: 16px; }
}

.program__desc { max-width: 460px; margin: 0; }

.program__sub {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}

.program__sub-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: 0.5px;
  color: var(--red);
  margin: 0 0 12px;
}

.program__sub .program__desc { margin-bottom: 20px; }

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 26px;
  width: 100%;
}

@media (max-width: 700px) {
  .class-grid { grid-template-columns: 1fr; }
}

.class-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.class-card__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--on-red);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.class-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.class-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Weekly timetable (calendar view) ---------- */

.wk-cal {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 22px 0 12px;
  background: var(--bg-card);
}

.wk-cal__head {
  display: grid;
  grid-template-columns: 52px repeat(7, minmax(76px, 1fr));
  min-width: 620px;
  border-bottom: 1px solid var(--line);
}

.wk-cal__day {
  padding: 10px 4px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  border-left: 1px solid var(--line);
}

.wk-cal__body {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-width: 620px;
}

.wk-cal__hours {
  position: relative;
  height: 320px;
}

.wk-cal__hours span {
  position: absolute;
  left: 0;
  right: 8px;
  transform: translateY(-50%);
  text-align: right;
  font-size: 0.7rem;
  color: var(--dim);
}

.wk-cal__hours span:nth-child(1) { top: 0%; }
.wk-cal__hours span:nth-child(2) { top: 25%; }
.wk-cal__hours span:nth-child(3) { top: 50%; }
.wk-cal__hours span:nth-child(4) { top: 75%; }
.wk-cal__hours span:nth-child(5) { top: 100%; }

.wk-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 320px;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line) 0,
    var(--line) 1px,
    transparent 1px,
    transparent 25%
  );
}

.wk-cal__track {
  position: relative;
  border-left: 1px solid var(--line);
}

.wk-cal__event {
  position: absolute;
  left: 4px;
  right: 4px;
  background: rgba(224, 0, 0, 0.16);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 4px 6px;
  overflow: hidden;
}

.wk-cal__event-time {
  display: block;
  font-size: 0.62rem;
  color: var(--dim);
  white-space: nowrap;
}

.wk-cal__event-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.timetable__note {
  font-size: 0.78rem;
  color: var(--dim);
  margin: 0 0 22px;
}

/* ---------- Wall of Fame ---------- */

.wof {
  position: relative;
  background: #000;
  overflow: hidden;
}

.wof__tab {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 2px solid var(--red);
  padding: 0 0 8px;
  z-index: 2;
  pointer-events: none;
}

.wof__collage {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 44px 24px;
}

.wof-card {
  position: relative;
  flex: none;
  width: 300px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  margin: 0 -18px 40px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s var(--ease), z-index 0.3s;
}

.wof-card:hover {
  transform: rotate(0deg) scale(1.04) !important;
  z-index: 10;
}

.wof-card:nth-child(1) { transform: rotate(-3deg); margin-top: 6px; }
.wof-card:nth-child(2) { transform: rotate(2deg); margin-top: 64px; }
.wof-card:nth-child(3) { transform: rotate(-2deg); margin-top: 0; }
.wof-card:nth-child(4) { transform: rotate(4deg); margin-top: 46px; }
.wof-card:nth-child(5) { transform: rotate(-4deg); margin-top: 20px; margin-right: 0; }

.wof-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.wof-card__watermark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: auto;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.wof-card__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
}

.wof-card__tag-name {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 26px 6px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.wof-card__tag-stat {
  background: var(--white);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 22px 4px 12px;
  margin-top: 2px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.wof__insta {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 5;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wof__insta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 760px) {
  .wof__collage {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 24px;
  }

  .wof-card {
    width: min(100%, 340px);
    margin: 0 0 28px 0 !important;
    transform: none !important;
  }

  .wof-card:hover { transform: scale(1.02) !important; }

  .wof__insta {
    position: static;
    margin: 8px auto 0;
    transform: none;
  }

  .wof__insta:hover { transform: scale(1.08); }
}

/* ---------- Client video testimonials ---------- */

.vt { background: var(--bg-alt); }

.vt__viewport {
  position: relative;
}

.vt__track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.vt-card {
  position: relative;
  flex: none;
  width: 240px;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.2s ease;
}

.vt-card:hover,
.vt-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--red);
}

.vt-card:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.vt-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.vt-card__thumb.media-placeholder { border-radius: 0; }

.vt-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(224, 0, 0, 0.9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s var(--ease), background 0.2s ease;
  pointer-events: none;
}

.vt-card:hover .vt-card__play,
.vt-card:focus-visible .vt-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--red);
}

.vt-card__who {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.vt-card__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
}

.vt-card__caption {
  display: block;
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .vt-card { width: 72vw; }
}

/* Video lightbox */

.vt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vt-lightbox.is-open { opacity: 1; visibility: visible; }

.vt-lightbox__panel {
  position: relative;
  width: min(92vw, 480px);
}

.vt-lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vt-lightbox__close:hover { background: var(--red); border-color: var(--red); }

.vt-lightbox__title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 10px;
}

.vt-lightbox__body {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
}

.vt-lightbox__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vt-lightbox__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 4px;
}

body.vt-lightbox-open { overflow: hidden; }

/* ---------- Testimonials (layered) ---------- */

.tv2 {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.tv2__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80%, 900px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  animation: none;
}

.tv2__side-tab {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 2px solid var(--red);
  padding: 0 0 8px;
  z-index: 4;
  pointer-events: none;
}

.tv2__head {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 32px;
}

.tv2__viewport {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

.tv2__track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: tv2-marquee 38s linear infinite;
}

.tv2__viewport:hover .tv2__track,
.tv2__track:focus-within {
  animation-play-state: paused;
}

@keyframes tv2-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tv2-card {
  flex: none;
  width: 340px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}

@media (max-width: 600px) {
  .tv2-card { width: 84vw; }
}

.tv2-card__quote {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #e8e8e8;
  margin: 0 0 16px;
}

.tv2-card__divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 14px;
}

.tv2-card__who {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tv2-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.tv2-card__badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--on-red);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Stats ---------- */

.stats {
  background: var(--bg-alt);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  text-align: center;
  padding: 24px 12px;
}

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat__num .suffix { color: var(--red); }

.stat__label {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
}

.stats-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 32px;
}

/* ---------- Book ---------- */

/* ---------- Location ---------- */

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.location {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.location__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.location__body { padding: 16px 18px; }

.location__name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.location__suburb {
  font-size: 0.82rem;
  color: var(--dim);
  margin-bottom: 10px;
}

.location__link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
}

.location__link:hover { color: var(--white); border-color: var(--white); }

.location__note {
  font-size: 0.82rem;
  color: var(--dim);
  margin: 20px 0 0;
}

.book {
  text-align: center;
}

.book__title {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.book__sub {
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 1.1rem;
}

.book__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.book__note {
  font-size: 0.82rem;
  color: var(--dim);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer__logo span { color: var(--red); }

.footer__logo .logo-mark {
  height: 32px;
}

.footer__tagline {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 16px;
}

.footer h4 {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.footer a { color: var(--dim); font-size: 0.92rem; }

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

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--dim);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-fade {
    opacity: 1;
    transition: none;
  }

  .grow-in {
    transform: none;
    opacity: 1;
  }

  .marquee__track { animation: none; }

  .shape { transition: none; }

  .cursor-dot { display: none !important; }

  .tv2__track {
    animation: none !important;
    transform: none !important;
  }

  .tv2__track .tv2-card[aria-hidden="true"] { display: none; }
}
