:root {
  --bg: #0e1014;
  --bg-2: #0e1014;
  --card: rgba(16, 18, 22, 0.78);
  --ink: #f3efe8;
  --muted: #b3b1ab;
  --gold: #c9a96a;
  --gold-2: #e2c889;
  --line: rgba(201, 169, 106, 0.22);
  --green: #6f8f63;
  --yellow: #c9a227;
  --blue: #6e8aa8;
  --red: #b5524a;
  --violet: #8a6ea8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Manrope, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: Unbounded, sans-serif;
  letter-spacing: -0.03em;
  margin: 0 0 0.4em;
}
p { color: var(--muted); line-height: 1.6; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 42% at 48% -8%, rgba(201, 169, 106, 0.1), transparent 56%),
    radial-gradient(ellipse 48% 36% at 92% 108%, rgba(0, 0, 0, 0.55), transparent 52%),
    linear-gradient(165deg, #16181d 0%, #0e1014 48%, #0a0b0d 100%);
}
.page-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 28% at 18% 12%, rgba(255, 255, 255, 0.055), transparent 52%);
  pointer-events: none;
}
.page-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("../img/asphalt.svg");
  background-size: 240px 240px;
  pointer-events: none;
}
.page-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.has-video-bg .page-bg {
  background: #101216;
  overflow: hidden;
}
.has-video-bg .page-bg-video {
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
}
.has-video-bg .site-header {
  position: relative;
  z-index: 5;
}
.has-video-bg .page-bg:before,
.has-video-bg .page-bg:after {
  z-index: 1;
}
.has-video-bg .page-bg:before {
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.22) 0%, rgba(16, 18, 22, 0.28) 42%, rgba(16, 18, 22, 0.52) 100%);
}
.has-video-bg .page-bg:after { opacity: 0.22; }
.has-video-bg .hall-card,
.has-video-bg .page-hero .crumbs {
  background: rgba(18, 20, 24, 0.72);
}
@media (min-width: 861px) {
  .has-video-bg .page-bg-video {
    top: 108px;
    right: max(16px, calc((100vw - 1120px) / 2));
    bottom: 32px;
    left: auto;
    width: auto;
    height: calc(100% - 140px);
    max-width: min(42vw, 520px);
    object-fit: contain;
    object-position: right center;
  }
  .has-video-bg .page-bg:before {
    background: linear-gradient(90deg,
      rgba(16, 18, 22, 0.92) 0%,
      rgba(16, 18, 22, 0.74) 36%,
      rgba(16, 18, 22, 0.28) 62%,
      rgba(16, 18, 22, 0.1) 100%);
  }
  .has-video-bg .page-hero,
  .has-video-bg .block-head {
    max-width: 560px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-bg-video { display: none; }
}

.site-header, .site-footer, main { width: min(1120px, calc(100% - 32px)); margin-left: auto; margin-right: auto; }
.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0 14px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  display: block;
  width: auto;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}
.logo-img-footer {
  height: 168px;
}
.nav { display: flex; gap: 12px; margin-left: auto; align-items: center; }
.nav a { color: var(--muted); font-weight: 600; white-space: nowrap; }
.nav a:hover, .nav-phone { color: var(--ink); }
.nav-cta { display: none; }
.header-cta { margin-left: 4px; padding: 0 14px; font-size: 14px; white-space: nowrap; }
@media (max-width: 1180px) {
  .header-cta { display: none; }
}
.header-messengers { margin-left: 4px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.nav-toggle:before { content: "☰"; font-size: 20px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px;
  font-weight: 700; border: 1px solid transparent;
  background: transparent;
  color: inherit;
}
.btn-gold { background: var(--gold); color: #101420; }
.btn-ghost { border-color: var(--line); color: var(--ink); }

.hero, .page-hero, .block { padding: 28px 0 56px; }
.hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 28px; align-items: start; }
.hero-copy { min-width: 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(36px, 6vw, 68px); line-height: 0.95; }
.hero-title {
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #f3ead4;
}
.hero-title > span {
  display: block;
  white-space: normal;
}
.lead { font-size: 18px; max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-panel {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px;
  display: grid;
  gap: 18px;
}
.stats-band { padding-top: 0; }
.stats-band .hero-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  align-items: center;
  gap: 18px 24px;
}
.stats-band .hero-note {
  border-top: 0;
  padding-top: 0;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.stat b { display: block; font-family: Unbounded, sans-serif; font-size: 28px; color: var(--gold-2); }
.stat-age b { font-size: 22px; line-height: 1.15; white-space: nowrap; }
.hero-note { color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
.hero-note .phone-stack { margin-top: 8px; }

.phone-stack { display: grid; gap: 8px; }
.phone-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.phone-num { font-weight: 700; }
.phone-stack.is-big .phone-num { font-size: 22px; font-weight: 800; }
.msg-icons { display: inline-flex; align-items: center; gap: 6px; }
.msg-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.msg-icon img { width: 100%; height: 100%; display: block; }
.header-messengers .msg-icon { width: 36px; height: 36px; }

.block-head { max-width: 640px; margin-bottom: 28px; }
.card-grid, .club-grid, .group-grid, .price-row {
  display: grid;
  gap: 16px;
}
.card-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.sport-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.sport-card {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 22px;
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--sport, var(--gold)) 42%, var(--line));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sport, var(--gold)) 14%, transparent);
  border-top: 3px solid var(--sport, var(--gold));
}
.sport-card:hover {
  border-color: color-mix(in srgb, var(--sport, var(--gold)) 70%, var(--line));
  background: color-mix(in srgb, var(--sport, var(--gold)) 8%, var(--card));
}
.sport-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 28px;
  line-height: 1;
  border: 1px solid color-mix(in srgb, var(--sport, var(--gold)) 45%, var(--line));
  background: color-mix(in srgb, var(--sport, var(--gold)) 12%, transparent);
}
.sport-icon-mini {
  width: 34px;
  height: 34px;
  font-size: 18px;
  flex-shrink: 0;
}
.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.schedule-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.schedule-tabs button.is-on {
  background: var(--gold);
  color: #101420;
  border-color: var(--gold);
}
.schedule-panel { display: none; }
.schedule-panel.is-on { display: block; }
.schedule-club-note { margin: 0 0 14px; }
.schedule-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--card);
}
.schedule-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
  font-size: 13px;
}
.schedule-table th,
.schedule-table td {
  border: 1px solid var(--line);
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
}
.schedule-table thead th {
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(201, 169, 106, 0.08);
}
.schedule-table tbody th {
  text-align: left;
  font-weight: 600;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.02);
}
.schedule-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.schedule-group b { display: block; font-size: 12px; color: var(--gold); }
.schedule-group small { display: block; color: var(--muted); font-weight: 500; }
.schedule-table tbody tr[class^="tone-"] { border-top: 1px solid var(--line); }
.schedule-table .slot {
  display: inline-block;
  padding: 5px 8px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--tone, var(--gold)) 45%, var(--line));
  background: color-mix(in srgb, var(--tone, var(--gold)) 16%, transparent);
  color: var(--ink);
}
.schedule-table tr.tone-green { --tone: var(--green); }
.schedule-table tr.tone-yellow { --tone: var(--yellow); }
.schedule-table tr.tone-blue { --tone: var(--blue); }
.schedule-table tr.tone-red { --tone: var(--red); }
.schedule-table tr.tone-violet { --tone: var(--violet); }
.schedule-table tr.tone-gold { --tone: var(--gold); }
#raspisanie { scroll-margin-top: 16px; }
.sport-card h3 { margin-top: 16px; font-size: 18px; line-height: 1.2; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.crumbs a { color: var(--gold-2); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { opacity: 0.45; }
.hall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.hall-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--sport, var(--gold)) 42%, var(--line));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sport, var(--gold)) 14%, transparent);
  border-top: 3px solid var(--sport, var(--gold));
}
.hall-card:hover {
  border-color: color-mix(in srgb, var(--sport, var(--gold)) 70%, var(--line));
  background: color-mix(in srgb, var(--sport, var(--gold)) 8%, var(--card));
}
.hall-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hall-card h2 { margin: 14px 0 8px; font-size: 22px; line-height: 1.15; }
.hall-card p { margin: 0; flex: 1; }
.hall-go {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold-2);
  font-size: 14px;
}
.sport-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sport-section-head h2 { margin: 0; }
.sport-section-head p { margin: 6px 0 0; }
.sport-karate { --sport: var(--gold); }
.sport-wrestling { --sport: var(--blue); }
.sport-gymnastics { --sport: var(--violet); }
.sport-boxing { --sport: var(--red); }
.sport-selfdefense { --sport: var(--yellow); }
.sport-grappling { --sport: var(--green); }
.sport-kickboxing { --sport: #d4894a; }
.sport-personal { --sport: var(--gold-2); }
.sport-section {
  border: 1px solid color-mix(in srgb, var(--sport, var(--gold)) 28%, var(--line));
  padding: 28px 24px 40px;
  background: color-mix(in srgb, var(--sport, var(--gold)) 5%, var(--card));
}
.club-grid, .group-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.price-row { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 28px; }

.club-card, .group-card, .price-card, .aside-card, .contact-card, .enroll-form {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 22px;
}
.club-card h3 { margin-top: 18px; }
.club-card span, .price-card span { color: var(--gold); font-size: 13px; font-weight: 700; }
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: start; }
.reasons { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.reasons li { color: var(--muted); }
.reasons b { color: var(--ink); }

.price-value { display: flex; gap: 10px; align-items: baseline; color: var(--ink); }
.price-value s { color: var(--muted); }
.price-card.is-promo { border-color: rgba(214, 178, 94, 0.5); }
.pass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) {
  .pass-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pass-grid { grid-template-columns: 1fr; }
}
.pass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 26px 22px 22px;
  text-align: center;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 106, 0.12), transparent 58%),
    color-mix(in srgb, var(--card) 88%, #0e1013);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--gold) 22%, transparent);
}
.pass-card:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("../img/asphalt.svg");
  background-size: 180px 180px;
  pointer-events: none;
}
.pass-card > * { position: relative; }
.pass-card.is-hit,
.pass-card.is-promo {
  border-color: color-mix(in srgb, var(--gold) 80%, var(--line));
}
.pass-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pass-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.15;
  color: var(--gold-2);
}
.pass-card p { margin: 0; }
.pass-price {
  margin: 18px 0 8px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.pass-price s { color: var(--muted); font-size: 14px; }
.pass-price b {
  font-family: Unbounded, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.pass-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pass-card .btn { width: 100%; margin-top: auto; }
.pass-note { margin-top: 18px; }
.pass-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .pass-grid-3 { grid-template-columns: 1fr; }
}
.pass-perks {
  list-style: none;
  margin: 8px 0 18px;
  padding: 0;
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}
.pass-perks li {
  position: relative;
  padding: 7px 0 7px 16px;
  border-top: 1px solid var(--line);
}
.pass-perks li:first-child { border-top: 0; }
.pass-perks li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.group-block h3 { margin: 8px 0 14px; }
.group-card header { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.group-card ul { list-style: none; padding: 18px 0 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.tone-green { border-top: 3px solid var(--green); }
.tone-yellow { border-top: 3px solid var(--yellow); }
.tone-blue { border-top: 3px solid var(--blue); }
.tone-red { border-top: 3px solid var(--red); }
.tone-violet { border-top: 3px solid var(--violet); }
.muted { color: var(--muted); }
.big-link { display: block; font-size: 22px; font-weight: 800; margin: 8px 0; }

.enroll { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.enroll-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enroll-form label { display: grid; gap: 8px; font-weight: 600; }
.enroll-form .full, .full-btn { grid-column: 1 / -1; }
.field-input, select, textarea {
  width: 100%;
  background: #181b20;
  color: var(--ink);
  border: 1px solid var(--line);
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
}
.form-error { color: #e7a39d; grid-column: 1 / -1; }
.consent-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  line-height: 1.45;
}
.consent-check input,
.consent-box {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.consent-check a { color: var(--gold-2); text-decoration: underline; }
.consent-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}
.legal { max-width: 72ch; padding-bottom: 64px; }
.legal h2 { font-size: 20px; margin: 1.6em 0 0.5em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin: 0.35em 0; }
.legal a { color: var(--gold-2); text-decoration: underline; }
.flash-wrap { padding-top: 8px; }
.flash { border: 1px solid rgba(214,178,94,.45); padding: 12px 16px; color: var(--gold-2); }

.site-footer { padding: 48px 0 28px; border-top: 1px solid var(--line); margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer-grid a, .footer-bottom a { display: block; color: var(--muted); margin-top: 8px; }
.footer-grid .phone-stack { margin-top: 8px; }
.footer-grid .phone-line a,
.footer-grid .msg-icon { display: inline-flex; margin-top: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: 13px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { display: inline; margin-top: 0; }

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  background: #16181c;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; color: var(--ink); }
.cookie-bar a { color: var(--gold-2); text-decoration: underline; }
.cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.trainer-grid, .photo-grid {
  display: grid;
  gap: 16px;
}
.trainer-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.photo-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.hall-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}
.hall-grid img { height: 100%; filter: none; }
.hall-grid img:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.trainers-band {
  background:
    radial-gradient(ellipse at 50% 28%, rgba(245, 236, 220, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(48, 52, 58, 0.55) 0%, rgba(28, 30, 34, 0.28) 100%);
  border-radius: 28px;
  padding: 28px 18px 12px;
}
.trainer-card {
  border: none;
  background: transparent;
  overflow: visible;
  padding: 0 0 12px;
  text-align: center;
}
.trainer-card h3, .trainer-card p { padding: 0 8px; }
.trainer-photo {
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  color: var(--gold);
  font-family: Unbounded, sans-serif;
  font-size: 42px;
}
.trainer-photo img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.28));
}
.trainer-photo.big {
  height: 560px;
  width: min(420px, 100%);
}
.trainer-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(245, 236, 220, 0.22), transparent 58%);
  border-radius: 28px;
  padding-left: 12px;
  padding-right: 12px;
}

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

.location-grid { display: grid; gap: 18px; }
.location-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
  align-items: stretch;
}
.location-copy span { color: var(--gold); font-size: 13px; font-weight: 700; }
.location-copy h3 { margin: 8px 0 6px; }
.location-copy h3 a:hover { color: var(--gold-2); }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.map-actions .btn { min-height: 42px; padding: 0 16px; font-size: 14px; }
.club-map {
  min-height: 240px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #121416;
}
.club-map iframe,
.club-map-wide iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}
.club-map-wide { min-height: 360px; }
.club-map-wide iframe { min-height: 360px; }
@media (max-width: 1100px) {
  .stats-band .hero-panel { grid-template-columns: 1fr 1fr; }
  .stats-band .hero-note {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
}
@media (max-width: 860px) {
  .logo-img { height: 72px; }
  .logo-img-footer { height: 120px; }
  .has-video-bg .page-bg-video {
    top: 80px;
    height: calc(100% - 80px);
  }
  .trainer-hero { grid-template-columns: 1fr; }
  .trainer-photo { height: 360px; }
  .trainer-photo.big { height: 480px; width: 100%; }
  .hero, .split, .enroll, .footer-grid, .location-card { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(22px, 7.6vw, 40px); }
  .stats-band .hero-panel { grid-template-columns: 1fr; }
  .stats-band .hero-note {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .nav { gap: 12px; }
  .nav, .header-cta { display: none; }
  .nav-cta { display: block; color: var(--gold-2); }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px); left: 16px; right: 16px;
    background: #1c1f24;
    padding: 16px;
    border: 1px solid var(--line);
    z-index: 20;
  }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header { position: relative; }
  .enroll-form { grid-template-columns: 1fr; }
}

.compare-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #c9a96a;
  color: #101420;
  font-weight: 700;
  font-size: 14px;
}
.compare-bar a,
.compare-bar button {
  color: #101420;
  border: 1px solid #101420;
  background: transparent;
  min-height: 34px;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.compare-bar a.is-on,
.compare-bar button.is-on {
  background: #101420;
  color: #c9a96a;
}

body.look-a {
  --bg: #0e1014;
  --card: rgba(16, 18, 22, 0.78);
  --line: rgba(201, 169, 106, 0.22);
}
body.look-a .page-bg {
  background:
    radial-gradient(ellipse 70% 42% at 48% -8%, rgba(201, 169, 106, 0.1), transparent 56%),
    radial-gradient(ellipse 48% 36% at 92% 108%, rgba(0, 0, 0, 0.55), transparent 52%),
    linear-gradient(165deg, #16181d 0%, #0e1014 48%, #0a0b0d 100%);
}
body.look-a .page-bg:after { opacity: 0.18; }
body.look-a .hero-title {
  color: #f3ead4;
}
[hidden] { display: none !important; }
.hero-look-a {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
  gap: 28px;
}
body.look-a .hero-title > span { white-space: normal; }
.hero-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101216;
}
.hero-visual > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 14px;
}
.hero-facts span { color: var(--muted); font-weight: 600; }
.sport-card-photo {
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
.sport-card-photo > img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}
.sport-card-photo .sport-card-copy { padding: 16px 18px 18px; }
.sport-card-photo h3 { margin-top: 0; }
.aside-visual {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}
.aside-visual > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.aside-visual .aside-card {
  border: 0;
  background: transparent;
}
@media (max-width: 860px) {
  .hero-look-a { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 5 / 4; max-height: none; }
  .sport-card-photo > img { height: 150px; }
}
