/* Knockout Fitness — landing page styles */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --fg: #f5f3ee;
  --fg-mute: #a8a39a;
  --line: rgba(245, 243, 238, 0.12);
  --accent: #E10600;
  --display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad-section: clamp(80px, 12vh, 140px);
  --pad-x: clamp(20px, 4vw, 56px);
}

[data-theme="light"] {
  --bg: #f5f3ee;
  --bg-2: #ebe8e0;
  --bg-3: #ffffff;
  --fg: #0a0a0a;
  --fg-mute: #4a4a4a;
  --line: rgba(10, 10, 10, 0.12);
}

[data-density="compact"] {
  --pad-section: clamp(60px, 8vh, 100px);
}
[data-density="spacious"] {
  --pad-section: clamp(100px, 16vh, 180px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; }

.ko-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

.ko-mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── NAV ─── */
.ko-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s;
}
.ko-nav.is-scrolled { padding-top: 12px; padding-bottom: 12px; }

.ko-wordmark {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Topbar logo lockup */
.ko-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fg);
  position: relative;
}
.ko-logo-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
}
.ko-logo-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.ko-logo-mark-corner {
  position: absolute;
  top: 0; right: 0;
  width: 8px; height: 8px;
  background: var(--bg);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.ko-logo:hover .ko-logo-mark {
  transform: rotate(-4deg);
}
.ko-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.ko-logo-word {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.ko-logo-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 600;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.ko-logo-tag-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
}
.ko-nav.is-scrolled .ko-logo-mark {
  width: 32px;
  height: 32px;
}
.ko-nav.is-scrolled .ko-logo-word {
  font-size: 19px;
}
.ko-nav.is-scrolled .ko-logo-tag {
  display: none;
}
@media (max-width: 720px) {
  .ko-logo-tag { display: none; }
}

.ko-nav-links {
  display: flex; gap: 28px; align-items: center;
}
.ko-nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.ko-nav-link:hover { opacity: 1; }

.ko-nav-cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--fg); color: var(--bg);
  padding: 10px 18px; border: none;
  transition: transform 0.15s;
}
.ko-nav-cta:hover { transform: translateY(-1px); }

/* ─── BUTTONS ─── */
.ko-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 16px 24px;
  border: 1.5px solid transparent;
  background: transparent; color: var(--fg);
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.ko-btn:hover { transform: translateY(-2px); }
.ko-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.ko-btn-ghost { border-color: var(--line); color: var(--fg); }
.ko-btn-outline { border-color: var(--fg); color: var(--fg); background: transparent; }
.ko-btn-outline:hover { background: var(--fg); color: var(--bg); }

.ko-play-icon {
  width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

/* ─── HERO ─── */
.ko-hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}
.ko-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ko-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; filter: grayscale(0.4) contrast(1.1); }
.ko-hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, transparent 30%, var(--bg) 90%),
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 60%, var(--bg) 100%);
}
.ko-hero-grain {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ko-ticker {
  position: absolute; top: 78px; left: 0; right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; z-index: 2;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
}
.ko-ticker-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding: 12px 0;
}
.ko-ticker-item {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; gap: 12px; align-items: center;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

.ko-hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 40px;
  min-height: calc(100vh - 200px);
  padding-top: 40px;
}

.ko-hero-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.ko-meta-row { display: inline-flex; align-items: center; gap: 8px; opacity: 0.7; }
.ko-dot { width: 8px; height: 8px; border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

.ko-hero-headline {
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-weight: 400;
  display: flex; flex-direction: column; gap: 4px;
  align-self: center;
  text-transform: uppercase;
}
.ko-line { display: block; position: relative; }
.ko-line-mid { display: flex; align-items: flex-end; gap: clamp(20px, 3vw, 60px); flex-wrap: wrap; }
.ko-display {
  display: inline-block;
  opacity: 1;
  animation: slideIn 0.8s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes slideIn {
  0% { transform: translateY(40%); }
  100% { transform: translateY(0); }
}
.ko-line:nth-child(1) .ko-display { animation-delay: 0.05s; }
.ko-line:nth-child(2) .ko-display { animation-delay: 0.18s; }
.ko-line:nth-child(3) .ko-display { animation-delay: 0.32s; }
.ko-display-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}
.ko-hero-tag {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.4;
  padding-bottom: clamp(20px, 3vw, 50px);
  opacity: 0.7;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.ko-hero-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.ko-hero-sub p {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 36ch;
  color: var(--fg-mute);
  line-height: 1.5;
}
.ko-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; align-self: end; }

.ko-hero-stats {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.ko-stat { padding-right: 24px; border-right: 1px solid var(--line); }
.ko-stat:last-child { border-right: none; }
.ko-stat-num {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
}
.ko-stat-lbl { color: var(--fg-mute); margin-top: 6px; }

.ko-round-badge {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  backdrop-filter: blur(8px);
}
.ko-round-num {
  font-family: var(--display);
  font-size: 38px; line-height: 1;
}
.ko-round-ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
@media (max-width: 980px) { .ko-round-badge { display: none; } }

/* ─── SECTIONS ─── */
.ko-section {
  padding: var(--pad-section) 0;
  position: relative;
}
.ko-section-light {
  background: var(--bg-2);
}
.ko-section-tint {
  background: var(--bg-3);
}

.ko-section-head { margin-bottom: clamp(48px, 8vh, 96px); max-width: 1000px; }
.ko-section-head-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; max-width: none;
}
@media (max-width: 800px) { .ko-section-head-row { grid-template-columns: 1fr; } }

.ko-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--fg-mute);
  margin-bottom: 24px;
}
.ko-eyebrow-light { color: rgba(255,255,255,0.7); }
.ko-eyebrow-bar { display: inline-block; width: 32px; height: 2px; }

.ko-h2 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9; letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
}

.ko-section-lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-mute);
  max-width: 50ch; line-height: 1.5;
}
.ko-section-lead-right { margin-top: 0; max-width: 38ch; justify-self: end; }

/* ─── CLASSES ─── */
.ko-classes-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4px;
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .ko-classes-grid { grid-template-columns: 1fr; } }

.ko-classes-tabs { display: flex; flex-direction: column; }
.ko-class-tab {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  padding: 28px 24px;
  background: transparent; color: var(--fg);
  border: none; border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, padding 0.2s;
}
.ko-class-tab:last-child { border-bottom: none; }
.ko-class-tab:hover { background: color-mix(in oklab, var(--fg) 4%, transparent); padding-left: 32px; }
.ko-class-tab.is-active { background: color-mix(in oklab, var(--fg) 4%, transparent); padding-left: 32px; }
.ko-class-num { font-size: 12px; opacity: 0.4; }
.ko-class-title-row { display: flex; flex-direction: column; gap: 2px; }
.ko-class-title { font-family: var(--display); font-size: 28px; letter-spacing: 0; line-height: 1; }
.ko-class-sub { color: var(--fg-mute); font-size: 10px; }
.ko-class-arrow { font-family: var(--mono); opacity: 0.5; }

.ko-class-panel {
  display: flex; flex-direction: column;
  background: color-mix(in oklab, var(--fg) 3%, transparent);
}
.ko-class-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.ko-class-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.05); }
.ko-class-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.ko-class-img-meta {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  display: flex; gap: 16px; flex-wrap: wrap; color: #fff;
}
.ko-intensity { display: inline-flex; gap: 2px; align-items: center; }
.ko-intensity span { letter-spacing: 0; }
.ko-class-num-big {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--display); font-size: 80px; line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.ko-class-body { padding: 32px; }
.ko-class-h3 {
  font-family: var(--display); font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.ko-class-body p { color: var(--fg-mute); max-width: 48ch; line-height: 1.55; }
.ko-class-actions { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }

.ko-link-arrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  display: inline-flex; gap: 6px;
}
.ko-link-muted { color: var(--fg-mute); }

/* ─── FACILITY ─── */
.ko-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.ko-tile { position: relative; overflow: hidden; }
.ko-tile-big { grid-column: 1 / 3; grid-row: 1 / 3; }
.ko-tile-med { grid-column: span 1; }
.ko-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.5) contrast(1.05);
  transition: transform 0.6s, filter 0.4s;
}
.ko-tile:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1.1); }
.ko-tile figcaption {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: end;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.ko-tile-num { font-size: 14px; }
@media (max-width: 800px) {
  .ko-facility-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .ko-tile-big { grid-column: 1/3; grid-row: auto; aspect-ratio: 16/10; }
  .ko-tile-med { aspect-ratio: 1/1; }
}

/* ─── PRICING ─── */
.ko-toggle-wrap {
  display: inline-flex; gap: 0;
  border: 1px solid var(--line);
  margin-top: 32px;
}
.ko-toggle {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; color: var(--fg-mute);
  border: none; padding: 12px 20px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.15s, color 0.15s;
}
.ko-toggle.is-active { background: var(--fg); color: var(--bg); }
.ko-toggle-save {
  font-size: 9px; padding: 3px 6px; color: #fff;
}

.ko-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .ko-pricing-grid { grid-template-columns: 1fr; } }

.ko-tier {
  padding: 40px 32px;
  background: var(--bg-3); color: var(--fg);
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  border: 1px solid transparent;
  margin: -1px;
}
.ko-tier.is-popular { transform: scale(1.02); z-index: 2; }
.ko-tier-flag {
  position: absolute; top: 0; right: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  padding: 6px 12px; color: #fff;
}
.ko-tier-name { font-family: var(--display); font-size: 36px; line-height: 1; letter-spacing: 0; font-weight: 400; }
.ko-tier-sub { color: var(--fg-mute); font-size: 13px; margin-top: 6px; }
.ko-tier.is-popular .ko-tier-sub { color: rgba(255,255,255,0.6); }
.ko-tier-price { display: flex; align-items: flex-end; gap: 4px; }
.ko-tier-currency { font-family: var(--display); font-size: 32px; line-height: 1.2; }
.ko-tier-num { font-family: var(--display); font-size: 88px; line-height: 0.9; letter-spacing: -0.03em; }
.ko-tier-unit { color: var(--fg-mute); padding-bottom: 10px; }
.ko-tier-billed { color: var(--fg-mute); font-size: 9px; margin-top: -16px; }

/* New: quote-block (no public pricing) */
.ko-tier-quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0 4px;
}
.ko-tier-quote-h {
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}
.ko-tier-quote-badge {
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.ko-tier-quote-line {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 76px;
}
.ko-tier-quote-mark {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--fg);
  opacity: 0.18;
}
.ko-tier.is-popular .ko-tier-quote-mark { color: #fff; opacity: 0.25; }
.ko-tier-quote-rule {
  flex: 1;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 6px,
    transparent 6px 12px
  );
  opacity: 0.25;
}
.ko-tier-quote-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  opacity: 0.55;
  text-transform: uppercase;
}
.ko-tier-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.ko-tier.is-popular .ko-tier-perks { border-color: rgba(255,255,255,0.15); }
.ko-tier-perks li { display: flex; gap: 12px; font-size: 14px; }
.ko-tier-check { font-family: var(--mono); }
.ko-tier .ko-btn { justify-content: space-between; width: 100%; margin-top: auto; }

.ko-pricing-note {
  text-align: center; margin-top: 24px; color: var(--fg-mute);
}

/* ─── TRAINERS ─── */
.ko-trainers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .ko-trainers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ko-trainers-grid { grid-template-columns: 1fr; } }

.ko-trainer-card { display: flex; flex-direction: column; }
.ko-trainer-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.ko-trainer-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.7) contrast(1.1);
  transition: filter 0.4s;
}
.ko-trainer-card:hover .ko-trainer-img { filter: grayscale(0) contrast(1.05); }
.ko-trainer-num {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--display); font-size: 28px;
}
.ko-trainer-record {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.ko-trainer-info { padding-top: 16px; }
.ko-trainer-role { margin-bottom: 6px; }
.ko-trainer-name { font-family: var(--display); font-size: 22px; line-height: 1.05; letter-spacing: 0; font-weight: 400; }
.ko-trainer-spec { color: var(--fg-mute); margin-top: 4px; font-size: 10px; }
.ko-trainer-bio { font-size: 13px; color: var(--fg-mute); margin-top: 12px; line-height: 1.5; }

/* ─── SCHEDULE ─── */
.ko-schedule { border: 1px solid var(--line); }
.ko-day-tabs {
  display: grid; grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--line);
}
.ko-day-tab {
  background: transparent; color: var(--fg-mute);
  border: none; border-right: 1px solid var(--line); border-bottom: 2px solid transparent;
  padding: 20px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background 0.15s, color 0.15s;
}
.ko-day-tab:last-child { border-right: none; }
.ko-day-tab:hover { background: color-mix(in oklab, var(--fg) 4%, transparent); }
.ko-day-tab.is-active { background: color-mix(in oklab, var(--fg) 6%, transparent); }
.ko-day-tab .ko-mono { font-size: 14px; letter-spacing: 0.16em; }
.ko-day-count { font-size: 9px; opacity: 0.5; }

.ko-day-list { display: flex; flex-direction: column; }
.ko-slot {
  display: grid; grid-template-columns: 100px 4px 1fr auto auto;
  align-items: center; gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.ko-slot:last-child { border-bottom: none; }
.ko-slot:hover { background: color-mix(in oklab, var(--fg) 3%, transparent); }
.ko-slot-time { font-size: 18px; letter-spacing: 0.06em; }
.ko-slot-divider { width: 4px; height: 36px; }
.ko-slot-name { font-family: var(--display); font-size: 24px; line-height: 1; letter-spacing: 0; }
.ko-slot-coach { color: var(--fg-mute); margin-top: 4px; }
.ko-slot-tag {
  font-family: var(--mono); font-size: 9px;
  padding: 4px 10px; border: 1px solid currentColor;
}
.ko-slot-book {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  background: transparent; color: var(--fg);
  border: none; padding: 8px 14px;
  border-left: 1px solid var(--line);
  transition: color 0.15s;
}
.ko-slot-book:hover { color: var(--accent); }
@media (max-width: 700px) {
  .ko-slot { grid-template-columns: 70px 1fr; gap: 16px; padding: 16px; }
  .ko-slot-divider, .ko-slot-tag, .ko-slot-book { display: none; }
}

/* ─── TESTIMONIALS ─── */
.ko-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .ko-testimonials { grid-template-columns: 1fr; } }
.ko-testimonial {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.ko-quote-mark { font-family: var(--display); font-size: 80px; line-height: 0.7; letter-spacing: -0.05em; }
.ko-testimonial blockquote {
  font-size: 17px; line-height: 1.4; font-weight: 500; flex: 1;
}
.ko-testimonial figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.ko-testimonial figcaption img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; filter: grayscale(0.4); }
.ko-testimonial-name { font-family: var(--display); font-size: 18px; line-height: 1; letter-spacing: 0.02em; }
.ko-testimonial-detail { color: var(--fg-mute); margin-top: 4px; }

/* ─── ABOUT ─── */
.ko-about {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
}
@media (max-width: 900px) { .ko-about { grid-template-columns: 1fr; } }
.ko-about-left .ko-h2 { font-size: clamp(56px, 9vw, 130px); }
.ko-about-right { display: flex; flex-direction: column; gap: 20px; }
.ko-about-lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; }
.ko-about-right p { color: var(--fg-mute); line-height: 1.6; max-width: 56ch; }
.ko-about-stats {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line);
}

/* ─── FAQ ─── */
.ko-faq {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .ko-faq { grid-template-columns: 1fr; } }
.ko-faq-head .ko-h2 { font-size: clamp(48px, 7vw, 100px); }
.ko-faq-list { display: flex; flex-direction: column; }
.ko-faq-item {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 24px 0; text-align: left; color: var(--fg);
  display: flex; flex-direction: column;
}
.ko-faq-item:first-child { border-top: 1px solid var(--line); }
.ko-faq-q-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
}
.ko-faq-num { font-size: 12px; }
.ko-faq-q { font-family: var(--display); font-size: clamp(20px, 2vw, 28px); letter-spacing: 0; line-height: 1.1; font-weight: 400; }
.ko-faq-icon { font-size: 24px; line-height: 1; font-family: var(--display); }
.ko-faq-a-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease;
}
.ko-faq-item.is-open .ko-faq-a-wrap { grid-template-rows: 1fr; padding-top: 16px; }
.ko-faq-a {
  overflow: hidden; color: var(--fg-mute);
  padding-left: 32px; max-width: 60ch; line-height: 1.55;
}

/* ─── CTA ─── */
.ko-cta-section {
  padding: var(--pad-section) 0;
  background: #0a0a0a; color: #f5f3ee;
  position: relative; overflow: hidden;
}
.ko-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: overlay;
}
.ko-cta-inner { position: relative; max-width: 1100px; }
.ko-cta-headline {
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.88; letter-spacing: -0.02em;
  font-weight: 400; text-transform: uppercase;
  margin: 24px 0 32px;
}
.ko-strike { position: relative; opacity: 0.4; }
.ko-strike::after {
  content: ''; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 6px; background: var(--accent);
  transform: rotate(-2deg);
}
.ko-cta-sub { font-size: clamp(16px, 1.4vw, 19px); max-width: 56ch; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.ko-cta-form {
  display: flex; gap: 0; max-width: 560px;
  border: 1px solid rgba(255,255,255,0.2);
}
.ko-cta-input {
  flex: 1; background: transparent; border: none; color: #fff;
  padding: 18px 20px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  outline: none;
}
.ko-cta-input::placeholder { color: rgba(255,255,255,0.4); }
.ko-cta-form .ko-btn { border: none; }
.ko-cta-fineprint { margin-top: 16px; color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─── */
.ko-footer {
  background: var(--bg);
  color: var(--fg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.ko-footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; }
@media (max-width: 900px) { .ko-footer-top { grid-template-columns: 1fr; } }
.ko-wordmark-lg { font-size: 56px; line-height: 1; }
.ko-footer-tag { color: var(--fg-mute); margin-top: 12px; }
.ko-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 700px) { .ko-footer-cols { grid-template-columns: repeat(2, 1fr); } }
.ko-footer-h { color: var(--fg-mute); margin-bottom: 16px; }
.ko-footer-cols p, .ko-footer-cols ul { font-size: 14px; line-height: 1.55; }
.ko-footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ko-footer-cols a { color: var(--fg); text-decoration: none; opacity: 0.85; }
.ko-footer-cols a:hover { opacity: 1; }
.ko-footer-hours { margin-top: 12px; font-size: 10px; color: var(--fg-mute); letter-spacing: 0.12em; }
.ko-footer-rule { height: 1px; }
.ko-footer-massive {
  font-family: var(--display);
  font-size: clamp(80px, 22vw, 360px);
  line-height: 0.85; letter-spacing: -0.03em;
  text-align: center; padding: 32px 0;
  white-space: nowrap; overflow: hidden;
  user-select: none;
}
.ko-footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--fg-mute); flex-wrap: wrap;
}

/* ─── TWEAKS PANEL OVERRIDES — make sure it sits in z-stack ─── */
.tweaks-panel { z-index: 1000; }
/* Extra sections: Challenge6Week, StrategySession, LocationMap */

/* === 6-WEEK CHALLENGE === */
.ko-section-challenge {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.ko-section-challenge::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    );
  pointer-events: none;
}
[data-theme="light"] .ko-section-challenge::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(0,0,0,0.025) 60px,
      rgba(0,0,0,0.025) 61px
    );
}

.ko-challenge-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
}

.ko-challenge-numbermark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 28px;
}
.ko-challenge-bignum {
  font-family: var(--display);
  font-size: clamp(140px, 22vw, 260px);
  line-height: 0.75;
  letter-spacing: -0.04em;
}
.ko-challenge-numlabel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.ko-challenge-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.ko-challenge-card::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 28px; height: 28px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.ko-challenge-card::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -1px;
  width: 28px; height: 28px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.ko-challenge-card-h {
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.6;
  margin-bottom: 14px;
}
.ko-challenge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
}
.ko-challenge-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.ko-challenge-list li span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  min-width: 26px;
}
.ko-challenge-results {
  padding-top: 8px;
  border-top: 2px solid var(--accent);
  margin-top: 4px;
}
.ko-challenge-result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.ko-challenge-result-row .ko-stat-num {
  font-size: clamp(36px, 4.5vw, 56px);
}
.ko-challenge-bonus {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

@media (max-width: 880px) {
  .ko-challenge-inner { grid-template-columns: 1fr; }
}

/* === STRATEGY SESSION === */
.ko-section-strategy {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ko-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ko-strategy-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.ko-strategy-bullet {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.ko-strategy-bullet:last-child {
  border-bottom: 1px solid var(--line);
}
.ko-strategy-num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ko-strategy-bullet-h {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.ko-strategy-bullet-d {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}

.ko-strategy-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.ko-strategy-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--accent);
}
.ko-strategy-form-h {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ko-strategy-form-title {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.ko-strategy-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ko-strategy-field-full {
  grid-column: 1 / -1;
}
.ko-strategy-field span {
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  font-weight: 600;
}
.ko-strategy-field input,
.ko-strategy-field select {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.ko-strategy-field input:focus,
.ko-strategy-field select:focus {
  border-color: var(--accent);
}
.ko-strategy-submit {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 6px;
}
.ko-strategy-fineprint {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.45;
  line-height: 1.6;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .ko-strategy-grid { grid-template-columns: 1fr; }
  .ko-strategy-form { grid-template-columns: 1fr; }
}

/* === LOCATION MAP === */
.ko-section-location {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.ko-location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.ko-location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.ko-location-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.ko-location-h {
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.55;
  font-weight: 600;
  margin-bottom: 10px;
}
.ko-location-text {
  font-size: 16px;
  line-height: 1.55;
}
.ko-location-text a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}
.ko-location-text a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.ko-location-map {
  position: relative;
  aspect-ratio: 5/4;
  min-height: 380px;
}
.ko-map-shell {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  color: var(--fg);
}
.ko-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ko-map-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.ko-map-sublabel {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
}
.ko-map-pin-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.ko-map-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.55;
  text-align: right;
  line-height: 1.7;
}
.ko-map-action {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

@media (max-width: 880px) {
  .ko-location-grid { grid-template-columns: 1fr; }
  .ko-location-info { grid-template-columns: 1fr; }
}

/* === LOCATIONS GRID === */
.ko-section-locations {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ko-locations-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.ko-loc-flagship {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: var(--fg);
  background: var(--bg);
  border-right: 2px solid var(--accent, currentColor);
  transition: background 0.2s;
}
.ko-loc-flagship:hover { background: var(--bg-2); }
.ko-loc-flagship-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ko-loc-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  opacity: 0.55;
}
.ko-loc-status {
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ko-loc-status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  animation: ko-pulse 2s infinite;
}
@keyframes ko-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ko-loc-flagship-city {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ko-loc-city {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 92px);
  letter-spacing: 0.005em;
  line-height: 0.9;
  text-transform: uppercase;
}
.ko-loc-state {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-top: 8px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  opacity: 0.8;
}
.ko-loc-flagship-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}
.ko-loc-addr { font-weight: 500; font-size: 16px; }
.ko-loc-phone { font-size: 12px; letter-spacing: 0.1em; opacity: 0.75; }
.ko-loc-note { font-size: 13px; opacity: 0.65; margin-top: 8px; }
.ko-loc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.ko-loc-distance { opacity: 0.55; }
.ko-loc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.ko-loc-flagship:hover .ko-loc-link { gap: 10px; }

/* Service-area list */
.ko-loc-areas {
  padding: clamp(28px, 3vw, 44px);
  background: var(--bg-2, #f3f0ea);
  display: flex;
  flex-direction: column;
}
.ko-loc-areas-h {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 18px;
}
.ko-loc-cities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.ko-loc-city-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.ko-loc-city-row:last-child { border-bottom: none; }
.ko-loc-city-idx {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  opacity: 0.4;
}
.ko-loc-city-link {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.ko-loc-city-link:hover { text-decoration: underline; }
.ko-loc-city-flag {
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 3px 6px;
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  vertical-align: middle;
}
.ko-loc-city-rule {
  height: 1px;
  background: var(--line);
  width: 30px;
  opacity: 0.6;
}
.ko-loc-city-state {
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.5;
  font-weight: 700;
}
.ko-loc-areas-foot {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  opacity: 0.5;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .ko-locations-layout { grid-template-columns: 1fr; }
  .ko-loc-flagship { border-right: none; border-bottom: 2px solid var(--accent, currentColor); }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* MOBILE BOTTOM NAVIGATION + RESPONSIVE POLISH                                */
/* ─────────────────────────────────────────────────────────────────────────── */

html { scroll-behavior: smooth; scroll-padding-top: 80px; scroll-padding-bottom: 80px; }

.ko-mobnav { display: none; }

@media (max-width: 820px) {
  /* === Mobile bottom nav bar === */
  .ko-mobnav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    isolation: isolate;
  }
  .ko-mobnav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 2px 6px;
    text-decoration: none;
    color: var(--fg-mute);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.15s, transform 0.1s;
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
  }
  .ko-mobnav-item:active { transform: scale(0.96); }
  .ko-mobnav-item.is-active { color: var(--fg); }
  .ko-mobnav-icon {
    display: grid; place-items: center;
    width: 24px; height: 24px;
  }
  .ko-mobnav-icon svg { width: 22px; height: 22px; display: block; }
  .ko-mobnav-label { line-height: 1; font-weight: 600; }
  .ko-mobnav-bar {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 22px; height: 2px;
  }
  .ko-mobnav-item.is-cta {
    color: #fff;
    box-shadow: 0 -2px 0 0 color-mix(in oklab, var(--accent) 60%, transparent) inset;
  }
  .ko-mobnav-item.is-cta .ko-mobnav-icon svg { width: 24px; height: 24px; }

  /* Page padding so nothing hides behind the bottom bar */
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }

  /* === Top nav: hide link list on mobile (logo + CTA only) === */
  .ko-nav { padding: 12px var(--pad-x); }
  .ko-nav-links { display: none; }
  .ko-nav-cta { padding: 8px 12px; font-size: 10px; letter-spacing: 0.12em; }

  /* === Hero polish === */
  .ko-hero {
    min-height: auto;
    padding-top: clamp(110px, 20vh, 160px) !important;
    padding-bottom: clamp(36px, 6vh, 60px) !important;
  }
  .ko-hero-inner {
    min-height: auto;
    gap: 28px;
    padding-top: 20px;
  }
  .ko-hero-headline {
    font-size: clamp(56px, 17vw, 240px);
    gap: 2px;
  }
  .ko-line-mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ko-hero-tag { padding-bottom: 0; padding-left: 12px; border-left-width: 2px; }
  .ko-hero-foot {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }
  .ko-hero-cta {
    justify-self: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .ko-hero-cta .ko-btn { width: 100%; justify-content: center; }
  .ko-hero-stats {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    padding-top: 24px;
  }
  .ko-hero-stats .ko-stat {
    padding-right: 16px;
    border-right: 1px solid var(--line);
  }
  .ko-hero-stats .ko-stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .ko-stat-num { font-size: clamp(34px, 9vw, 56px); }
  .ko-hero-meta { gap: 8px; }
  .ko-meta-row { font-size: 10px; }

  /* === Section padding === */
  .ko-section { padding: clamp(56px, 9vh, 88px) 0; }
  .ko-section-head { margin-bottom: clamp(36px, 6vh, 56px); }

  /* === 6-Week Challenge === */
  .ko-challenge-bignum { font-size: clamp(110px, 32vw, 180px); }
  .ko-challenge-numbermark { gap: 14px; margin: 18px 0 22px; }

  /* === Class tabs: tighten === */
  .ko-class-tab { padding: 22px 18px; gap: 14px; }
  .ko-class-tab:hover, .ko-class-tab.is-active { padding-left: 22px; }
  .ko-class-title { font-size: 22px; }
  .ko-class-body { padding: 24px; }

  /* === Pricing cards spacing === */
  .ko-tier { padding: 32px 24px; }

  /* === Schedule slots: keep BOOK button visible on mobile === */
  .ko-slot {
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    padding: 18px 18px;
  }
  .ko-slot-divider, .ko-slot-tag { display: none; }
  .ko-slot-book { display: inline-flex; padding: 8px 6px; border-left: none; }
  .ko-slot-name { font-size: 20px; }

  /* === Strategy form === */
  .ko-strategy-form { padding: 24px 22px; }

  /* === Testimonials, FAQ === */
  .ko-testimonial { padding: 24px; }
  .ko-faq-item { padding: 20px 0; }

  /* === CTA === */
  .ko-cta-form { flex-direction: column; max-width: none; border: none; gap: 10px; }
  .ko-cta-input { border: 1px solid rgba(255,255,255,0.2); padding: 14px 16px; }
  .ko-cta-form .ko-btn { width: 100%; justify-content: center; padding: 16px 20px; border: none; }

  /* === Footer massive wordmark — needs to be small enough === */
  .ko-footer { padding: 56px 0 24px; }
  .ko-footer-massive { font-size: clamp(60px, 22vw, 360px); }
  .ko-footer-bottom { gap: 8px; flex-direction: column; align-items: flex-start; }

  /* === Locations cities list: reduce text size === */
  .ko-loc-city-row { padding: 9px 0; gap: 10px; grid-template-columns: 26px 1fr auto; }
  .ko-loc-city-rule { display: none; }
  .ko-loc-city-link { font-size: 18px; }

  /* === Round badge stays hidden, density unchanged === */
}

@media (max-width: 480px) {
  .ko-mobnav-label { font-size: 8.5px; letter-spacing: 0.12em; }
  .ko-hero-headline { font-size: clamp(48px, 16vw, 240px); }
  .ko-h2 { font-size: clamp(40px, 11vw, 120px); }
  .ko-section-head .ko-h2 br { display: none; }
  .ko-tier-num { font-size: 64px; }
  .ko-tier-quote-badge { font-size: 64px; }
  .ko-cta-headline { font-size: clamp(48px, 14vw, 180px); }
}
