/* ============================================
   BORZ SCHOOL — single-page styles
   Palette: black bg, yellow accent (#FDC42B)
   ============================================ */

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

:root {
  --bg: #0b0b0c;
  --bg-2: #131316;
  --bg-3: #1c1c20;
  --line: #2a2a30;
  --text: #f3f3f3;
  --muted: #9a9aa3;
  --yellow: #FDC42B;
  --yellow-2: #ffd75a;
  --green: #66a80f;
  --blue: #4263eb;
  --red: #e03131;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.logo-mark { width: 32px; height: 32px; }
.header__brand { font-size: 22px; color: var(--text); }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav a {
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: var(--yellow); }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(253, 196, 43, 0.1);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(253, 196, 43, 0.3);
  transition: background 0.2s, color 0.2s;
}
.header__phone:hover { background: var(--yellow); color: #161313; }
.header__phone-icon { font-size: 14px; }
@media (max-width: 900px) {
  .header__phone-num { display: none; }
  .header__phone { padding: 8px 10px; }
}
@media (max-width: 540px) {
  .header__phone { display: none; }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    font-size: 16px;
  }
  .nav.is-open { transform: translateY(0); }
  .burger { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, rgba(253, 196, 43, 0.12) 0%, transparent 55%),
              linear-gradient(180deg, #0b0b0c 0%, #121214 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 70%, rgba(253, 196, 43, 0.10) 0%, transparent 45%),
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(253, 196, 43, 0.025) 60px 61px);
  pointer-events: none;
}
.hero__bg::after {
  content: 'BORZ';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(180px, 30vw, 360px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(253, 196, 43, 0.05);
  line-height: 0.85;
  pointer-events: none;
  white-space: nowrap;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.accent { color: var(--yellow); }
.outline {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 640px;
  margin-bottom: 24px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 36px;
  max-width: 720px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.hero__badges li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: #161313;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  opacity: 0.75;
  margin-bottom: 3px;
}
.btn__icon {
  font-size: 22px;
  line-height: 1;
}
.btn--primary {
  background: var(--yellow);
  color: #161313;
  box-shadow: 0 8px 24px rgba(253, 196, 43, 0.25);
}
.btn--primary:hover { background: var(--yellow-2); transform: translateY(-2px); }
.btn--secondary {
  background: #fff;
  color: #161313;
}
.btn--secondary:hover { background: #f1f3f5; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--ghost-light {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--yellow); }
.btn--lg { padding: 18px 26px; font-size: 16px; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn__arrow { font-size: 20px; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 720px;
}
.stat {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--yellow);
  padding: 4px 0 4px 14px;
}
.stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

.hero__marquee {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}
.marquee__track span { display: inline-block; }
.marquee__track span:nth-child(2n+1) { color: rgba(253, 196, 43, 0.55); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== GENERIC SECTION ============== */
.section { padding: 90px 0; }
.section--dark { background: var(--bg); }
.section--yellow {
  background: linear-gradient(180deg, #1a1407 0%, #0b0b0c 100%);
  border-top: 1px solid rgba(253, 196, 43, 0.2);
}
.section--coaches { background: #11140f; }
.section--shop {
  background: linear-gradient(180deg, #18080a 0%, #0b0b0c 100%);
  border-top: 1px solid rgba(224, 49, 49, 0.15);
}
.section--contacts { background: var(--bg-2); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 14px;
}
.section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.section__lead {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
}

/* ============== SECTIONS / DISCIPLINES ============== */
.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .sections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sections-grid { grid-template-columns: 1fr; } }

.discipline {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.discipline:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.discipline__media {
  aspect-ratio: 3 / 2;
  background-color: var(--bg-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.discipline__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(11, 11, 12, 0.55) 100%);
  pointer-events: none;
}
.discipline__big {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.discipline__media--boxing { background: linear-gradient(135deg, #4a0e0e 0%, #8b1414 50%, #1a0707 100%); }
.discipline__media--mma { background: linear-gradient(135deg, #1a3a1f 0%, #2d6b3a 50%, #0a1a0d 100%); }
.discipline__media--karate { background: linear-gradient(135deg, #1c1c20 0%, #3a3a40 50%, #0d0d0f 100%); }
.discipline__media--judo { background: linear-gradient(135deg, #0f2a4f 0%, #1f4e8a 50%, #061327 100%); }
.discipline__media--bjj { background: linear-gradient(135deg, #2d1b4e 0%, #5a3a8a 50%, #110821 100%); }
.discipline__media--grappling { background: linear-gradient(135deg, #4f3a0f 0%, #8a6a1f 50%, #1a1206 100%); }
.discipline__body { padding: 22px; }
.discipline__body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.discipline__body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.discipline__link {
  color: var(--yellow);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============== SCHEDULE ============== */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.tab:hover { color: var(--text); }
.tab.is-active {
  background: var(--yellow);
  color: #161313;
  border-color: var(--yellow);
}

.schedule-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
}
.schedule-filter__btn {
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.schedule-filter__btn:hover {
  color: var(--text);
  border-color: rgba(253, 196, 43, 0.5);
}
.schedule-filter__btn.is-active {
  background: #161313;
  border-color: #161313;
  color: var(--yellow);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .schedule-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .schedule-grid { grid-template-columns: 1fr; } }

.sched-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.sched-card.is-hidden {
  display: none;
}
.sched-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.sched-card header { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.sched-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sched-card__coach {
  font-size: 13px;
  color: var(--yellow);
  font-weight: 500;
}
.sched-card ul { display: flex; flex-direction: column; gap: 10px; }
.sched-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sched-card .days {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.sched-card .time {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.schedule__cta {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
}
.schedule__cta a { color: var(--yellow); font-weight: 600; }
.schedule-empty {
  display: none;
  max-width: 520px;
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}
.schedule-empty.is-visible {
  display: block;
}

/* ============== PRICES ============== */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 800px) { .prices-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price-card header { margin-bottom: 22px; }
.price-card__loc {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.price-card__note {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  flex: 1;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li span small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.price-list li b {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  white-space: nowrap;
}
.price-list__divider {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 6px;
}

/* ============== COACHES ============== */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .coaches-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .coaches-grid { grid-template-columns: 1fr; } }

.coach {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
}
.coach:hover { transform: translateY(-3px); border-color: var(--yellow); }
.coach__photo {
  aspect-ratio: 3 / 4;
  background-color: var(--bg-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.coach__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.coach__photo::before {
  content: 'BORZ';
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}
.coach__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 12, 0.85) 100%);
  pointer-events: none;
}
.coach__monogram {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.coach__photo--boxing { background: linear-gradient(135deg, #4a0e0e 0%, #8b1414 60%, #1a0707 100%); }
.coach__photo--mma { background: linear-gradient(135deg, #1a3a1f 0%, #2d6b3a 60%, #0a1a0d 100%); }
.coach__photo--karate { background: linear-gradient(135deg, #1c1c20 0%, #3a3a40 60%, #0d0d0f 100%); }
.coach__photo--judo { background: linear-gradient(135deg, #0f2a4f 0%, #1f4e8a 60%, #061327 100%); }
.coach__photo--bjj { background: linear-gradient(135deg, #2d1b4e 0%, #5a3a8a 60%, #110821 100%); }
.coach__body { padding: 22px; }
.coach__body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.coach__role {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.coach__achievements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.coach__achievements li {
  position: relative;
  padding-left: 16px;
  line-height: 1.45;
}
.coach__achievements li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ============== GYMS ============== */
.gym {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 24px;
}
.gym__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.gym__head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.gym__addr {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}
.gym__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.gym__actions .btn { padding: 12px 18px; font-size: 14px; }

.gym__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 700px) { .gym__gallery { grid-template-columns: repeat(2, 1fr); } }

.gym__photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
.gym__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gym__photo:hover { transform: scale(1.02); }
.gym__photo--ph {
  background:
    radial-gradient(circle at 30% 30%, rgba(253, 196, 43, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #1c1c20 0%, #0e0e10 100%);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gym__photo--ph span {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.15em;
  color: rgba(253, 196, 43, 0.85);
  text-transform: uppercase;
}

.video-tour {
  margin-top: 36px;
  text-align: center;
}
.video-tour__title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.video-tour__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c4302b 0%, #8b0000 100%);
  color: #fff;
  padding: 26px 40px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.2s;
}
.video-tour__card:hover { transform: translateY(-3px); }
.video-tour__card small { font-weight: 400; opacity: 0.85; font-size: 13px; }
.video-tour__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
}

/* ============== SHOP ============== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .shop-grid { grid-template-columns: 1fr; } }

.merch {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.merch:hover { transform: translateY(-3px); border-color: var(--red); }
.merch__media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  margin-bottom: 22px;
  background: radial-gradient(ellipse at center, rgba(224, 49, 49, 0.18) 0%, transparent 70%), #1a1a1d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.merch__media::before {
  content: 'BORZ';
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.92;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.merch__media--tshirt { background: radial-gradient(ellipse at center, rgba(224, 49, 49, 0.22) 0%, transparent 70%), #f1f3f5; }
.merch__media--tshirt::before { color: #161313; opacity: 0.85; }
.merch__media--beanie { background: radial-gradient(ellipse at center, rgba(224, 49, 49, 0.22) 0%, transparent 70%), #1a1a1d; }
.merch__media--suit { background: radial-gradient(ellipse at center, rgba(224, 49, 49, 0.22) 0%, transparent 70%), #0e0e10; }
.merch__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: #161313;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 4px;
}
.merch h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.merch p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 42px;
}
.merch__price {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  color: var(--yellow);
}
.merch__price span { font-size: 18px; }

.shop-cta {
  text-align: center;
  padding: 36px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}
.shop-cta p { color: var(--muted); margin-bottom: 18px; }
.shop-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============== CONTACTS ============== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .contacts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contacts-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.contact-card--green { background: linear-gradient(135deg, #245f17 0%, #1a3d10 100%); border-color: transparent; }
.contact-card--green:hover { border-color: #94d82d; }
.contact-card--blue { background: linear-gradient(135deg, #1f2f7a 0%, #131e54 100%); border-color: transparent; }
.contact-card--blue:hover { border-color: #6889ff; }

.contact-card__icon {
  font-size: 28px;
  margin-bottom: 6px;
}
.contact-card__label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card--green .contact-card__label,
.contact-card--blue .contact-card__label { color: rgba(255,255,255,0.7); }
.contact-card__value {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.contact-card__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.contact-card--green .contact-card__tag,
.contact-card--blue .contact-card__tag { color: rgba(255,255,255,0.65); }

/* ============== FOOTER ============== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 0 100px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  display: block;
}
.footer__brand span {
  font-size: 13px;
  color: var(--muted);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}
.footer__nav a:hover { color: var(--yellow); }
.footer__copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============== FAB (floating CTA — brand) ============== */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: #161313;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(253, 196, 43, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.fab:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--yellow-2);
  box-shadow: 0 14px 36px rgba(253, 196, 43, 0.45);
}
.fab__icon { font-size: 18px; }
@media (max-width: 540px) {
  .fab__label { display: none; }
  .fab { padding: 16px; }
  .fab__icon { font-size: 22px; }
}

/* ============== MODAL (gym picker) ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  max-width: 580px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: var(--yellow); color: #161313; }
.modal__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.modal__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.modal__sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.modal__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.modal__note a { color: var(--yellow); font-weight: 600; }

.lead-form {
  display: grid;
  gap: 14px;
}
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lead-form .lead-form__grid--single {
  grid-template-columns: 1fr !important;
}
.lead-form__grid.is-hidden,
.lead-check.is-hidden {
  display: none;
}
.lead-field {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.lead-field span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-3);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-field textarea {
  resize: vertical;
  min-height: 86px;
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 196, 43, 0.14);
}
.lead-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.lead-check input {
  margin-top: 2px;
  accent-color: var(--yellow);
}
.lead-check a {
  color: var(--yellow);
  font-weight: 700;
}
.lead-form__status {
  min-height: 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.lead-form__legal {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.lead-form__legal a {
  color: var(--yellow);
  font-weight: 700;
}
.lead-form__status.is-success { color: #7bd88f; }
.lead-form__status.is-error { color: #ff8c8c; }

@media (max-width: 620px) {
  .modal__dialog {
    padding: 30px 18px;
  }
}

.gym-picker {
  display: grid;
  gap: 12px;
}
.gym-pick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
  position: relative;
}
.gym-pick:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: #1f1f24;
}
.gym-pick--accent {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(253, 196, 43, 0.08) 0%, var(--bg-3) 100%);
}
.gym-pick__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--yellow);
  color: #161313;
  margin-bottom: 2px;
}
.gym-pick__badge--muted {
  background: var(--bg-2);
  color: var(--muted);
  border: 1px solid var(--line);
}
.gym-pick__name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.gym-pick__addr {
  font-size: 13px;
  color: var(--muted);
}
.gym-pick__cta {
  font-size: 13px;
  color: var(--yellow);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

body.modal-open { overflow: hidden; }

/* ============== SCHEDULE TAGS + LEGEND ============== */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1.4;
}
.tag--kids   { background: rgba(102, 168, 15, 0.18); color: #94d82d; border: 1px solid rgba(102, 168, 15, 0.3); }
.tag--adult  { background: rgba(253, 196, 43, 0.15); color: var(--yellow); border: 1px solid rgba(253, 196, 43, 0.3); }
.tag--mixed  { background: rgba(99, 154, 255, 0.15); color: #6db1ff; border: 1px solid rgba(99, 154, 255, 0.3); }
.tag--pro    { background: rgba(224, 49, 49, 0.18); color: #ff6b6b; border: 1px solid rgba(224, 49, 49, 0.3); }

.sched-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

/* ============== PRICES — extra rows ============== */
.price-list b.muted {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: underline dotted;
  text-underline-offset: 4px;
}
.price-list__divider small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.prices-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== HOW-TO (first training steps) ============== */
.section--howto {
  background: linear-gradient(180deg, #0e0f12 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.howto {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: howto;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 900px) { .howto { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .howto { grid-template-columns: 1fr; } }

.howto__step {
  position: relative;
  padding: 26px 22px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.howto__step:hover { border-color: var(--yellow); transform: translateY(-3px); }
.howto__num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(253, 196, 43, 0.25);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.howto__step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.howto__step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.howto__cta {
  text-align: center;
  margin-top: 30px;
}

/* ============== COACH GROUPS (Главные / Команда) ============== */
.coaches-group {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--yellow);
}
.coaches-group:first-of-type { margin-top: 0; }
.coach__groups {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}

/* ============== FAQ ============== */
.container--narrow {
  max-width: 820px;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item:hover { border-color: var(--yellow); }
.faq__item[open] { border-color: var(--yellow); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px 18px 22px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--yellow);
  font-weight: 400;
  transition: transform 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq__item p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.faq__more {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
}
.faq__more a { color: var(--yellow); font-weight: 600; }

/* ============== CONTACTS — primary + socials ============== */
.contacts-grid--primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contacts-grid--primary { grid-template-columns: 1fr; } }

.contacts-divider {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 36px 0 18px;
  position: relative;
}
.contacts-divider::before,
.contacts-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--line);
}
.contacts-divider::before { left: calc(50% - 140px); }
.contacts-divider::after { right: calc(50% - 140px); }

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.social-pill small {
  color: var(--muted);
  font-weight: 400;
  margin-left: 2px;
}
.social-pill:hover {
  border-color: var(--yellow);
  background: var(--bg-2);
}
