/* ==================================================================
   FORGE BOXING CLUB — design system
   ------------------------------------------------------------------
   Palette: blued steel for the ground, a blacksmith's heat chart
   (dull red → white-hot) for accents and intensity ratings.
   Type:    Big Shoulders (display + stencil cut), Archivo (text).
   ================================================================== */

@font-face {
  font-family: "Forge Display";
  src: url("../fonts/big-shoulders.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Forge Stencil";
  src: url("../fonts/big-shoulders-stencil.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Forge Text";
  src: url("../fonts/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  color-scheme: dark;

  /* Blued steel */
  --steel-950: #000000;
  --steel-900: #0a0a0a;
  --steel-850: #111111;
  --steel-800: #171717;
  --steel-700: #232323;
  --steel-600: #303030;
  --steel-500: #474747;
  --ash: #a6a6a6;
  --bone: #ffffff;
  --bone-dim: #dcdcdc;

  /* Heat chart */
  --heat-1: #6e0010;
  --heat-2: #a8001a;
  --heat-3: #e10600;
  --heat-4: #ff2d2d;
  --heat-5: #ffffff;
  --temper: #bdbdbd;

  --accent: var(--heat-3);
  --ink: #0e1215;
  --danger: #ff7a66;
  --ok: #ffffff;

  --f-display: "Forge Display", "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --f-stencil: "Forge Stencil", "Forge Display", "Arial Narrow", Impact, sans-serif;
  --f-text: "Forge Text", Archivo, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1360px;
  --header-h: 72px;
  --section: clamp(72px, 9vw, 136px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --notch: 14px;
  --notched: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, var(--notch) 100%, 0 calc(100% - var(--notch)));
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: clip;
  background: var(--steel-900);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--steel-900);
  color: var(--bone);
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Film grain over everything — ties flat fills together */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
[hidden] { display: none !important; }
::selection { background: var(--heat-3); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--heat-4);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--heat-4);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: none; }

@view-transition { navigation: auto; }

/* ------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); position: relative; }
.section-tight { padding-block: clamp(56px, 7vw, 104px); }
.section + .section.seam { border-top: 1px solid var(--steel-700); }
.bg-deep { background: var(--steel-950); }
.bg-raised { background: var(--steel-850); }
.stack > * + * { margin-top: var(--stack, 1.25rem); }

/* ------------------------------------------------------------------
   Type
   ------------------------------------------------------------------ */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.stencil { font-family: var(--f-stencil); }
.d-xxl { font-size: clamp(4.5rem, 13vw, 12.5rem); line-height: 0.8; }
.d-xl  { font-size: clamp(3.4rem, 8.4vw, 7.75rem); }
.d-l   { font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: 0.88; }
.d-m   { font-size: clamp(2rem, 3.2vw, 2.9rem); line-height: 0.92; }
.d-s   { font-size: clamp(1.45rem, 2vw, 1.8rem); line-height: 1; font-weight: 800; }

.label {
  font-family: var(--f-text);
  font-size: 0.75rem;
  font-weight: 650;
  font-stretch: 125%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}
.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 54ch;
  text-wrap: pretty;
}
.muted { color: var(--ash); }
.prose { max-width: 64ch; color: var(--bone-dim); text-wrap: pretty; }
.prose p + p { margin-top: 1.1em; }
.prose strong { color: var(--bone); font-weight: 650; }
.tnum { font-variant-numeric: tabular-nums; }

.hot {
  background: linear-gradient(100deg, var(--heat-2) 0%, var(--heat-3) 38%, var(--heat-4) 72%, var(--heat-5) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: molten 9s var(--ease-io) infinite alternate;
}
@keyframes molten {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heat-4);
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex: none;
}

/* ------------------------------------------------------------------
   Buttons & links
   ------------------------------------------------------------------ */
.btn {
  --notch: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  min-height: 52px;
  padding: 0.95em 1.55em;
  border: 0;
  font-family: var(--f-text);
  font-size: 0.82rem;
  font-weight: 750;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  clip-path: var(--notched);
  transition: background-color 0.25s, color 0.25s, transform 0.35s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: -7px; }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--heat-4); }
.btn-steel { background: var(--steel-700); color: var(--bone); }
.btn-steel:hover { background: var(--steel-600); }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--steel-700); }
.btn-sm { min-height: 42px; padding: 0.7em 1.15em; font-size: 0.72rem; --notch: 9px; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn[disabled] { opacity: 0.6; cursor: progress; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  color: var(--bone);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-block: 6px;
  background: linear-gradient(var(--heat-3), var(--heat-3)) left bottom / 100% 2px no-repeat;
  transition: background-size 0.4s var(--ease-out), color 0.25s;
  justify-self: start;
  align-self: start;
}
.link-arrow:hover { color: var(--heat-4); background-size: 40% 2px; }
.link-arrow .arrow { transition: transform 0.35s var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ------------------------------------------------------------------
   Tags, heat gauge, status
   ------------------------------------------------------------------ */
.tag {
  --notch: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 5px;
  background: var(--steel-700);
  color: var(--bone-dim);
  clip-path: var(--notched);
  font-size: 0.68rem;
  font-weight: 650;
  font-stretch: 125%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.tag-hot { background: var(--heat-3); color: var(--ink); }
.tag-line { background: transparent; box-shadow: inset 0 0 0 1px var(--steel-500); clip-path: none; }

.heat {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  width: 78px;
  height: 8px;
  flex: none;
}
.heat i { background: var(--steel-600); }
.heat[data-heat="1"] i:nth-child(-n+1),
.heat[data-heat="2"] i:nth-child(-n+2),
.heat[data-heat="3"] i:nth-child(-n+3),
.heat[data-heat="4"] i:nth-child(-n+4),
.heat[data-heat="5"] i:nth-child(-n+5) { background: var(--c); }
.heat i:nth-child(1) { --c: var(--heat-1); }
.heat i:nth-child(2) { --c: var(--heat-2); }
.heat i:nth-child(3) { --c: var(--heat-3); }
.heat i:nth-child(4) { --c: var(--heat-4); }
.heat i:nth-child(5) { --c: var(--heat-5); }
.heat-sm { width: 52px; height: 6px; gap: 2px; }
.heat-lg { width: 132px; height: 12px; gap: 4px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 650;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel-500);
  flex: none;
}
.status.is-open::before {
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 2.4s infinite;
}
.status.is-closed::before { background: var(--heat-2); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ------------------------------------------------------------------
   Header & navigation
   ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s, transform 0.45s var(--ease-out);
}
.site-header.is-solid {
  background: rgba(10, 10, 10, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-color: var(--steel-700);
}
.site-header.is-hidden { transform: translateY(-101%); }
.menu-open .site-header { transform: none; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--bone);
  text-decoration: none;
  flex: none;
}
.brand-mark { width: 40px; height: 40px; color: var(--heat-3); transition: transform 0.6s var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-word {
  display: grid;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  line-height: 0.8;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--f-text);
  font-size: 0.55rem;
  font-weight: 650;
  font-stretch: 125%;
  letter-spacing: 0.32em;
  color: var(--ash);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.2vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: block;
  padding-block: 10px;
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 650;
  font-stretch: 122%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--heat-3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--bone); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-end { display: flex; align-items: center; gap: 18px; }

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: -8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out), width 0.4s var(--ease-out);
}
.menu-toggle span { top: 20px; }
.menu-toggle span::before { content: ""; left: 0; top: 7px; width: 16px; }
.menu-toggle[aria-expanded="true"] span { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::before { top: 0; width: 24px; transform: rotate(-90deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 24px) var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(120% 60% at 100% 100%, rgba(225, 6, 0, 0.22), transparent 60%),
    var(--steel-950);
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.6s var(--ease-out), visibility 0s linear 0.6s;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.6s var(--ease-out), visibility 0s;
}
.mobile-menu ol { list-style: none; margin: 0; padding: 0; counter-reset: m; }
.mobile-menu li { border-bottom: 1px solid var(--steel-700); }
.mobile-menu li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 11vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s, color 0.2s;
}
.mobile-menu li a[aria-current="page"] { color: var(--heat-3); }
.mobile-menu.is-open li a { transform: none; opacity: 1; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: 0.05s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: 0.1s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: 0.15s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: 0.2s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: 0.25s; }
.mobile-menu-foot { display: grid; gap: 18px; color: var(--ash); font-size: 0.95rem; }
.mobile-menu-foot a { color: var(--bone); }

@media (max-width: 1080px) {
  .nav-links, .nav-end .status { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 420px) {
  .nav-end .btn { display: none; }
}
body.menu-open { overflow: hidden; }

/* ------------------------------------------------------------------
   Hero (home)
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + clamp(28px, 5vw, 64px));
  background:
    radial-gradient(55% 70% at 78% 62%, rgba(225, 6, 0, 0.20), rgba(168, 0, 26, 0.08) 45%, transparent 72%),
    radial-gradient(40% 50% at 10% 110%, rgba(255, 255, 255, 0.10), transparent 70%),
    var(--steel-900);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: end;
}
.hero-copy { padding-bottom: clamp(40px, 6vw, 88px); position: relative; z-index: 2; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-bottom: clamp(20px, 3vw, 36px); }
.hero-title { margin-bottom: clamp(22px, 3vw, 36px); font-size: clamp(3.3rem, 8.4vw, 8rem); line-height: 0.84; }
.hero-title .line { display: block; }
.hero-title .line-2 { padding-left: 0.04em; }
.hero .lead { margin-bottom: 32px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--steel-600);
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-stats > div {
  padding: clamp(18px, 2.4vw, 28px) clamp(14px, 2vw, 28px);
  border-left: 1px solid var(--steel-700);
  display: grid;
  gap: 6px;
}
.hero-stats > div:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}
.stat-num sup { font-size: 0.45em; vertical-align: top; margin-left: 2px; color: var(--heat-3); }

/* Heavy bag */
.bag-stage {
  position: relative;
  align-self: stretch;
  min-height: clamp(440px, 60vw, 700px);
  margin-top: calc(-1 * clamp(28px, 5vw, 64px));
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}
.bag-svg {
  position: absolute;
  left: 50%;
  top: 0;
  height: calc(100% - 64px);
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  overflow: visible;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}
.bag-sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bag-hud {
  position: absolute;
  right: 0;
  top: clamp(16px, 3vw, 40px);
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
  pointer-events: none;
  z-index: 3;
}
.bag-readout {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 18px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--steel-600);
  font-variant-numeric: tabular-nums;
}
.bag-readout dt { color: var(--ash); font-size: 0.64rem; font-weight: 650; font-stretch: 125%; letter-spacing: 0.14em; text-transform: uppercase; align-self: center; text-align: left; }
.bag-readout dd { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.bag-readout dd b { font-weight: 800; color: var(--heat-4); }
.bag-call {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--heat-4);
  min-height: 1em;
  opacity: 0;
  transform: translateY(8px);
}
.bag-call.is-on { animation: call 0.9s var(--ease-out); }
@keyframes call {
  0% { opacity: 0; transform: translateY(10px) scale(0.9); }
  15% { opacity: 1; transform: none; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-6px); }
}
.bag-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 36px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  white-space: nowrap;
}
.bag-hint .btn { pointer-events: auto; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding-bottom: 8px; }
  .bag-stage { margin-top: 0; min-height: 520px; margin-inline: calc(-1 * var(--gutter)); }
  .bag-svg { height: calc(100% - 48px); }
  .bag-hud { right: var(--gutter); top: 16px; }
  .bag-hint { bottom: 20px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero-stats > div:nth-child(n+3) { border-top: 1px solid var(--steel-700); }
}
@media (max-width: 560px) {
  .bag-stage { min-height: 480px; }
  .bag-readout { padding: 10px 12px; gap: 0 12px; }
  .bag-readout dd { font-size: 1.2rem; }
}

/* ------------------------------------------------------------------
   Marquee
   ------------------------------------------------------------------ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--steel-700);
  background: var(--steel-950);
  padding-block: clamp(14px, 2vw, 24px);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 0.45em;
  padding-right: 0.45em;
  font-family: var(--f-stencil);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group .o { color: transparent; -webkit-text-stroke: 1.5px var(--steel-500); }
.marquee-group .n { color: var(--heat-3); font-family: var(--f-display); font-size: 0.42em; letter-spacing: 0.04em; align-self: flex-start; margin-top: 0.3em; margin-left: -0.3em; }
.marquee-group .sep {
  width: 0.28em;
  height: 0.28em;
  background: var(--heat-3);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------
   Section heads
   ------------------------------------------------------------------ */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .eyebrow { grid-column: 1 / -1; }
.section-head .lead { justify-self: start; }
.section-head.stacked { grid-template-columns: minmax(0, 1fr); }
@media (max-width: 860px) {
  .section-head { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------------------
   Method (Heat / Hammer / Temper)
   ------------------------------------------------------------------ */
.method {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}
.method-intro { position: sticky; top: calc(var(--header-h) + 40px); display: grid; gap: 28px; }
.method-stages { display: grid; }
.stage {
  --c: var(--heat-3);
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px 28px;
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--steel-700);
  position: relative;
}
.stage:last-child { border-bottom: 1px solid var(--steel-700); }
.stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  width: 112px;
  background: var(--c);
  box-shadow: 0 0 18px var(--c);
}
.stage-temp { display: grid; gap: 6px; align-content: start; }
.stage-temp .num { font-family: var(--f-display); font-weight: 900; font-size: 1.1rem; color: var(--c); letter-spacing: 0.06em; }
.stage-temp .deg { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; line-height: 1; font-variant-numeric: tabular-nums; }
.stage-body { display: grid; gap: 14px; }
.stage-body p { color: var(--bone-dim); max-width: 52ch; }
.stage-links { display: flex; flex-wrap: wrap; gap: 8px; }
.stage-links a { text-decoration: none; }
.stage-links a:hover .tag { background: var(--steel-600); color: var(--bone); }
@media (max-width: 900px) {
  .method { grid-template-columns: minmax(0, 1fr); }
  .method-intro { position: static; }
}
@media (max-width: 520px) {
  .stage { grid-template-columns: minmax(0, 1fr); }
  .stage-temp { grid-auto-flow: column; justify-content: start; align-items: baseline; gap: 14px; }
}

/* ------------------------------------------------------------------
   Program cards
   ------------------------------------------------------------------ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--steel-700);
  border: 2px solid var(--steel-700);
}
.pcard {
  --mx: 50%;
  --my: 110%;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 340px;
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--steel-850);
  color: var(--bone);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.3s;
}
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(225, 6, 0, 0.24), rgba(168, 0, 26, 0.08) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.pcard:hover::before,
.pcard:focus-visible::before { opacity: 1; }
.pcard:focus-visible { outline-offset: -4px; }
.pcard-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pcard-time { color: var(--ash); font-size: 0.8rem; font-variant-numeric: tabular-nums; }
.pcard-body { display: grid; gap: 14px; align-content: start; }
.pcard p { color: var(--bone-dim); font-size: 1rem; max-width: 36ch; }
.pcard-foot { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--steel-700); }
.pcard-foot .label { color: var(--ash); font-size: 0.65rem; }
.pcard-foot .arrow {
  margin-left: auto;
  font-size: 1.3rem;
  transition: transform 0.4s var(--ease-out), color 0.2s;
}
.pcard:hover .arrow { transform: translateX(6px); color: var(--heat-4); }
.pcard-wide { grid-column: span 3; min-height: 0; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto; align-items: center; }
.pcard-wide .pcard-foot { border: 0; padding: 0; }
@media (max-width: 1000px) {
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcard-wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .program-grid { grid-template-columns: minmax(0, 1fr); }
  .pcard { min-height: 0; }
  .pcard-wide { grid-column: auto; grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------------------
   Heat legend
   ------------------------------------------------------------------ */
.heat-legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--steel-700);
}
.heat-legend li {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px 18px 20px;
  border-left: 1px solid var(--steel-700);
}
.heat-legend li:first-child { border-left: 0; }
.heat-legend .swatch { height: 10px; background: var(--c); box-shadow: 0 0 22px -4px var(--c); }
.heat-legend .deg { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; line-height: 1; font-variant-numeric: tabular-nums; }
.heat-legend p { color: var(--ash); font-size: 0.9rem; line-height: 1.45; }
@media (max-width: 760px) {
  .heat-legend { grid-template-columns: minmax(0, 1fr); }
  .heat-legend li { border-left: 0; border-top: 1px solid var(--steel-700); grid-template-columns: 64px 1fr; align-items: start; column-gap: 16px; }
  .heat-legend li:first-child { border-top: 0; }
  .heat-legend .swatch { grid-row: span 3; height: 100%; min-height: 48px; }
}

/* ------------------------------------------------------------------
   First hour timeline
   ------------------------------------------------------------------ */
.first-hour {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  position: relative;
  counter-reset: none;
}
.first-hour::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--heat-1), var(--heat-2) 25%, var(--heat-3) 50%, var(--heat-4) 80%, var(--heat-5));
}
.fh-step { position: relative; padding-right: clamp(12px, 2vw, 28px); display: grid; gap: 10px; align-content: start; }
.fh-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 33px;
  width: 14px;
  height: 14px;
  background: var(--steel-900);
  border: 2px solid var(--c, var(--heat-3));
  transform: rotate(45deg);
}
.fh-clock {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--bone);
  height: 28px;
}
.fh-step h3 { font-size: 1.05rem; font-weight: 700; margin-top: 34px; }
.fh-step p { color: var(--ash); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 1000px) {
  .first-hour { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .first-hour::before { left: 7px; right: auto; top: 8px; bottom: 8px; width: 2px; height: auto; background: linear-gradient(180deg, var(--heat-1), var(--heat-2) 25%, var(--heat-3) 50%, var(--heat-4) 80%, var(--heat-5)); }
  .fh-step { padding: 0 0 32px 44px; gap: 6px; }
  .fh-step::before { left: 1px; top: 6px; }
  .fh-step h3 { margin-top: 0; }
}

/* ------------------------------------------------------------------
   Today at Forge
   ------------------------------------------------------------------ */
.today {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.today-copy { display: grid; gap: 24px; }
.board {
  background: var(--steel-850);
  border: 1px solid var(--steel-700);
}
.board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-bottom: 1px solid var(--steel-700);
}
.board-head h3 { font-family: var(--f-display); font-weight: 900; font-size: 1.6rem; text-transform: uppercase; line-height: 1; }
.board-list { list-style: none; margin: 0; padding: 0; }
.board-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--steel-700);
  transition: opacity 0.3s;
}
.board-row:last-child { border-bottom: 0; }
.board-row.is-past { opacity: 0.42; }
.board-row.is-now { background: linear-gradient(90deg, rgba(225, 6, 0, 0.14), transparent 70%); box-shadow: inset 3px 0 0 var(--heat-3); }
.board-time { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; line-height: 1; font-variant-numeric: tabular-nums; }
.board-time small { display: block; font-family: var(--f-text); font-weight: 500; font-size: 0.72rem; color: var(--ash); margin-top: 4px; letter-spacing: 0.02em; }
.board-name { display: grid; gap: 4px; min-width: 0; }
.board-name strong { font-weight: 650; font-size: 1.02rem; }
.board-name span { color: var(--ash); font-size: 0.86rem; }
.board-side { display: grid; gap: 8px; justify-items: end; }
.board-empty { padding: 28px 22px; color: var(--ash); }
.chip-when {
  font-size: 0.66rem;
  font-weight: 700;
  font-stretch: 118%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}
.chip-when.now { color: var(--heat-4); }
.board-foot { padding: 16px 22px; border-top: 1px solid var(--steel-700); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .today { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px) {
  .board-row { grid-template-columns: 70px minmax(0, 1fr); padding: 14px 16px; }
  .board-side { grid-column: 2; justify-items: start; grid-auto-flow: column; justify-content: start; align-items: center; gap: 12px; }
  .board-head, .board-foot { padding-inline: 16px; }
}

/* Hours table */
.hours { display: grid; gap: 0; font-variant-numeric: tabular-nums; }
.hours div { display: flex; justify-content: space-between; gap: 18px; padding-block: 9px; border-bottom: 1px solid var(--steel-700); }
.hours div:last-child { border-bottom: 0; }
.hours dt { color: var(--ash); }
.hours dd { text-align: right; }
.hours .is-today dt, .hours .is-today dd { color: var(--heat-4); }

/* ------------------------------------------------------------------
   Motivations index
   ------------------------------------------------------------------ */
.reasons { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--steel-600); }
.reasons li { border-bottom: 1px solid var(--steel-600); }
.reason {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr) 40px;
  gap: 16px 32px;
  align-items: center;
  padding-block: clamp(22px, 3vw, 36px);
  color: var(--bone);
  text-decoration: none;
  isolation: isolate;
}
.reason::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--gutter));
  z-index: -1;
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.16), rgba(225, 6, 0, 0.02) 60%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.reason:hover::before, .reason:focus-visible::before { transform: scaleX(1); }
.reason h3 { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.9rem, 4.2vw, 3.6rem); line-height: 0.92; text-transform: uppercase; text-wrap: balance; transition: transform 0.5s var(--ease-out); }
.reason:hover h3 { transform: translateX(10px); }
.reason p { color: var(--ash); font-size: 0.98rem; }
.reason p strong { display: block; color: var(--bone); font-weight: 650; margin-bottom: 4px; }
.reason .arrow { font-size: 1.6rem; justify-self: end; transition: transform 0.45s var(--ease-out), color 0.2s; }
.reason:hover .arrow { transform: translateX(6px) rotate(-45deg); color: var(--heat-4); }
@media (max-width: 760px) {
  .reason { grid-template-columns: minmax(0, 1fr) 32px; }
  .reason p { grid-column: 1; }
  .reason .arrow { grid-row: 1; grid-column: 2; }
}

/* ------------------------------------------------------------------
   Coaches
   ------------------------------------------------------------------ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.coach { display: grid; gap: 18px; align-content: start; }
.portrait {
  --a: var(--heat-3);
  --b: var(--heat-2);
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(90% 70% at 80% 100%, var(--a), var(--b) 35%, transparent 72%),
    linear-gradient(180deg, var(--steel-800), var(--steel-900));
  clip-path: var(--notched);
  --notch: 22px;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.9) 1.25px, transparent 1.7px);
  background-size: 7px 7px;
  -webkit-mask-image: linear-gradient(200deg, #000 15%, transparent 75%);
  mask-image: linear-gradient(200deg, #000 15%, transparent 75%);
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.portrait-initial {
  position: absolute;
  right: 0.06em;
  bottom: -0.1em;
  z-index: 2;
  font-family: var(--f-stencil);
  font-weight: 900;
  font-size: clamp(13rem, 24vw, 21rem);
  line-height: 0.8;
  color: var(--steel-950);
  opacity: 0.88;
  transition: transform 0.8s var(--ease-out);
}
.coach:hover .portrait-initial { transform: translate(-6px, -8px); }
.portrait-name {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  font-family: var(--f-stencil);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--bone);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.02em;
}
.portrait-tag { position: absolute; right: 16px; top: 16px; z-index: 2; }
.coach-meta { display: grid; gap: 6px; }
.coach-meta h3 { font-family: var(--f-display); font-weight: 900; font-size: 1.9rem; line-height: 0.95; text-transform: uppercase; }
.coach-meta .role { color: var(--heat-4); font-size: 0.72rem; }
.coach-meta p { color: var(--bone-dim); font-size: 0.98rem; }
.combo { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.combo b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--steel-700);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--bone);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.combo .label { color: var(--ash); margin-right: 6px; font-size: 0.64rem; }
.coach-more {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--steel-850);
  border: 1px solid var(--steel-700);
  color: var(--bone);
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s;
}
.coach-more:hover { border-color: var(--heat-3); background: var(--steel-800); }
@media (max-width: 1000px) { .coach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .coach-grid { grid-template-columns: minmax(0, 1fr); } }

/* Full coach profiles */
.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  padding-block: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--steel-700);
  align-items: start;
}
.profile:nth-child(even) .portrait { --a: var(--heat-4); --b: var(--heat-3); }
.profile .portrait { position: sticky; top: calc(var(--header-h) + 24px); }
.profile-body { display: grid; gap: 22px; }
.profile-body h2 { margin-top: 4px; }
.spec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-block: 1px solid var(--steel-700);
}
.spec div { padding: 14px 16px 14px 0; display: grid; gap: 4px; }
.spec div + div { padding-left: 16px; border-left: 1px solid var(--steel-700); }
.spec dt { color: var(--ash); }
.spec dd { font-weight: 600; }
.coach-classes { display: flex; flex-wrap: wrap; gap: 8px; }
.coach-classes .tag { white-space: normal; }
@media (max-width: 800px) {
  .profile { grid-template-columns: minmax(0, 1fr); }
  .profile .portrait { position: relative; top: 0; max-width: 420px; }
  .spec { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec div:nth-child(3) { padding-left: 0; border-left: 0; }
  .spec div:nth-child(n+3) { border-top: 1px solid var(--steel-700); }
}

.combo-key {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  background: var(--steel-700);
  border: 2px solid var(--steel-700);
}
.combo-key div { background: var(--steel-850); padding: 16px; display: grid; gap: 8px; justify-items: start; }
.combo-key span { color: var(--bone-dim); font-size: 0.92rem; }
@media (max-width: 860px) { .combo-key { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 460px) { .combo-key { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ------------------------------------------------------------------
   Membership
   ------------------------------------------------------------------ */
.billing {
  display: inline-flex;
  padding: 4px;
  background: var(--steel-800);
  border: 1px solid var(--steel-600);
  gap: 4px;
}
.billing button {
  border: 0;
  background: transparent;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing button[aria-pressed="true"] { background: var(--bone); color: var(--ink); }
.billing .save { color: var(--heat-3); }
.billing button[aria-pressed="true"] .save { color: var(--heat-2); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}
.plan {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 22px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--steel-850);
  border: 1px solid var(--steel-700);
}
.plan.is-featured {
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(225, 6, 0, 0.22), transparent 60%),
    var(--steel-800);
  border-color: var(--heat-3);
}
.plan-flag { position: absolute; top: -1px; right: 24px; transform: translateY(-50%); }
.plan-name { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.plan-price { display: flex; align-items: flex-end; gap: 8px; font-variant-numeric: tabular-nums; }
.plan-price .cur { font-family: var(--f-display); font-weight: 800; font-size: 1.8rem; line-height: 1; margin-bottom: 0.9rem; }
.plan-price .amt { font-family: var(--f-display); font-weight: 900; font-size: clamp(4.4rem, 7vw, 5.8rem); line-height: 0.8; letter-spacing: -0.01em; }
.plan-price .per { color: var(--ash); font-size: 0.9rem; margin-bottom: 4px; line-height: 1.3; }
.plan-note { color: var(--ash); font-size: 0.88rem; min-height: 1.4em; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; align-content: start; }
.plan li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; color: var(--bone-dim); font-size: 0.98rem; line-height: 1.45; }
.plan li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  background: var(--heat-3);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.plan li.no { color: var(--ash); text-decoration: line-through; text-decoration-color: var(--steel-500); }
.plan li.no::before { background: var(--steel-500); }
@media (max-width: 980px) { .plans { grid-template-columns: minmax(0, 1fr); max-width: 560px; } }

.extras {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--steel-700);
}
.extra { padding: 24px; border-left: 1px solid var(--steel-700); display: grid; gap: 10px; align-content: start; }
.extra:first-child { border-left: 0; }
.extra .price { font-family: var(--f-display); font-weight: 900; font-size: 2.4rem; line-height: 0.9; font-variant-numeric: tabular-nums; }
.extra .price small { font-family: var(--f-text); font-size: 0.8rem; font-weight: 500; color: var(--ash); margin-left: 4px; }
.extra p { color: var(--ash); font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 980px) {
  .extras { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extra:nth-child(3) { border-left: 0; }
  .extra:nth-child(n+3) { border-top: 1px solid var(--steel-700); }
}
@media (max-width: 520px) {
  .extras { grid-template-columns: minmax(0, 1fr); }
  .extra { border-left: 0; }
  .extra + .extra { border-top: 1px solid var(--steel-700); }
}

.table-wrap { position: relative; overflow-x: auto; border: 1px solid var(--steel-700); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.96rem; }
.compare caption { text-align: left; padding: 0 0 16px; }
.compare th, .compare td { padding: 15px 20px; text-align: center; border-bottom: 1px solid var(--steel-700); }
.compare thead th { font-family: var(--f-display); font-weight: 900; font-size: 1.3rem; text-transform: uppercase; background: var(--steel-850); position: sticky; top: 0; }
.compare thead th.is-featured { color: var(--heat-3); }
.compare tbody th { text-align: left; font-weight: 500; color: var(--bone-dim); }
.compare tbody tr:last-child > * { border-bottom: 0; }
.compare tbody tr:hover > * { background: rgba(255, 255, 255, 0.02); }
.compare .yes { color: var(--heat-3); font-weight: 700; }
.compare .dash { color: var(--steel-500); }
.compare td.is-featured { background: rgba(225, 6, 0, 0.05); }

/* FAQ */
.faq { border-top: 1px solid var(--steel-600); }
.faq details { border-bottom: 1px solid var(--steel-600); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--heat-3), var(--heat-3)) center / 100% 2px no-repeat,
    linear-gradient(var(--heat-3), var(--heat-3)) center / 2px 100% no-repeat;
  transition: transform 0.35s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq summary:hover { color: var(--heat-4); }
.faq .answer { padding: 0 48px 26px 0; color: var(--bone-dim); max-width: 70ch; }
.faq .answer p + p { margin-top: 0.8em; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.two-col > :first-child { position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 1fr); }
  .two-col > :first-child { position: static; }
}

.includes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.include { display: grid; gap: 12px; align-content: start; }
.include svg { width: 40px; height: 40px; color: var(--heat-3); }
.include h3 { font-size: 1.05rem; font-weight: 700; }
.include p { color: var(--ash); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 900px) { .includes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .includes { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------
   Page hero (inner pages)
   ------------------------------------------------------------------ */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + clamp(48px, 8vw, 120px));
  padding-bottom: clamp(48px, 7vw, 104px);
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(225, 6, 0, 0.14), transparent 65%),
    var(--steel-900);
  border-bottom: 1px solid var(--steel-700);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px clamp(32px, 6vw, 96px);
  align-items: end;
}
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero-aside { display: grid; gap: 22px; justify-items: start; }
.page-hero-ghost {
  position: absolute;
  right: -0.04em;
  bottom: -0.2em;
  z-index: -1;
  font-family: var(--f-stencil);
  font-weight: 900;
  font-size: clamp(10rem, 30vw, 30rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Sub navigation (programs) */
.subnav {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px));
  z-index: 40;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel-700);
  transition: top 0.45s var(--ease-out);
}
.header-shown .subnav { top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }
.subnav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a {
  display: block;
  padding: 9px 14px;
  font-size: 0.72rem;
  font-weight: 650;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}
.subnav a:hover { color: var(--bone); }
.subnav a.is-active { color: var(--ink); background: var(--bone); }

/* ------------------------------------------------------------------
   Program detail
   ------------------------------------------------------------------ */
.program {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 104px);
  padding-block: clamp(64px, 8vw, 120px);
  border-bottom: 1px solid var(--steel-700);
  align-items: start;
  scroll-margin-top: calc(var(--header-h) + 64px);
}
.program-side { position: sticky; top: calc(var(--header-h) + 88px); display: grid; gap: 24px; }
.program-side .kicker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.program-side .tagline { color: var(--bone-dim); font-size: 1.15rem; max-width: 40ch; }
.program-specs { display: grid; border-top: 1px solid var(--steel-700); }
.program-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--steel-700);
  align-items: center;
}
.program-specs dt { color: var(--ash); }
.program-specs dd { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.program-main { display: grid; gap: 40px; }
.program-main h3 { font-size: 0.75rem; margin-bottom: 16px; color: var(--ash); }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ticks li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; color: var(--bone-dim); }
.ticks li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--heat-3);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
@media (max-width: 620px) { .cols-2 { grid-template-columns: minmax(0, 1fr); } }

/* Class breakdown bar — segment widths are minutes, to scale */
.breakdown { display: grid; gap: 12px; }
.breakdown-bar { display: flex; gap: 2px; height: 44px; }
.breakdown-bar span {
  flex: var(--m) 1 0;
  min-width: 0;
  background: var(--c, var(--steel-600));
  display: flex;
  align-items: center;
  padding-inline: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  white-space: nowrap;
}
.breakdown-bar span:first-child { border-radius: 4px 0 0 4px; }
.breakdown-bar span:last-child { border-radius: 0 4px 4px 0; }
.breakdown-key { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.breakdown-key li { display: inline-flex; align-items: center; gap: 8px; color: var(--bone-dim); font-size: 0.9rem; }
.breakdown-key i { width: 10px; height: 10px; background: var(--c); flex: none; }
.breakdown-key b { font-variant-numeric: tabular-nums; color: var(--bone); font-weight: 650; }
.bd-1 { --c: var(--ash); }
.bd-2 { --c: var(--heat-5); }
.bd-3 { --c: var(--heat-4); }
.bd-4 { --c: var(--heat-3); }
.bd-5 { --c: var(--temper); }

.next-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--steel-700); }
.next-list li { display: grid; grid-template-columns: 130px 1fr auto; gap: 12px; padding-block: 12px; border-bottom: 1px solid var(--steel-700); align-items: center; font-variant-numeric: tabular-nums; }
.next-list .when { font-weight: 650; }
.next-list .who { color: var(--ash); }
@media (max-width: 900px) {
  .program { grid-template-columns: minmax(0, 1fr); }
  .program-side { position: static; }
}
@media (max-width: 480px) {
  .next-list li { grid-template-columns: minmax(0, 1fr) auto; }
  .next-list .who { grid-column: 1; grid-row: 2; }
  .program-specs div { grid-template-columns: 100px 1fr; }
}

/* ------------------------------------------------------------------
   Timetable
   ------------------------------------------------------------------ */
.tt-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  border: 1px solid var(--steel-600);
  background: transparent;
  padding: 9px 14px;
  font-size: 0.74rem;
  font-weight: 650;
  font-stretch: 115%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--bone-dim); color: var(--bone); }
.chip[aria-pressed="true"] { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.switch { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.92rem; color: var(--bone-dim); }
.switch input { appearance: none; -webkit-appearance: none; width: 44px; height: 24px; background: var(--steel-600); position: relative; cursor: pointer; transition: background-color 0.25s; margin: 0; flex: none; }
.switch input::after { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: var(--bone); transition: transform 0.3s var(--ease-out); }
.switch input:checked { background: var(--heat-3); }
.switch input:checked::after { transform: translateX(20px); background: var(--ink); }

.tt-days { display: none; gap: 4px; margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }
.tt-days::-webkit-scrollbar { display: none; }
.tt-days button {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid var(--steel-600);
  background: transparent;
  padding: 10px 8px;
  display: grid;
  gap: 2px;
  justify-items: center;
  cursor: pointer;
  color: var(--bone-dim);
}
.tt-days button b { font-family: var(--f-display); font-weight: 900; font-size: 1.2rem; line-height: 1; text-transform: uppercase; }
.tt-days button span { font-size: 0.7rem; color: var(--ash); font-variant-numeric: tabular-nums; }
.tt-days button[aria-selected="true"] { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.tt-days button[aria-selected="true"] span { color: var(--steel-600); }
.tt-days button.is-today:not([aria-selected="true"]) { border-color: var(--heat-3); }

.timetable {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  background: var(--steel-700);
  border: 2px solid var(--steel-700);
}
.tt-col { background: var(--steel-850); display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.tt-col.is-today { background: var(--steel-800); }
.tt-head {
  padding: 16px 14px;
  border-bottom: 1px solid var(--steel-700);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.tt-head h2 { font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; line-height: 1; text-transform: uppercase; }
.tt-head span { color: var(--ash); font-size: 0.76rem; font-variant-numeric: tabular-nums; }
.tt-col.is-today .tt-head { box-shadow: inset 0 3px 0 var(--heat-3); }
.tt-col.is-today .tt-head h2 { color: var(--heat-3); }
.tt-list { list-style: none; margin: 0; padding: 8px; display: grid; gap: 6px; align-content: start; }
.tt-class {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: var(--steel-900);
  border: 1px solid var(--steel-700);
  transition: border-color 0.2s, opacity 0.3s;
}
.tt-class:hover { border-color: var(--steel-500); }
.tt-class .time { font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; line-height: 1; font-variant-numeric: tabular-nums; }
.tt-class .time small { font-family: var(--f-text); font-weight: 500; font-size: 0.7rem; color: var(--ash); margin-left: 4px; }
.tt-class .name { font-weight: 650; font-size: 0.92rem; line-height: 1.25; }
.tt-class .name a { text-decoration: none; }
.tt-class .name a:hover { color: var(--heat-4); }
.tt-class .coach { color: var(--ash); font-size: 0.8rem; }
.tt-class .meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; flex-wrap: wrap; }
.tt-class.is-past { opacity: 0.45; }
.tt-class.is-now { border-color: var(--heat-3); box-shadow: 0 0 0 1px var(--heat-3), 0 0 28px -10px var(--heat-3); }
.tt-empty { color: var(--ash); font-size: 0.85rem; padding: 12px 6px; }
.tt-note { margin-top: 20px; color: var(--ash); font-size: 0.92rem; }
@media (max-width: 1180px) and (min-width: 901px) {
  .tt-class { padding: 10px; }
  .tt-head { padding: 14px 10px; }
  .tt-head h2 { font-size: 1.25rem; }
}
@media (max-width: 900px) {
  .tt-days { display: flex; }
  .timetable { grid-template-columns: minmax(0, 1fr); }
  .tt-col { display: none; }
  .tt-col.is-selected { display: grid; }
  .tt-head { display: none; }
  .tt-list { padding: 10px; }
  .tt-class { grid-template-columns: 84px 1fr auto; align-items: center; gap: 4px 14px; }
  .tt-class .time { grid-row: span 2; font-size: 1.3rem; }
  .tt-class .meta { grid-row: span 2; grid-column: 3; flex-direction: column; align-items: flex-end; }
}
@media (max-width: 460px) {
  .tt-class { grid-template-columns: 72px 1fr; }
  .tt-class .meta { grid-column: 2; grid-row: auto; flex-direction: row; align-items: center; justify-content: flex-start; }
}

/* ------------------------------------------------------------------
   About: story, milestones, floor plan, rules
   ------------------------------------------------------------------ */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.pull {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  border-left: 3px solid var(--heat-3);
  padding-left: clamp(18px, 2.4vw, 32px);
}
.pull-sm { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.05; }
.pull cite { display: block; margin-top: 20px; font-family: var(--f-text); font-style: normal; font-size: 0.75rem; color: var(--ash); }
@media (max-width: 860px) { .story { grid-template-columns: minmax(0, 1fr); } }

.milestones {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 2px solid var(--steel-600);
}
.milestone { padding: 22px 20px 0 0; display: grid; gap: 10px; align-content: start; position: relative; }
.milestone::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; background: var(--heat-3); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.milestone:last-child::before { background: var(--heat-5); box-shadow: 0 0 16px var(--heat-4); }
.milestone .yr { font-family: var(--f-display); font-weight: 900; font-size: 2.2rem; line-height: 0.9; font-variant-numeric: tabular-nums; }
.milestone p { color: var(--ash); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 1000px) { .milestones { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 36px; } }
@media (max-width: 560px) {
  .milestones { grid-template-columns: minmax(0, 1fr); border-top: 0; border-left: 2px solid var(--steel-600); row-gap: 28px; }
  .milestone { padding: 0 0 0 26px; }
  .milestone::before { top: 10px; left: -7px; }
}

.floor {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.floor-plan { background: var(--steel-950); border: 1px solid var(--steel-700); padding: clamp(12px, 2vw, 24px); }
.floor-plan svg { width: 100%; height: auto; }
.floor-plan .zone rect, .floor-plan .zone path, .floor-plan .zone circle { transition: fill 0.3s, stroke 0.3s; }
.floor-plan .zone .fill { fill: #171717; stroke: #474747; stroke-width: 2; }
.floor-plan .zone.is-active .fill { fill: rgba(225, 6, 0, 0.18); stroke: #e10600; }
.floor-plan .zone .ztxt { fill: #a6a6a6; font-family: var(--f-text); font-size: 13px; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; }
.floor-plan .zone.is-active .ztxt { fill: #ffffff; }
.floor-plan .detail { fill: none; stroke: #474747; stroke-width: 1.5; }
.floor-plan .zone.is-active .detail { stroke: #e10600; }
.floor-key { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--steel-700); }
.floor-key li { border-bottom: 1px solid var(--steel-700); }
.floor-key button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--bone);
}
.floor-key button strong { font-weight: 650; font-size: 1.02rem; }
.floor-key button span { color: var(--ash); font-size: 0.92rem; grid-column: 1; }
.floor-key button em { font-style: normal; grid-row: 1; grid-column: 2; color: var(--ash); font-variant-numeric: tabular-nums; font-size: 0.85rem; }
.floor-key button:hover strong,
.floor-key button[aria-pressed="true"] strong { color: var(--heat-3); }
@media (max-width: 960px) { .floor { grid-template-columns: minmax(0, 1fr); } }

.rules { list-style: none; margin: 0; padding: 0; counter-reset: rule; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; background: var(--steel-700); border: 2px solid var(--steel-700); }
.rules li { counter-increment: rule; background: var(--steel-850); padding: clamp(22px, 2.6vw, 32px); display: grid; gap: 12px; align-content: start; }
.rules li::before { content: "Rule " counter(rule, decimal-leading-zero); font-size: 0.7rem; font-weight: 650; font-stretch: 125%; letter-spacing: 0.14em; text-transform: uppercase; color: var(--heat-3); }
.rules h3 { font-family: var(--f-display); font-weight: 900; font-size: 1.9rem; line-height: 0.95; text-transform: uppercase; }
.rules p { color: var(--ash); font-size: 0.96rem; }
@media (max-width: 900px) { .rules { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .rules { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------
   Contact / booking form
   ------------------------------------------------------------------ */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.form-card {
  background: var(--steel-850);
  border: 1px solid var(--steel-700);
  padding: clamp(22px, 3.4vw, 48px);
}
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { display: grid; gap: 8px; align-content: start; }
.field label, .field legend { font-size: 0.72rem; font-weight: 650; font-stretch: 122%; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-dim); padding: 0; }
.field .opt { color: var(--ash); text-transform: none; letter-spacing: 0; font-stretch: 100%; font-weight: 400; margin-left: 4px; }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  background: var(--steel-900);
  border: 1px solid var(--steel-600);
  border-radius: 0;
  color: var(--bone);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder { color: #69737d; }
.input:hover { border-color: var(--steel-500); }
.input:focus { outline: none; border-color: var(--heat-3); box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.25); }
textarea.input { min-height: 120px; resize: vertical; line-height: 1.5; }
select.input {
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bone-dim) 50%),
    linear-gradient(135deg, var(--bone-dim) 50%, transparent 50%);
  background-position: calc(100% - 22px) 23px, calc(100% - 16px) 23px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.field.has-error .input { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 0.86rem; min-height: 0; }
.field-error:empty { display: none; }
.field-hint { color: var(--ash); font-size: 0.86rem; }

.segmented { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.segmented label { position: relative; cursor: pointer; }
.segmented input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.segmented span {
  display: grid;
  gap: 3px;
  height: 100%;
  padding: 13px 14px;
  border: 1px solid var(--steel-600);
  background: var(--steel-900);
  transition: border-color 0.2s, background-color 0.2s;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-stretch: 100%;
  color: var(--bone);
}
.segmented span small { color: var(--ash); font-weight: 400; font-size: 0.8rem; }
.segmented input:hover + span { border-color: var(--steel-500); }
.segmented input:checked + span { border-color: var(--heat-3); background: rgba(225, 6, 0, 0.1); box-shadow: inset 0 0 0 1px var(--heat-3); }
.segmented input:focus-visible + span { outline: 2px solid var(--heat-4); outline-offset: 2px; }

.check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; color: var(--bone-dim); font-size: 0.94rem; cursor: pointer; }
.field .check { font-size: 0.94rem; font-weight: 400; font-stretch: 100%; letter-spacing: 0; text-transform: none; color: var(--bone-dim); line-height: 1.5; }
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  border: 1px solid var(--steel-500);
  background: var(--steel-900);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.check input::after { content: ""; width: 12px; height: 12px; background: var(--heat-3); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%); transform: scale(0); transition: transform 0.2s var(--ease-out); }
.check input:checked { border-color: var(--heat-3); }
.check input:checked::after { transform: scale(1); }
.field.has-error .check input { border-color: var(--danger); }

.form-foot { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; padding-top: 8px; }
.form-foot p { color: var(--ash); font-size: 0.86rem; max-width: 40ch; }
.form-status { padding: 14px 16px; border: 1px solid var(--danger); color: var(--danger); font-size: 0.95rem; }
.form-status:empty { display: none; }

.confirm { display: grid; gap: 22px; }
.confirm-mark { width: 64px; height: 64px; color: var(--heat-3); }
.confirm .ticket {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px dashed var(--steel-500);
}
.confirm .ticket div { padding: 14px 16px; display: grid; gap: 4px; }
.confirm .ticket div:nth-child(even) { border-left: 1px dashed var(--steel-500); }
.confirm .ticket div:nth-child(n+3) { border-top: 1px dashed var(--steel-500); }
.confirm .ticket dt { color: var(--ash); }
.confirm .ticket dd { font-weight: 650; }

.info-card { display: grid; gap: 28px; position: sticky; top: calc(var(--header-h) + 32px); }
.info-block { display: grid; gap: 10px; padding-bottom: 24px; border-bottom: 1px solid var(--steel-700); }
.info-block:last-child { border-bottom: 0; }
.info-block h2 { color: var(--ash); }
.info-block a { color: var(--bone); text-decoration-color: var(--steel-500); text-underline-offset: 4px; }
.info-block a:hover { text-decoration-color: var(--heat-3); }
.info-block address { font-style: normal; font-size: 1.1rem; line-height: 1.5; }
.copy-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.copy-btn {
  border: 1px solid var(--steel-600);
  background: transparent;
  color: var(--ash);
  font-size: 0.68rem;
  font-weight: 650;
  font-stretch: 118%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
}
.copy-btn:hover { color: var(--bone); border-color: var(--bone-dim); }
@media (max-width: 960px) {
  .booking { grid-template-columns: minmax(0, 1fr); }
  .info-card { position: static; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .segmented { grid-template-columns: minmax(0, 1fr); }
  .confirm .ticket { grid-template-columns: minmax(0, 1fr); }
  .confirm .ticket div:nth-child(even) { border-left: 0; }
  .confirm .ticket div:nth-child(n+2) { border-top: 1px dashed var(--steel-500); }
}

.bring { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; background: var(--steel-700); border: 2px solid var(--steel-700); }
.bring div { background: var(--steel-850); padding: 24px; display: grid; gap: 10px; align-content: start; }
.bring svg { width: 36px; height: 36px; color: var(--heat-3); }
.bring h3 { font-weight: 700; font-size: 1.02rem; }
.bring p { color: var(--ash); font-size: 0.94rem; line-height: 1.5; }
@media (max-width: 900px) { .bring { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .bring { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------
   Membership teaser + closing CTA
   ------------------------------------------------------------------ */
.teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.teaser-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; background: var(--steel-700); border: 2px solid var(--steel-700); }
.teaser-plans a { background: var(--steel-850); padding: 24px 22px; display: grid; gap: 10px; text-decoration: none; color: var(--bone); transition: background-color 0.3s; }
.teaser-plans a:hover { background: var(--steel-800); }
.teaser-plans .amt { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 0.85; font-variant-numeric: tabular-nums; }
.teaser-plans .amt small { font-family: var(--f-text); font-size: 0.8rem; font-weight: 500; color: var(--ash); margin-left: 4px; }
.teaser-plans p { color: var(--ash); font-size: 0.9rem; line-height: 1.45; }
.teaser-plans a.is-featured { background: linear-gradient(180deg, rgba(225, 6, 0, 0.16), transparent 70%), var(--steel-800); box-shadow: inset 0 3px 0 var(--heat-3); }
@media (max-width: 960px) { .teaser { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 600px) { .teaser-plans { grid-template-columns: minmax(0, 1fr); } }

.fire {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 180px);
  background:
    radial-gradient(80% 120% at 85% 120%, var(--heat-5) 0%, var(--heat-4) 22%, transparent 55%),
    linear-gradient(115deg, var(--heat-2) 0%, var(--heat-3) 45%, var(--heat-4) 100%);
  color: var(--ink);
}
.fire::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(115deg, rgba(10, 10, 10, 0.06) 0 2px, transparent 2px 14px);
}
.fire-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px clamp(32px, 5vw, 80px); align-items: end; }
.fire .display { color: var(--ink); }
.fire p { font-size: clamp(1.1rem, 1.4vw, 1.25rem); max-width: 40ch; font-weight: 500; }
.fire-aside { display: grid; gap: 24px; justify-items: start; }
@media (max-width: 860px) { .fire-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--steel-950);
  border-top: 1px solid var(--steel-700);
  padding-top: clamp(64px, 8vw, 112px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px clamp(24px, 4vw, 64px);
}
.footer-brand { display: grid; gap: 20px; align-content: start; max-width: 36ch; }
.footer-brand p { color: var(--ash); font-size: 0.96rem; }
.footer-col { display: grid; gap: 16px; align-content: start; }
.footer-col h2 { color: var(--ash); }
.footer-col address { font-style: normal; line-height: 1.6; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--bone-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--heat-4); }
.footer-col .hours div { padding-block: 7px; font-size: 0.94rem; }
.socials { display: flex; gap: 8px; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--steel-600);
  color: var(--bone-dim);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.socials a:hover { border-color: var(--heat-3); color: var(--ink); background: var(--heat-3); }
.socials svg { width: 18px; height: 18px; }
.footer-mark {
  margin-top: clamp(48px, 7vw, 96px);
  font-family: var(--f-stencil);
  font-weight: 900;
  font-size: clamp(6rem, 29vw, 30rem);
  line-height: 0.74;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--steel-700) 0%, var(--steel-850) 60%, var(--steel-950) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  margin-bottom: -0.06em;
}
.footer-base {
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px calc(22px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--steel-700);
  color: var(--ash);
  font-size: 0.85rem;
  position: relative;
}
.footer-base a { color: var(--ash); text-decoration: none; }
.footer-base a:hover { color: var(--bone); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------
   404
   ------------------------------------------------------------------ */
.ko {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) var(--gutter) 64px;
  background: radial-gradient(60% 50% at 50% 60%, rgba(168, 0, 26, 0.18), transparent 70%), var(--steel-900);
}
.ko-inner { display: grid; gap: 24px; justify-items: center; max-width: 720px; }
.ko-count { font-family: var(--f-stencil); font-weight: 900; font-size: clamp(8rem, 30vw, 18rem); line-height: 0.8; color: var(--heat-3); font-variant-numeric: tabular-nums; min-width: 2ch; }
.ko-count.tick { animation: tick 0.5s var(--ease-out); }
@keyframes tick { from { transform: scale(1.18); color: var(--heat-5); } }


/* ------------------------------------------------------------------
   Reveal on scroll — content is always visible; motion only settles it
   ------------------------------------------------------------------ */
.js [data-reveal].is-pending { transform: translateY(28px); }
.js [data-reveal] { transition: transform 1s var(--ease-out); }
.js [data-reveal-heat].is-pending { color: var(--heat-4); text-shadow: 0 0 24px rgba(225, 6, 0, 0.6); }
.js [data-reveal-heat] { transition: color 1.6s var(--ease-out), text-shadow 1.8s var(--ease-out), transform 1s var(--ease-out); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal].is-pending { transform: none; }
}

@media print {
  body::after, .site-header, .mobile-menu, .hero-canvas, .bag-stage, .marquee, .site-footer .footer-mark { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==================================================================
   PRELOADER — cosmic, bleeding, deliberately long (~4 s)
   ================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: #000; overflow: hidden;
  transition: opacity 0.9s var(--ease-out), visibility 0s linear 0.9s;
}
.preloader.is-done, .no-preloader .preloader { opacity: 0; visibility: hidden; }
.no-preloader .preloader { display: none; }
.pl-stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.pl-nebula {
  position: absolute; inset: -20%;
  background:
    radial-gradient(35% 30% at 30% 40%, rgba(160, 0, 30, 0.35), transparent 70%),
    radial-gradient(30% 35% at 70% 60%, rgba(80, 20, 120, 0.3), transparent 70%),
    radial-gradient(25% 25% at 55% 30%, rgba(20, 40, 120, 0.25), transparent 70%);
  filter: blur(30px);
  animation: pl-nebula 12s ease-in-out infinite alternate;
}
@keyframes pl-nebula { from { transform: rotate(0deg) scale(1); } to { transform: rotate(12deg) scale(1.15); } }
.preloader-inner { position: relative; display: grid; justify-items: center; gap: 30px; padding: 24px; text-align: center; }
.pl-text {
  display: grid; justify-items: center; gap: 0.08em;
  font-family: var(--f-stencil); font-weight: 900; text-transform: uppercase; line-height: 0.9;
  color: #ff1a1a;
}
.pl-word {
  position: relative; display: block;
  font-size: clamp(2.2rem, 7vw, 4.8rem); letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(255, 26, 26, 0.9), 0 0 28px rgba(200, 0, 20, 0.7), 0 0 60px rgba(140, 0, 10, 0.6);
  opacity: 0; filter: blur(12px); transform: scale(1.15);
  animation: pl-in 0.9s var(--ease-out) forwards, pl-flicker 3s 1.6s infinite;
}
.pl-word:nth-child(2) { animation-delay: 0.6s, 2.2s; }
.pl-word:nth-child(3) { animation-delay: 1.1s, 2.6s; }
.pl-big { font-size: clamp(4.4rem, 18vw, 11rem); color: #ff2323; }
@keyframes pl-in { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes pl-flicker { 0%, 100% { opacity: 1; } 3% { opacity: 0.55; } 6% { opacity: 1; } 42% { opacity: 1; } 44% { opacity: 0.8; } 46% { opacity: 1; } }
.pl-drip {
  position: absolute; top: 82%;
  width: var(--w); height: 0;
  background: linear-gradient(#ff1a1a, #9e0010);
  border-radius: 0 0 99px 99px;
  box-shadow: 0 0 10px rgba(255, 0, 20, 0.6);
  animation: pl-drip 2.4s cubic-bezier(.45,0,.2,1) forwards;
}
.pl-drip::after {
  content: ""; position: absolute; left: 50%; bottom: calc(var(--w) * -1.4); width: calc(var(--w) * 1.9); height: calc(var(--w) * 2.4);
  transform: translateX(-50%); background: #b3000f; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
@keyframes pl-drip { to { height: var(--h); } }
.preloader-forge { width: 120px; height: 80px; overflow: visible; }
.pl-hammer { transform-origin: 60px 6px; transform-box: view-box; animation: pl-strike 0.9s cubic-bezier(.5,0,.75,0) infinite; }
.pl-sparks { opacity: 0; transform-origin: 60px 38px; transform-box: view-box; animation: pl-spark 0.9s linear infinite; }
@keyframes pl-strike { 0%, 100% { transform: rotate(-55deg); } 45% { transform: rotate(0deg); } 55% { transform: rotate(-8deg); } }
@keyframes pl-spark { 0%, 44% { opacity: 0; transform: scale(0.4); } 48% { opacity: 1; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.5); } }
.pl-bar { width: min(260px, 60vw); height: 2px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 100%; background: #ff1a1a; box-shadow: 0 0 10px #ff1a1a; transform: scaleX(0); transform-origin: left; animation: pl-load 4s cubic-bezier(.3,.1,.3,1) forwards; }
@keyframes pl-load { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .pl-word { opacity: 1; filter: none; transform: none; }
  .pl-drip { height: var(--h); }
  .pl-hammer { transform: none; }
}

/* ==================================================================
   Home additions
   ================================================================== */
.hero-photo {
  position: absolute; inset: 0; z-index: -3;
  background: url("../img/home.jpg") center / cover no-repeat;
  opacity: 0.38;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--steel-900) 10%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.2)), linear-gradient(0deg, var(--steel-900), transparent 40%);
}
.intro { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.intro .big-copy { font-size: clamp(1.4rem, 2.4vw, 2.1rem); line-height: 1.35; color: var(--bone); text-wrap: pretty; }
.intro .big-copy em { font-style: normal; color: var(--heat-3); }
@media (max-width: 860px) { .intro { grid-template-columns: minmax(0, 1fr); } }

.amenities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; background: var(--steel-700); border: 2px solid var(--steel-700); margin-top: clamp(40px, 5vw, 64px); }
.amenity { background: var(--steel-850); padding: clamp(24px, 3vw, 36px); display: grid; gap: 14px; justify-items: start; transition: background-color 0.3s; }
.amenity:hover { background: var(--steel-800); }
.amenity .ico { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--heat-3); color: var(--heat-3); transition: transform 0.5s var(--ease-out), background-color 0.3s, color 0.3s; }
.amenity:hover .ico { transform: rotate(-10deg) scale(1.06); background: var(--heat-3); color: var(--ink); }
.amenity svg { width: 30px; height: 30px; }
.amenity h3 { font-family: var(--f-display); font-weight: 900; font-size: 1.7rem; line-height: 1; text-transform: uppercase; }
.amenity p { color: var(--ash); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 900px) { .amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .amenities { grid-template-columns: minmax(0, 1fr); } }

/* ==================================================================
   Timetable
   ================================================================== */
.days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.day { background: var(--steel-850); border: 1px solid var(--steel-700); display: grid; grid-template-rows: auto 1fr; transition: transform 0.4s var(--ease-out), border-color 0.3s; }
.day:hover { transform: translateY(-4px); border-color: var(--steel-500); }
.day.is-today { border-color: var(--heat-3); box-shadow: 0 0 0 1px var(--heat-3), 0 20px 50px -24px rgba(225, 6, 0, 0.6); }
.day-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 8px; padding: 16px 14px 14px; border-bottom: 1px solid var(--steel-700); }
.day-head h2 { font-family: var(--f-display); font-weight: 900; font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.day.is-today .day-head h2 { color: var(--heat-3); }
.day-count { color: var(--ash); font-size: 0.72rem; font-weight: 650; font-stretch: 118%; letter-spacing: 0.1em; text-transform: uppercase; }
.day-slots { list-style: none; margin: 0; padding: 8px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; align-content: start; }
.slot { --c: var(--heat-4); position: relative; min-width: 0; display: grid; gap: 6px; padding: 14px 10px 14px 16px; background: var(--steel-900); overflow: hidden; }
.slot::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c); box-shadow: 0 0 16px var(--c); }
.slot-am { --c: var(--heat-4); }
.slot-pm { --c: var(--heat-3); }
.slot-eve { --c: var(--heat-2); }
.slot-kind { color: var(--c); font-size: 0.6rem; letter-spacing: 0.1em; }
.slot-time { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.2rem, 1.5vw, 1.55rem); line-height: 1; font-variant-numeric: tabular-nums; }
.slot-meta { color: var(--ash); font-size: 0.82rem; }
.slot-meta b { color: var(--heat-4); }
.slot.is-past { opacity: 0.45; }
.slot.is-now { background: linear-gradient(90deg, rgba(225, 6, 0, 0.18), var(--steel-900)); }
.slot-rest { --c: var(--steel-500); }
.slot-rest .slot-time { color: var(--ash); }
.day.is-rest { background: repeating-linear-gradient(135deg, var(--steel-850) 0 10px, var(--steel-900) 10px 20px); }
@media (max-width: 1280px) { .days { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 760px) { .days { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .days { grid-template-columns: minmax(0, 1fr); } }

.tt-summary { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline; margin-bottom: 28px; }
.tt-summary div { display: flex; align-items: baseline; gap: 10px; }
.tt-summary b { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 0.9; color: var(--heat-3); }
.legend { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-left: auto; }
.legend span { display: inline-flex; align-items: center; gap: 8px; color: var(--bone-dim); font-size: 0.88rem; }
.legend i { width: 12px; height: 12px; background: var(--c); }

.wkchart { background: var(--steel-950); border: 1px solid var(--steel-700); padding: clamp(16px, 2.4vw, 28px); display: grid; gap: 8px; }
.wk-axis, .wk-row { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 12px; align-items: center; }
.wk-ticks { position: relative; height: 18px; }
.wk-ticks span { position: absolute; transform: translateX(-50%); font-size: 0.7rem; color: var(--ash); font-variant-numeric: tabular-nums; white-space: nowrap; }
.wk-ticks span:first-child { transform: none; }
.wk-ticks span:last-child { transform: translateX(-100%); }
.wk-day { font-family: var(--f-display); font-weight: 900; font-size: 1.1rem; text-transform: uppercase; color: var(--bone-dim); }
.wk-row.is-today .wk-day { color: var(--heat-3); }
.wk-track { position: relative; height: 34px; background: repeating-linear-gradient(90deg, var(--steel-800) 0 calc(100% / 7 - 1px), var(--steel-700) calc(100% / 7 - 1px) calc(100% / 7)); }
.wk-bar { position: absolute; top: 4px; bottom: 4px; background: linear-gradient(90deg, var(--heat-2), var(--heat-3) 60%, var(--heat-4)); border-radius: 3px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.wk-bar em { font-style: normal; font-size: 0.7rem; font-weight: 700; color: var(--ink); white-space: nowrap; padding-inline: 6px; }
.wk-rest { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ash); font-size: 0.8rem; }
.wk-now { position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--bone); box-shadow: 0 0 10px var(--bone); }
@media (max-width: 600px) {
  .wk-bar em { display: none; }
  .wk-axis, .wk-row { grid-template-columns: 38px minmax(0, 1fr); gap: 8px; }
  .wk-ticks span:nth-child(even) { display: none; }
}

/* ==================================================================
   Membership
   ================================================================== */
.plan .per-days { font-family: var(--f-display); font-weight: 900; font-size: clamp(3.4rem, 5vw, 4.4rem); line-height: 0.85; }
.plan .per-days small { font-size: 0.4em; color: var(--ash); margin-left: 6px; }
.plan-price .cur { font-family: var(--f-text); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ash); margin-bottom: 0.7rem; }
.plan-price .amt { font-size: clamp(3.2rem, 5vw, 4.4rem); }
.cal { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 4px; max-width: 280px; }
.cal i { aspect-ratio: 1; background: var(--steel-700); border-radius: 2px; }
.cal i.on { background: var(--heat-3); box-shadow: 0 0 8px -2px var(--heat-3); }
.plan.is-featured .cal i.on { background: var(--heat-4); }
.cal-cap { color: var(--ash); font-size: 0.82rem; }
.plans-contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.pc { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px 24px; align-items: center; padding: clamp(22px, 3vw, 34px); background: var(--steel-850); border: 1px solid var(--steel-700); text-decoration: none; color: var(--bone); transition: border-color 0.3s, background-color 0.3s; }
.pc:hover { border-color: var(--heat-3); background: var(--steel-800); }
.pc .ico { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--heat-3); color: var(--heat-3); }
.pc .ico svg { width: 26px; height: 26px; }
.pc h3 { font-family: var(--f-display); font-weight: 900; font-size: 1.9rem; line-height: 1; text-transform: uppercase; }
.pc p { color: var(--ash); font-size: 0.95rem; margin-top: 6px; }
@media (max-width: 760px) { .plans-contact { grid-template-columns: minmax(0, 1fr); } .pc { grid-template-columns: auto minmax(0, 1fr); } .pc .btn { grid-column: 1 / -1; } }

/* ==================================================================
   Coach
   ================================================================== */
.coach-hero { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.coach-hero .portrait { position: sticky; top: calc(var(--header-h) + 24px); }
.creds { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; background: var(--steel-700); border: 2px solid var(--steel-700); }
.creds li { background: var(--steel-850); padding: 20px; display: grid; gap: 6px; align-content: start; }
.creds b { font-weight: 650; font-size: 1.02rem; }
.creds span { color: var(--ash); font-size: 0.85rem; }
.honours { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--steel-700); }
.honours li { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 20px; padding-block: 18px; border-bottom: 1px solid var(--steel-700); align-items: baseline; }
.honours .yr { font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; color: var(--heat-3); line-height: 1; font-variant-numeric: tabular-nums; }
.honours strong { font-weight: 650; font-size: 1.08rem; }
.honours span { display: block; color: var(--ash); font-size: 0.92rem; margin-top: 4px; }
.champ { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.champ b { font-family: var(--f-display); font-weight: 900; font-size: 1.2rem; padding: 6px 12px; background: var(--heat-3); color: var(--ink); clip-path: var(--notched); --notch: 8px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 22vw, 300px); gap: 10px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: repeating-linear-gradient(135deg, var(--steel-850) 0 12px, var(--steel-900) 12px 24px); border: 1px dashed var(--steel-600); display: grid; place-items: center; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.tall { grid-row: span 2; }
.gallery figure::before { content: attr(data-label); color: var(--ash); font-size: 0.72rem; font-weight: 650; font-stretch: 118%; letter-spacing: 0.14em; text-transform: uppercase; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 860px) {
  .coach-hero { grid-template-columns: minmax(0, 1fr); }
  .coach-hero .portrait { position: relative; top: 0; max-width: 420px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .creds { grid-template-columns: minmax(0, 1fr); }
  .honours li { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .gallery figure.wide { grid-column: auto; }
  .gallery figure.tall { grid-row: auto; }
}

/* ==================================================================
   Footer — slogan band
   ================================================================== */
.footer-cta { border-bottom: 1px solid var(--steel-700); padding-bottom: clamp(48px, 6vw, 80px); margin-bottom: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 28px 48px; align-items: end; }
.footer-slogan { font-family: var(--f-stencil); font-weight: 900; font-size: clamp(2.8rem, 7.5vw, 6.6rem); line-height: 0.86; text-transform: uppercase; color: var(--bone); }
.footer-slogan span { color: #ff1a1a; text-shadow: 0 0 24px rgba(255, 26, 26, 0.45); }
.footer-cta-side { display: grid; gap: 18px; justify-items: start; }
.footer-cta-side p { color: var(--ash); max-width: 36ch; }
@media (max-width: 860px) { .footer-cta { grid-template-columns: minmax(0, 1fr); } }

/* Red & white scheme: white text on red */
.btn-primary { color: #fff; }
.btn-primary:hover { background: #ff2d2d; color: #fff; }
.tag-hot, .champ b, .plan-flag { color: #fff; }
.btn-ink { background: #000; color: #fff; }
.btn-ink:hover { background: #fff; color: #000; }
.fire { background: linear-gradient(115deg, #7a0010 0%, #b3001b 45%, #e10600 100%); color: #fff; }
.fire::before { background-image: repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.12) 0 2px, transparent 2px 14px); }
.fire .display, .fire p { color: #fff; }
.chip[aria-pressed="true"], .billing button[aria-pressed="true"], .subnav a.is-active { background: #e10600; border-color: #e10600; color: #fff; }
.eyebrow { color: #e10600; }
.wk-bar em { color: #fff; }
.status.is-open::before { background: #e10600; }
::selection { background: #e10600; color: #fff; }

/* Keep the punch marquee moving for everyone */
.marquee-track { animation: marquee 42s linear infinite !important; animation-duration: 42s !important; animation-iteration-count: infinite !important; }

/* ==================================================================
   Gallery page
   ================================================================== */
.gal { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(160px, 18vw, 260px); grid-auto-flow: dense; gap: 10px; }
.gslot { position: relative; margin: 0; overflow: hidden; background: var(--steel-850); border: 1px solid var(--steel-700); cursor: default; }
.gslot[data-size="big"] { grid-column: span 2; grid-row: span 2; }
.gslot img, .gslot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out), filter 0.4s; }
.gslot.is-filled { cursor: zoom-in; }
.gslot.is-filled:hover img, .gslot.is-filled:hover video { transform: scale(1.05); }
.gslot.is-filled::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 #e10600; transition: box-shadow 0.3s; pointer-events: none; }
.gslot.is-filled:hover::after, .gslot.is-filled:focus-visible::after { box-shadow: inset 0 0 0 3px #e10600; }
.gslot-video.is-filled::before {
  content: ""; position: absolute; left: 14px; bottom: 14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%;
  background: #e10600 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 7l9 5-9 5z' fill='white'/%3E%3C/svg%3E") center / 22px no-repeat;
}
.gslot.is-empty, .gslot:not(.is-filled) {
  display: grid; place-items: center; border-style: dashed; border-color: var(--steel-600);
  background: repeating-linear-gradient(135deg, var(--steel-850) 0 12px, var(--steel-900) 12px 24px);
}
.gslot:not(.is-filled)::before {
  content: attr(data-label); color: var(--ash); font-size: 0.72rem; font-weight: 650; font-stretch: 118%; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 12px; background: var(--steel-900); border: 1px solid var(--steel-700);
}
.gslot-video:not(.is-filled)::before { content: "▶  " attr(data-label); color: #e10600; }
.lightbox { padding: 0; border: 0; background: transparent; max-width: min(1200px, 94vw); max-height: 92vh; overflow: visible; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); }
.lb-body img, .lb-body video { display: block; max-width: min(1200px, 94vw); max-height: 88vh; width: auto; height: auto; }
.lb-close { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; border: 0; background: #e10600; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
@media (max-width: 900px) { .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .gal { grid-template-columns: minmax(0, 1fr); } .gslot[data-size="big"] { grid-column: auto; grid-row: span 1; } }

/* ==================================================================
   Home hero video (muted, looping)
   ================================================================== */
.hero-video { position: absolute; inset: 0; z-index: -4; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: 0.55; }
.hero-video ~ .hero-photo { background: none; opacity: 1; }

/* Footer: no overlap between the big wordmark and the copyright line */
.footer-mark { margin-bottom: 0; padding-bottom: 0.04em; line-height: 0.8; }
.footer-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 1fr); }
.footer-col .hours div { flex-wrap: wrap; gap: 2px 14px; }
.footer-col .hours dd { white-space: nowrap; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ==================================================================
   White sections — a lighter band blended into the dark site
   ================================================================== */
.bg-raised {
  --steel-950: #f2f2f2; --steel-900: #ffffff; --steel-850: #f6f6f6; --steel-800: #efefef;
  --steel-700: #e2e2e2; --steel-600: #d2d2d2; --steel-500: #b5b5b5;
  --bone: #0a0a0a; --bone-dim: #2b2b2b; --ash: #5c5c5c;
  background: #ffffff; color: #0a0a0a;
}
.bg-raised .btn-steel { background: #0a0a0a; color: #fff; }
.bg-raised .btn-steel:hover { background: #e10600; }
.bg-raised .tag { background: #0a0a0a; color: #fff; }
.bg-raised .link-arrow:hover { color: #e10600; }
.bg-raised .portrait-name { color: #ffffff; }
.bg-raised .amenity:hover { background: #fff; }

/* ==================================================================
   Home: full-width video strip under the menu
   ================================================================== */
.video-strip {
  position: relative;
  width: 100%;
  height: clamp(420px, 80vh, 820px);
  overflow: hidden;
  background: #000 url("../video/hero-poster.jpg") center / cover no-repeat;
  isolation: isolate;
}
.strip-bg, .strip-video { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; }
.strip-bg { z-index: -1; object-fit: cover; object-position: center 70%; filter: blur(30px) brightness(0.42) saturate(1.2); transform: scale(1.2); }
.strip-video { object-fit: contain; }
.video-strip::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 22%, transparent 80%, var(--steel-900) 100%);
}
.video-strip + .hero { padding-top: clamp(40px, 6vw, 88px); }
.video-strip + .hero .hero-grid { grid-template-columns: minmax(0, 1fr); }
.video-strip + .hero .hero-copy { max-width: 900px; }
@media (max-width: 700px) {
  .video-strip { height: min(78vh, 640px); }
  .strip-video { object-fit: cover; object-position: center 65%; }
  .strip-bg { display: none; }
}

/* Footer slogan: give the two lines room so the glow doesn't bleed */
.footer-slogan { line-height: 1; }
.footer-slogan span { text-shadow: 0 0 18px rgba(255, 26, 26, 0.3); }

/* ==================================================================
   Logo image, landscape video strip, more white
   ================================================================== */
.brand-logo { display: block; height: 60px; width: auto; max-width: none; mix-blend-mode: screen; }
.site-footer .brand-logo { height: 84px !important; }
@media (max-width: 560px) { .site-header .brand-logo { height: 44px !important; } }
.video-strip { height: auto; aspect-ratio: 16 / 7; min-height: 320px; max-height: 86vh; }
.strip-video { object-fit: cover; object-position: center; }
@media (max-width: 700px) { .video-strip { aspect-ratio: 4 / 3; height: auto; min-height: 260px; } .strip-video { object-fit: cover; object-position: center; } }

/* Readability inside white sections */
.bg-raised .board, .bg-raised .day, .bg-raised .plan, .bg-raised .creds, .bg-raised .form-card { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.25); }
.bg-raised .input { background: #fff; color: #0a0a0a; }
.bg-raised .input::placeholder { color: #8a8a8a; }
.bg-raised .slot { background: #fafafa; }
.bg-raised .day.is-rest { background: repeating-linear-gradient(135deg, #f6f6f6 0 10px, #ffffff 10px 20px); }
.bg-raised .cal i { background: #e6e6e6; }
.bg-raised .cal i.on { background: #e10600; }
.bg-raised .plan.is-featured { background: radial-gradient(120% 60% at 100% 0%, rgba(225, 6, 0, 0.08), transparent 60%), #fff; }
.bg-raised .plan-flag, .bg-raised .tag-hot { background: #e10600; color: #fff; }
.bg-raised .portrait-name { color: #fff; }
.bg-raised .copy-btn { color: #444; border-color: #ccc; }

/* Coach gallery: keep faces in frame */
.gallery img[src$="gallery-2.jpg"] { object-position: center 12%; }

.gslot img[src$="photo-1.jpg"] { object-position: center 30%; }

/* Preloader: plain black, spaced lettering */
.preloader { background: #000; }
.pl-word { letter-spacing: 0.18em; margin-right: -0.18em; }
.pl-big { letter-spacing: 0.14em; margin-right: -0.14em; }
.pl-text { gap: clamp(12px, 2.2vw, 26px); }
