:root {
  --red: #e30613;
  --red-dark: #bc0510;
  --ink: #14161a;
  --ink-soft: #23262d;
  --text: #25282e;
  --muted: #666b74;
  --line: #e4e6ea;
  --soft: #f4f5f7;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(20, 22, 26, .08);
  --shadow-md: 0 24px 70px rgba(20, 22, 26, .14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1260px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul, ol, figure { margin-top: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(227, 6, 19, .35); outline-offset: 3px; }
::selection { background: rgba(227, 6, 19, .16); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section-tight { padding-top: 84px; padding-bottom: 84px; }
.eyebrow {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--ink); letter-spacing: -.025em; line-height: 1.08; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 4.8vw, 72px); font-weight: 900; }
h2 { margin-bottom: 20px; font-size: clamp(32px, 3.3vw, 52px); font-weight: 900; }
h3 { margin-bottom: 12px; font-size: 22px; font-weight: 800; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading > div > h2, .section-heading > h2 { margin-bottom: 0; }
.section-heading > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 18px; }
.section-heading.center { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.center p:last-child { margin-inline: auto; }
.section-heading.light h2, .section-heading.light > p { color: var(--white); }
.section-heading.light > p { color: rgba(255,255,255,.72); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 10px 24px rgba(227, 6, 19, .22); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(227, 6, 19, .28); }
.button-outline { border-color: #cfd2d8; color: var(--ink); background: rgba(255,255,255,.88); }
.button-outline:hover { border-color: var(--red); color: var(--red); }
.button-small { min-height: 42px; padding: 10px 17px; border-radius: 10px; font-size: 14px; }
.button-large { min-height: 54px; padding: 15px 24px; }
.button-block { width: 100%; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(20,22,26,.06);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-compact { height: 64px; box-shadow: 0 8px 30px rgba(20,22,26,.08); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 28px; }
.brand { display: block; flex: 0 0 174px; }
.brand img { width: 174px; height: auto; }
.desktop-nav { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 32px); }
.desktop-nav a { position: relative; padding: 8px 0; color: #3f434b; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 15px; }
.header-phone { font-size: 14px; font-weight: 900; white-space: nowrap; }
.header-phone::before { margin-right: 7px; color: var(--red); content: "☎"; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 10px; background: var(--soft); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; padding: 18px 16px 22px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 50px rgba(20,22,26,.12); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { min-height: 48px; padding: 13px 6px; border-bottom: 1px solid var(--line); font-weight: 750; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; margin-top: 16px; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 66px;
  background:
    linear-gradient(130deg, rgba(244,245,247,.9), rgba(255,255,255,.98) 50%, rgba(244,245,247,.74)),
    repeating-linear-gradient(135deg, transparent 0 56px, rgba(20,22,26,.022) 56px 58px);
}
.hero::before { position: absolute; top: 76px; right: -80px; width: 46%; height: 460px; border-radius: 40px; background: linear-gradient(145deg, rgba(227,6,19,.04), transparent 60%); content: ""; transform: skewX(-14deg); }
.hero-decor { position: absolute; z-index: 0; background: var(--red); transform: skewX(-34deg); }
.hero-decor-one { top: 86px; right: 9%; width: 54px; height: 18px; }
.hero-decor-two { right: -15px; bottom: 44px; width: 100px; height: 26px; opacity: .14; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr) 320px; gap: 28px; align-items: center; }
.hero-copy { padding: 18px 0; }
.hero-copy h1 { font-size: clamp(42px, 3.6vw, 58px); line-height: 1.06; }
.hero-copy h1 span { display: block; color: var(--red); }
.hero-lead { max-width: 680px; margin-bottom: 28px; color: #555a64; font-size: 19px; line-height: 1.52; }
.hero-lead strong { color: var(--ink); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-triggers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 18px; max-width: 650px; margin: 0; padding: 0; list-style: none; color: #4e535c; font-size: 13px; font-weight: 700; }
.hero-triggers li { display: flex; align-items: center; gap: 8px; }
.hero-triggers li span { display: grid; flex: 0 0 22px; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--red); background: rgba(227,6,19,.08); }
.hero-media { align-self: stretch; display: flex; align-items: center; }
.video-frame { position: relative; width: 100%; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-md); transform: skewX(-4deg); }
.video-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; content: ""; pointer-events: none; }
.hero-video { width: 100%; height: 620px; object-fit: cover; object-position: center; transform: skewX(4deg) scale(1.09); background: var(--ink); }
.video-badge { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: var(--white); background: rgba(20,22,26,.68); backdrop-filter: blur(10px); font-size: 12px; font-weight: 750; transform: skewX(4deg); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #3edc7f; box-shadow: 0 0 0 5px rgba(62,220,127,.17); }
.hero-form-card { padding: 24px; border: 1px solid rgba(20,22,26,.08); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); }
.form-card-head { margin-bottom: 18px; }
.form-card-head h2 { margin-bottom: 10px; font-size: 27px; }
.form-card-head h2 span { color: var(--red); }
.form-card-head p:last-child { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.mini-kicker { margin-bottom: 7px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }

.lead-form { position: relative; }
.field { position: relative; margin-bottom: 13px; }
.field label { display: block; margin-bottom: 6px; color: #4c5058; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #dfe1e6; border-radius: 10px; color: var(--ink); background: #f9fafb; outline: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #979ca5; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(227,6,19,.1); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c6101c; background: #fff8f8; }
.field-error { display: block; min-height: 0; margin-top: 4px; color: #b30b17; font-size: 11px; }
.consent-check { display: flex; align-items: flex-start; gap: 9px; margin: 14px 0 4px; color: #656a73; font-size: 11px; line-height: 1.35; cursor: pointer; }
.consent-check input { flex: 0 0 17px; width: 17px; height: 17px; margin: 0; accent-color: var(--red); }
.consent-check a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.consent-error { margin-bottom: 7px; }
.form-note { margin: 8px 0 0; color: #8b9099; font-size: 10px; text-align: center; }
.form-status { min-height: 20px; margin-top: 8px; color: #55606b; font-size: 12px; text-align: center; }
.form-status.is-error { color: #b30b17; }
.form-status.is-success { color: #08783b; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.45); border-top-color: var(--white); border-radius: 50%; animation: spin .8s linear infinite; }
.lead-form.is-loading .spinner { display: block; }
.lead-form.is-loading button[type="submit"] { cursor: wait; opacity: .82; }
@keyframes spin { to { transform: rotate(360deg); } }

.audience-section { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.audience-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s ease; }
.audience-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(20,22,26,.12); }
.card-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.card-image::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,26,.2), transparent 52%); content: ""; }
.card-image picture, .direction-image picture { display: block; width: 100%; height: 100%; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.audience-card:hover .card-image img { transform: scale(1.045); }
.audience-card:nth-child(4) .card-image img { object-position: 50% 25%; }
.card-body { position: relative; padding: 24px 22px 20px; }
.card-number { position: absolute; top: -21px; left: 20px; display: grid; width: 42px; height: 42px; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--white); background: var(--red); font-size: 11px; font-weight: 900; }
.card-body h3 { margin-top: 4px; font-size: 21px; }
.card-body p { min-height: 72px; margin-bottom: 13px; color: var(--muted); font-size: 14px; }

.steps-section { overflow: hidden; background: var(--soft); }
.steps-section .section-heading.center > .eyebrow { display: table; width: fit-content; max-width: 100%; margin-inline: auto; padding: 8px 14px; border: 1px solid rgba(227,6,19,.62); border-radius: 999px; background: rgba(255,255,255,.72); text-align: center; }
.steps-section::after { position: absolute; right: -110px; bottom: -80px; width: 340px; height: 180px; background: repeating-linear-gradient(135deg, var(--red) 0 18px, transparent 18px 36px); content: ""; opacity: .06; transform: rotate(-8deg); }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 0 0 28px; padding: 0; list-style: none; }
.step-card { position: relative; min-height: 215px; padding: 30px 24px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 22px rgba(20,22,26,.05); }
.step-card:not(:last-child)::after { position: absolute; z-index: 2; top: 52px; right: -28px; width: 38px; height: 2px; background: var(--red); content: ""; opacity: .45; }
.step-number { display: block; margin-bottom: 28px; color: var(--red); font-size: 42px; font-weight: 900; line-height: 1; }
.step-card h3 { font-size: 19px; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.assurance-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.assurance-row span { padding: 9px 14px; border: 1px solid #dfe1e5; border-radius: 999px; color: #515660; background: rgba(255,255,255,.75); font-size: 12px; font-weight: 750; }
.assurance-row span::before { margin-right: 7px; color: var(--red); content: "✓"; }

.progress-section { background: var(--white); }
.progress-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.progress-card { position: relative; overflow: hidden; min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--white), #fafafa); box-shadow: var(--shadow-sm); }
.progress-card::after { position: absolute; right: -26px; bottom: -36px; width: 130px; height: 130px; border: 24px solid rgba(227,6,19,.04); border-radius: 50%; content: ""; }
.progress-icon { display: grid; width: 54px; height: 54px; margin-bottom: 28px; place-items: center; border-radius: 16px; color: var(--white); background: var(--red); font-size: 20px; font-weight: 900; box-shadow: 0 10px 24px rgba(227,6,19,.2); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: 11px; padding-left: 25px; color: #555a63; }
.check-list li::before { position: absolute; top: .05em; left: 0; color: var(--red); content: "✓"; font-weight: 900; }
.check-list.large li { margin-bottom: 14px; font-size: 16px; }

.facilities-section { overflow: hidden; color: var(--white); background: #17191f; }
.facilities-section::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 18%, rgba(227,6,19,.18), transparent 34%), linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.02) 48% 49%, transparent 49% 100%); content: ""; }
.facility-diagonal { position: absolute; top: 0; right: 0; width: 190px; height: 100%; overflow: hidden; }
.facility-diagonal::before, .facility-diagonal::after { position: absolute; right: -70px; width: 90px; height: 420px; background: var(--red); content: ""; transform: skewX(-34deg); }
.facility-diagonal::before { top: -100px; }
.facility-diagonal::after { bottom: -170px; opacity: .55; }
.facility-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.facility-card { display: grid; min-height: 300px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.facility-card img { width: 100%; height: 170px; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.facility-card > div { padding: 22px; }
.facility-card h3 { color: var(--white); font-size: 19px; }
.facility-card p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.directions-section { background: #f8f8f9; }
.directions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.direction-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 24px rgba(20,22,26,.05); }
.direction-image { aspect-ratio: 16 / 10; overflow: hidden; background: #dedfe2; }
.direction-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.direction-card:nth-child(5) .direction-image img, .direction-card:nth-child(6) .direction-image img, .direction-card:nth-child(7) .direction-image img { object-position: center 25%; }
.direction-card:hover .direction-image img { transform: scale(1.045); }
.direction-body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 22px; }
.direction-body > span { display: block; margin-bottom: 8px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.direction-body h3 { font-size: 21px; }
.direction-body p { min-height: 84px; margin-bottom: 12px; color: var(--muted); font-size: 13px; }
.direction-body .text-link { margin-top: auto; }
.fitbox-media img { object-position: 60% 48% !important; }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-collage { position: relative; min-height: 610px; }
.about-main { position: absolute; inset: 0 74px 80px 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-small { position: absolute; right: 0; bottom: 0; width: 43%; height: 260px; overflow: hidden; border: 8px solid var(--white); border-radius: 24px; box-shadow: var(--shadow-sm); }
.about-small img { width: 100%; height: 100%; object-fit: cover; }
.about-mark { position: absolute; top: 28px; right: 0; width: 205px; padding: 22px; border-radius: 18px; color: var(--white); background: var(--red); box-shadow: 0 18px 40px rgba(227,6,19,.26); }
.about-mark strong { display: block; margin-bottom: 8px; font-size: 20px; line-height: 1.1; }
.about-mark span { display: block; color: rgba(255,255,255,.82); font-size: 11px; }
.about-copy .lead { color: var(--ink); font-size: 20px; font-weight: 650; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.about-points { display: grid; gap: 12px; margin: 30px 0; }
.about-points > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.about-points strong { color: var(--ink); }
.about-points span { color: var(--muted); font-size: 14px; }

.coaches-section { background: var(--soft); }
.coaches-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 15px; }
.coach-card { overflow: hidden; border: 1px solid #dfe1e5; border-radius: 18px; background: var(--white); box-shadow: 0 8px 24px rgba(20,22,26,.05); }
.coach-picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #ddd; }
.coach-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.coach-summary { padding: 18px 16px 14px; }
.coach-role { min-height: 28px; margin-bottom: 7px; color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.coach-summary h3 { min-height: 44px; margin-bottom: 8px; font-size: 18px; }
.coach-summary > p:not(.coach-role) { min-height: 64px; margin-bottom: 9px; color: var(--muted); font-size: 12px; }

.results-section { background: var(--white); }
.results-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 28px; }
.result-panel { min-height: 350px; padding: 42px; border-radius: var(--radius); }
.result-panel-light { border: 1px solid var(--line); background: var(--soft); }
.result-panel-dark { color: var(--white); background: linear-gradient(140deg, #181a20, #2a2d35); box-shadow: var(--shadow-md); }
.result-panel-dark h3 { color: var(--white); }
.result-panel-dark .check-list li { color: rgba(255,255,255,.75); }
.result-label { display: inline-flex; margin-bottom: 28px; padding: 8px 12px; border-radius: 999px; color: var(--red); background: rgba(227,6,19,.08); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.result-panel-dark .result-label { color: var(--white); background: var(--red); }
.result-panel h3 { max-width: 520px; margin-bottom: 26px; font-size: 28px; }
.hall-of-fame { margin-top: 54px; }
.hall-of-fame-heading { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.hall-of-fame-heading h3 { margin-bottom: 13px; font-size: clamp(28px, 2.7vw, 42px); }
.hall-of-fame-heading > p:last-child { margin: 0 auto; color: var(--muted); font-size: 17px; }
.hall-of-fame-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.athlete-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.athlete-photo { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #202329; }
.athlete-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.athlete-card--wide-image .athlete-photo { display: block; background: linear-gradient(145deg, #17191e, #292d35); }
.athlete-card--wide-image .athlete-photo img { object-fit: contain; object-position: center; padding: 12px; }
.athlete-card-body { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 24px 23px 20px; }
.athlete-card-kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.athlete-trophy { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.athlete-card h3 { margin-bottom: 11px; font-size: 24px; }
.athlete-card-body > p { margin-bottom: 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.athlete-card ul { display: grid; gap: 9px; margin: 0 0 19px; padding: 0; list-style: none; }
.athlete-card li { position: relative; padding-left: 19px; color: #454a53; font-size: 13px; font-weight: 700; line-height: 1.4; }
.athlete-card li::before { position: absolute; top: .52em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--red); content: ""; }
.athlete-more { width: max-content; margin-top: auto; }
.results-cta { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: center; overflow: hidden; margin-top: 30px; padding: 30px 34px; border-radius: var(--radius); color: var(--white); background: linear-gradient(135deg, #191b20, #292d35); box-shadow: var(--shadow-md); }
.results-cta::after { position: absolute; top: -45px; right: 190px; width: 92px; height: 180px; transform: rotate(32deg); background: var(--red); content: ""; opacity: .82; }
.results-cta > * { position: relative; z-index: 1; }
.results-cta h3 { margin-bottom: 7px; color: var(--white); font-size: clamp(24px, 2.2vw, 34px); }
.results-cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); }
.results-cta .button { min-width: 210px; }

.reviews-section { background: #f8f8f9; }
.reviews-section .section-heading { align-items: center; }
.review-trust-badge { display: inline-flex; width: max-content; min-height: 42px; align-items: center; gap: 9px; margin-top: 18px; padding: 8px 13px; border: 1px solid #dddfe4; border-radius: 999px; color: var(--ink); background: var(--white); box-shadow: 0 7px 20px rgba(20,22,26,.06); font-size: 12px; }
.review-trust-badge span { color: #bd8500; font-weight: 900; }
.review-trust-badge strong { font-weight: 850; }
.review-trust-badge:hover { border-color: rgba(227,6,19,.45); }
.slider-controls { display: flex; justify-content: flex-end; gap: 8px; }
.slider-controls button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #d7d9de; border-radius: 50%; background: var(--white); font-size: 20px; cursor: pointer; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.slider-controls button:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.reviews-track { display: grid; grid-auto-columns: calc((100% - 36px) / 3); grid-auto-flow: column; gap: 18px; overflow-x: auto; align-items: stretch; padding: 6px 2px 20px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #c8cbd1 transparent; }
.review-card { display: flex; min-width: 0; min-height: 330px; flex-direction: column; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); scroll-snap-align: start; }
.review-card-head { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center; }
.review-avatar { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--ink-soft), #3c414b); font-size: 14px; font-weight: 900; letter-spacing: .03em; }
.review-card h3 { margin: 0 0 6px; font-size: 18px; }
.review-meta { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; color: var(--muted); font-size: 11px; }
.review-source { font-weight: 850; }
.review-source-2gis { color: #168d57; }
.review-source-yandex { color: #c6101c; }
.review-source-vk { color: #2674b8; }
.review-stars { margin: 18px 0 12px; color: #e8a900; font-size: 18px; letter-spacing: .08em; line-height: 1; }
.review-excerpt { display: -webkit-box; overflow: hidden; min-height: 112px; margin-bottom: 18px; color: #555a63; font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.review-actions { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.review-actions .text-link { min-height: 38px; }
.review-actions > a { color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.review-actions > a:hover { color: var(--red); }
.reviews-directory-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }

.schedule-section { background: var(--white); }
.schedule-price-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, .75fr); gap: 24px; align-items: start; }
.schedule-card, .price-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.schedule-card { overflow: hidden; }
.schedule-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 18px; border-bottom: 1px solid var(--line); background: #fafafa; scrollbar-width: none; }
.schedule-tabs::-webkit-scrollbar { display: none; }
.schedule-tabs button { flex: 0 0 auto; min-height: 42px; padding: 9px 16px; border: 1px solid #d9dce1; border-radius: 999px; background: var(--white); font-size: 13px; font-weight: 800; cursor: pointer; }
.schedule-tabs button.is-active { border-color: var(--red); color: var(--white); background: var(--red); }
.schedule-list { padding: 8px 20px 20px; }
.schedule-row { display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: center; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.schedule-row[hidden] { display: none; }
.schedule-row > div { display: flex; flex-direction: column; gap: 3px; }
.schedule-row strong { color: var(--ink); font-size: 13px; }
.schedule-row span { color: var(--red); font-size: 17px; font-weight: 900; }
.schedule-row p { margin: 0; color: #4d525b; font-size: 14px; }
.schedule-row-note { margin-top: 8px; padding: 16px; border: 0; border-radius: 14px; background: #fff5f5; }
.schedule-empty { padding: 26px; color: var(--muted); text-align: center; }
.price-card { padding: 28px; }
.price-badge { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; border-radius: 999px; color: var(--white); background: var(--red); font-size: 11px; font-weight: 850; }
.price-main { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-main p { margin-bottom: 6px; color: var(--muted); font-size: 13px; }
.price-main strong { display: block; color: var(--ink); font-size: 48px; letter-spacing: -.05em; line-height: 1; }
.price-main span { display: block; margin-top: 8px; color: var(--red); font-size: 12px; font-weight: 800; }
.price-list { margin: 18px 0 24px; padding: 0; list-style: none; }
.price-list li { display: flex; gap: 16px; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.price-list strong { color: var(--ink); white-space: nowrap; }
.subscription-rules { margin-bottom: 22px; padding: 20px; border-radius: 16px; background: var(--soft); }
.subscription-rules h3 { font-size: 16px; }
.subscription-rules .check-list li { margin-bottom: 8px; font-size: 12px; }

.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-heading { position: sticky; top: 100px; }
.faq-heading > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 1px solid #dde0e4; border-radius: 15px; background: var(--white); }
.faq-list summary { position: relative; min-height: 58px; padding: 18px 54px 18px 20px; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 20px; color: var(--red); content: "+"; font-size: 24px; transform: translateY(-50%); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 54px 20px 20px; color: var(--muted); font-size: 14px; }

.kit-section { background: var(--white); }
.kit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.kit-image { height: 590px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.kit-image img { width: 100%; height: 100%; object-fit: cover; }
.kit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.kit-list > div { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fafafa; }
.kit-list span { color: var(--red); font-size: 13px; font-weight: 900; }
.kit-list p { margin: 0; color: var(--muted); font-size: 13px; }
.kit-list strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 15px; }

.contacts-section { overflow: hidden; background: #f7f7f8; }
.contacts-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-info, .map-card { min-width: 0; }
.contact-address { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; padding: 24px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-address img { width: 50px; }
.contact-address span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 12px; }
.contact-address strong { color: var(--ink); font-size: 22px; line-height: 1.25; }
.contact-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.contact-link { min-height: 92px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); transition: border-color .2s ease, transform .2s ease; }
.contact-link:hover { border-color: var(--red); transform: translateY(-2px); }
.contact-link span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.contact-link strong { color: var(--ink); font-size: 14px; }
.entry-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.entry-photos figure { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 15px; background: #e8e9ec; }
.entry-photos img { width: 100%; height: 100%; object-fit: cover; }
.entry-photos figure:first-child img { object-position: 50% 52%; }
.entry-photos figure:last-child img { object-position: 50% 42%; }
.map-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 510px; border: 0; background: #e8e9ec; }
.map-caption { display: flex; gap: 18px; justify-content: space-between; padding: 20px 24px; }
.map-caption strong { color: var(--ink); }
.map-caption span { max-width: 310px; color: var(--muted); font-size: 12px; }

.final-cta { position: relative; overflow: hidden; padding: 86px 0; color: var(--white); background: #17191f; }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(circle at 12% 100%, rgba(227,6,19,.32), transparent 32%), repeating-linear-gradient(135deg, transparent 0 64px, rgba(255,255,255,.025) 64px 66px); }
.final-cta::before { position: absolute; top: -100px; right: 7%; width: 120px; height: 480px; background: var(--red); content: ""; opacity: .55; transform: skewX(-34deg); }
.final-cta-grid { position: relative; display: grid; grid-template-columns: 1fr .86fr; gap: 70px; align-items: center; }
.final-cta-copy h2 { color: var(--white); }
.final-cta-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); font-size: 18px; }
.final-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.final-socials a { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 13px; font-weight: 800; }
.final-socials a:hover { border-color: var(--red); background: rgba(227,6,19,.15); }
.final-form { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.final-form .field label, .final-form .consent-check { color: rgba(255,255,255,.75); }
.final-form .consent-check a { color: var(--white); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.site-footer { padding: 62px 0 calc(22px + env(safe-area-inset-bottom)); color: rgba(255,255,255,.72); background: #111318; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr 1fr; gap: 42px; padding-bottom: 38px; }
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p { max-width: 290px; margin-bottom: 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h2 { margin-bottom: 8px; color: var(--white); font-size: 14px; }
.footer-col a, .footer-col span { font-size: 12px; }
.footer-col a:hover { color: var(--white); }
.footer-contacts a:first-of-type { color: var(--white); font-size: 16px; font-weight: 900; }
.footer-bottom { display: flex; gap: 16px; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.42); font-size: 11px; }

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

.modal { position: fixed; z-index: 2000; inset: 0; padding: 20px; overflow-y: auto; }
.modal[hidden] { display: none; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(8,10,13,.74); backdrop-filter: blur(5px); animation: fadeIn .2s ease; }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 760px); margin: 5vh auto; border-radius: var(--radius); background: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.38); animation: modalIn .28s var(--ease); }
.modal-dialog-form { padding: 32px; }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: var(--soft); font-size: 28px; line-height: 1; cursor: pointer; }
.modal-head { max-width: 590px; margin-bottom: 22px; padding-right: 46px; }
.modal-head h2 { margin-bottom: 8px; font-size: 32px; }
.modal-head > p:last-child { margin-bottom: 0; color: var(--muted); }
.modal-dialog-success { width: min(100%, 580px); margin-top: 12vh; padding: 44px; text-align: center; }
.success-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 22px; place-items: center; border-radius: 50%; color: var(--white); background: #15a05a; font-size: 34px; font-weight: 900; }
.modal-dialog-success h2 { margin-bottom: 12px; }
.modal-dialog-success > p { margin-bottom: 26px; color: var(--muted); }
.success-actions { display: grid; gap: 10px; }
.coach-modal-dialog { width: min(100%, 700px); padding: 34px; }
.coach-modal-content { display: grid; grid-template-columns: 210px 1fr; gap: 30px; align-items: start; }
.coach-modal-picture { display: block; width: 210px; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 18px; background: #ddd; }
.coach-modal-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.coach-modal-content .coach-role { min-height: auto; }
.coach-modal-content h2 { margin-bottom: 10px; font-size: 32px; }
.coach-modal-content ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.coach-modal-content li { margin-bottom: 9px; }
.review-modal-dialog { width: min(100%, 680px); padding: 36px; }
.review-modal-content { padding-right: 28px; }
.review-modal-head { display: grid; grid-template-columns: 58px 1fr; gap: 15px; align-items: center; margin-bottom: 18px; }
.review-modal-head .review-avatar { width: 58px; height: 58px; font-size: 16px; }
.review-modal-head h2 { margin: 0 0 7px; font-size: 30px; }
.review-modal-content .review-stars { margin-top: 0; }
.review-full-text { margin-bottom: 24px; color: #4f545d; font-size: 16px; line-height: 1.65; white-space: pre-line; }
.review-modal-content .button { width: max-content; }
.athlete-modal-dialog { width: min(100%, 880px); padding: 34px; }
.athlete-modal-content { display: grid; grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); gap: 34px; align-items: start; }
.athlete-modal-picture { display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 18px; background: #202329; }
.athlete-modal-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.athlete-modal-content--danil-korostelev .athlete-modal-picture { display: block; background: linear-gradient(145deg, #17191e, #292d35); }
.athlete-modal-content--danil-korostelev .athlete-modal-picture img { object-fit: contain; object-position: center; padding: 12px; }
.athlete-modal-copy { padding: 8px 30px 4px 0; }
.athlete-modal-copy h2 { margin-bottom: 13px; font-size: 34px; }
.athlete-modal-description { margin-bottom: 24px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.athlete-modal-copy h3 { margin-bottom: 13px; font-size: 19px; }
.athlete-modal-copy ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.athlete-modal-copy li { position: relative; padding-left: 23px; color: #4f545d; line-height: 1.55; }
.athlete-modal-copy li::before { position: absolute; top: .55em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--red); content: ""; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; padding-top: calc(var(--header-h) + 52px); background: var(--soft); }
.legal-shell { width: min(100% - 32px, 900px); margin: 0 auto; padding-bottom: 80px; }
.legal-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h1 { font-size: clamp(34px, 5vw, 54px); }
.legal-card h2 { margin-top: 34px; font-size: 24px; }
.legal-card h3 { margin-top: 24px; font-size: 18px; }
.legal-card p, .legal-card li { color: #545963; }
.legal-card li { margin-bottom: 8px; }
.legal-back { display: inline-flex; margin-bottom: 18px; color: var(--red); font-weight: 800; }
.simple-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; height: var(--header-h); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.simple-header .container { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.simple-header img { width: 180px; }
.thank-you-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 20% 20%, rgba(227,6,19,.08), transparent 35%), var(--soft); }
.thank-you-card { width: min(100%, 650px); padding: 48px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); text-align: center; }
.thank-you-card img { width: 190px; margin: 0 auto 34px; }
.thank-you-card h1 { font-size: clamp(34px, 6vw, 54px); }
.thank-you-card p { color: var(--muted); font-size: 18px; }
.thank-you-actions { display: grid; gap: 10px; margin-top: 28px; }

@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 12px; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr); }
  .hero-form-card { grid-column: 1 / -1; display: grid; grid-template-columns: .65fr 1.35fr; gap: 28px; align-items: center; }
  .lead-form-compact { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; align-items: end; }
  .lead-form-compact .field { margin: 0; }
  .lead-form-compact .consent-check, .lead-form-compact .consent-error, .lead-form-compact .form-note, .lead-form-compact .form-status { grid-column: 1 / -1; }
  .lead-form-compact .button { min-width: 170px; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-body p { min-height: auto; }
  .hero-copy h1 { font-size: clamp(38px, 5.2vw, 50px); line-height: 1.06; }
  .directions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-track { grid-auto-columns: calc((100% - 18px) / 2); }
  .coaches-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .coach-summary > p:not(.coach-role) { min-height: 42px; }
}

@media (max-width: 1179px) {
  .hall-of-fame-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .desktop-nav, .header-actions > .button { display: none; }
  .header-inner { justify-content: space-between; }
  .brand { flex-basis: 165px; }
  .brand img { width: 165px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 46px); }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 10px; }
  .hero-media { min-height: 520px; }
  .hero-video { height: 520px; }
  .hero-form-card { grid-template-columns: 1fr; }
  .form-card-head { margin-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card:not(:last-child)::after { display: none; }
  .facility-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .direction-body p { min-height: 84px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 570px; }
  .schedule-price-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-heading { position: static; }
  .kit-grid { grid-template-columns: .8fr 1.2fr; gap: 34px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 767px) {
  :root { --radius: 18px; --radius-lg: 22px; }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); font-size: 15px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .section-tight { padding-top: 64px; padding-bottom: 64px; }
  h1 { font-size: clamp(38px, 11.3vw, 52px); }
  .hero-copy h1 { font-size: clamp(32px, 9.2vw, 44px); line-height: 1.06; }
  h2 { font-size: clamp(30px, 8.4vw, 42px); }
  h3 { font-size: 20px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading > p { font-size: 16px; }
  .site-header, .site-header.is-compact { height: var(--header-h); }
  .brand, .brand img { width: 152px; flex-basis: 152px; }
  .header-actions { gap: 8px; }
  .hero { padding: calc(var(--header-h) + 34px) 0 50px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 span { display: inline; }
  .hero-lead { margin-bottom: 22px; font-size: 17px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; margin-bottom: 24px; }
  .hero-buttons .button { width: 100%; }
  .hero-triggers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 12px; font-size: 11px; }
  .hero-triggers li span { width: 20px; height: 20px; flex-basis: 20px; }
  .hero-media { min-height: 0; }
  .video-frame { border-radius: 21px; transform: none; }
  .hero-video { height: auto; aspect-ratio: 4 / 5; transform: none; object-position: center; }
  .video-badge { right: 12px; bottom: 12px; transform: none; }
  .hero-form-card { display: block; padding: 22px 18px; }
  .form-card-head { margin-bottom: 18px; }
  .lead-form-compact { display: block; }
  .lead-form-compact .field { margin-bottom: 12px; }
  .audience-grid, .progress-grid, .facility-grid, .directions-grid, .results-split { grid-template-columns: 1fr; }
  .audience-grid { gap: 14px; }
  .audience-card { display: grid; grid-template-columns: 42% 58%; min-height: 220px; }
  .card-image { height: 100%; aspect-ratio: auto; }
  .card-body { padding: 25px 18px 18px; }
  .card-number { top: 18px; left: -21px; }
  .card-body h3 { font-size: 19px; }
  .card-body p { font-size: 12px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { min-height: 0; padding: 22px 20px; }
  .step-number { float: left; margin: 0 18px 30px 0; font-size: 36px; }
  .assurance-row { justify-content: flex-start; }
  .progress-card { min-height: 0; padding: 26px; }
  .facility-card { min-height: 0; grid-template-columns: 42% 58%; }
  .facility-card img { height: 100%; min-height: 180px; }
  .facility-card > div { padding: 18px; }
  .direction-card { display: grid; grid-template-columns: 40% 60%; }
  .direction-image { height: 100%; aspect-ratio: auto; }
  .direction-body { padding: 18px; }
  .direction-body h3 { font-size: 19px; }
  .direction-body p { min-height: 0; font-size: 12px; }
  .about-grid { gap: 38px; }
  .about-collage { min-height: 430px; }
  .about-main { right: 32px; bottom: 58px; }
  .about-small { width: 42%; height: 170px; border-width: 5px; }
  .about-mark { top: 16px; width: 160px; padding: 16px; }
  .about-mark strong { font-size: 16px; }
  .about-mark span { font-size: 9px; }
  .about-points > div { grid-template-columns: 100px 1fr; gap: 10px; }
  .coaches-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .coach-summary { padding: 15px 13px 12px; }
  .coach-summary h3 { min-height: 40px; font-size: 16px; }
  .coach-summary > p:not(.coach-role) { min-height: 58px; font-size: 11px; }
  .result-panel { min-height: 0; padding: 28px; }
  .result-panel h3 { font-size: 24px; }
  .hall-of-fame { margin-top: 42px; }
  .hall-of-fame-heading { margin-bottom: 24px; }
  .hall-of-fame-heading > p:last-child { font-size: 15px; }
  .hall-of-fame-grid { grid-template-columns: 1fr; gap: 16px; }
  .athlete-card-body { padding: 22px 20px 18px; }
  .athlete-card h3 { font-size: 23px; }
  .athlete-card-body > p { font-size: 14px; }
  .results-cta { grid-template-columns: 1fr; gap: 20px; padding: 27px 23px; }
  .results-cta::after { right: -25px; opacity: .5; }
  .results-cta .button { width: 100%; min-width: 0; }
  .reviews-section .section-heading { grid-template-columns: 1fr auto; }
  .reviews-section .section-heading > div { grid-column: 1 / -1; }
  .reviews-track { grid-auto-columns: 86%; }
  .review-card { min-height: 250px; }
  .schedule-tabs { padding: 14px; }
  .schedule-list { padding: 5px 15px 15px; }
  .schedule-row { grid-template-columns: 125px 1fr; gap: 16px; padding: 16px 2px; }
  .schedule-row span { font-size: 15px; }
  .schedule-row p { font-size: 12px; }
  .price-card { padding: 22px; }
  .price-main strong { font-size: 42px; }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-image { height: 360px; }
  .kit-list { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr 1fr; }
  .entry-photos figure { height: auto; aspect-ratio: 16 / 9; }
  .map-card iframe { height: 400px; }
  .map-caption { flex-direction: column; gap: 5px; }
  .final-cta { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(20,22,26,.1);
    background: rgba(255,255,255,.96);
    box-shadow: 0 -12px 32px rgba(20,22,26,.12);
    backdrop-filter: blur(15px);
  }
  .mobile-action-bar a, .mobile-action-bar button { display: flex; min-width: 0; min-height: 50px; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 4px 2px; border: 0; border-radius: 10px; color: var(--ink); background: transparent; font-size: 10px; font-weight: 850; cursor: pointer; }
  .mobile-action-bar button { color: var(--white); background: var(--red); }
  .mobile-action-bar span { font-size: 17px; line-height: 1; }
  .modal { padding: 10px; }
  .modal-dialog { margin: 2vh auto; border-radius: 18px; }
  .modal-dialog-form, .coach-modal-dialog, .review-modal-dialog, .athlete-modal-dialog { padding: 24px 18px 22px; }
  .modal-head h2 { font-size: 28px; }
  .coach-modal-content { grid-template-columns: 1fr; }
  .coach-modal-picture { width: 150px; }
  .review-modal-content { padding-right: 0; }
  .athlete-modal-content { grid-template-columns: 1fr; gap: 23px; }
  .athlete-modal-picture { width: min(100%, 300px); margin-inline: auto; }
  .athlete-modal-copy { padding: 0 4px 4px; }
  .athlete-modal-copy h2 { font-size: 28px; }
  .athlete-modal-description { font-size: 15px; }
  .review-modal-head h2 { font-size: 25px; }
  .modal-dialog-success { margin-top: 8vh; padding: 32px 20px; }
  .legal-page { padding-top: calc(var(--header-h) + 34px); }
  .legal-card { padding: 26px 20px; }
  .simple-header img { width: 150px; }
  .thank-you-card { padding: 36px 22px; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 22px, var(--container)); }
  .audience-card, .facility-card, .direction-card { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
  .card-image, .direction-image { height: 200px; }
  .facility-card img { min-height: 210px; }
  .card-number { top: -21px; left: 18px; }
  .coaches-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .coach-role { min-height: 30px; }
  .coach-summary > p:not(.coach-role) { display: none; }
  .contact-links { grid-template-columns: 1fr; }
  .entry-photos { grid-template-columns: 1fr; }
  .entry-photos figure { height: auto; aspect-ratio: 16 / 9; }
  .schedule-row { grid-template-columns: 110px 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video { visibility: hidden; }
  .video-frame { background-image: image-set(url("../images/01-hero-poster.webp") type("image/webp"), url("../images/01-hero-poster.jpg") type("image/jpeg")); background-position: center; background-size: cover; }
  @media (max-width: 767px) {
    .video-frame { background-image: image-set(url("../images/01-hero-poster-mobile.webp") type("image/webp"), url("../images/01-hero-poster-mobile.jpg") type("image/jpeg")); }
  }
}
