/*
Theme Name: Alex Theme 1
Author: Alex Project
Description: Alex Sports Club production layout.
Version: 1.0.0
Requires at least: 6.0
Text Domain: alex-theme-1
*/

@font-face {
  font-family: "Montserrat";
  src: url("../static-layout/assets/fonts/montserrat/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../static-layout/assets/fonts/montserrat/Montserrat-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: #131313;
  --white: #f8f8f8;
  --gray: #d4d8d9;
  --card: #d9d9d9;
  --orange: #ff6900;
  --orange-soft: #ff8b2f;
  --orange-glow: rgba(255, 105, 0, 0.34);
  --text: #101828;
  --muted: #667085;
  --field: #d0d5dd;
  --ink: #344054;
  --surface: #ffffff;
  --soft: #f3f4f5;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 14px 34px rgba(19, 19, 19, 0.1);
  --shadow-md: 0 24px 58px rgba(19, 19, 19, 0.18);
  --shadow-glow: 0 18px 42px rgba(255, 105, 0, 0.24);
  --container: 1240px;
  --section-space: clamp(64px, 8vw, 112px);
  --bs-body-font-family: "Montserrat", "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  --bs-body-bg: var(--white);
  --bs-body-color: var(--black);
  --bs-font-sans-serif: var(--bs-body-font-family);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 105, 0, 0.11), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(19, 19, 19, 0.08), transparent 28rem),
    var(--white);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--orange);
  color: #fff;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffba7a);
  box-shadow: 0 0 18px var(--orange-glow);
  transform-origin: left center;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.card,
.btn,
.main-nav a,
.nav-link,
.outline-button {
  min-width: 0;
}

.card,
.card *,
.btn,
.outline-button {
  overflow-wrap: anywhere;
}

.container,
.container-xl {
  --bs-gutter-x: clamp(32px, 6vw, 120px);
}

:where(h1, h2, h3, h4, .btn, .nav-link) {
  letter-spacing: 0;
}

:where(.card, .btn, .form-control, .form-select, .dropdown-menu) {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.site-header {
  min-height: 72px;
  padding-block: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.94), rgba(19, 19, 19, 0.82)),
    var(--black);
  backdrop-filter: blur(16px);
  color: var(--white);
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.site-header .container-fluid {
  --bs-gutter-x: clamp(32px, 6vw, 120px);
}

.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  min-height: 68px;
  padding-block: 6px;
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.94), rgba(19, 19, 19, 0.82)),
    var(--black);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.site-header .brand {
  width: clamp(52px, 5vw, 70px);
  height: clamp(52px, 5vw, 70px);
  flex: 0 0 auto;
}

.home-page .site-header .brand {
  width: 64px;
  height: 64px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer .brand {
  display: inline-block;
}

.main-nav {
  min-width: 0;
  gap: clamp(12px, 1.35vw, 24px);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 650;
  line-height: 1.2;
}

.main-nav a,
.main-nav .nav-link {
  color: var(--white);
  white-space: nowrap;
}

.site-header .active-nav-link {
  text-decoration: none;
}

.main-nav .nav-link {
  padding: 0;
  text-transform: uppercase;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  color: var(--orange);
}

.site-header .dropdown-menu {
  --bs-dropdown-min-width: 14rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 20px;
  --bs-dropdown-link-active-bg: transparent;
  --bs-dropdown-link-active-color: var(--white);
  --bs-dropdown-link-hover-bg: transparent;
  --bs-dropdown-link-hover-color: var(--white);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  background: var(--black);
  text-transform: none;
}

.site-header .dropdown-item {
  padding: 7px 28px;
  color: var(--white);
}

.desktop-nav {
  font-size: 16px;
}

.desktop-nav .nav-link {
  min-height: 44px;
  padding: 10px 2px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus,
.desktop-nav .nav-link.active {
  border-bottom-color: var(--orange);
  background: transparent;
  color: var(--orange);
}

.site-header .desktop-nav .dropdown-menu {
  margin-top: 12px;
  padding-block: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.site-header .desktop-nav .dropdown-item {
  padding-block: 9px;
  font-size: 14px;
}

.header-actions {
  gap: clamp(14px, 2.4vw, 34px);
  font-size: clamp(14px, 1.2vw, 18px);
}

.outline-button {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 9px 19px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-weight: 750;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease,
    color 0.34s ease;
}

.outline-button::before {
  position: absolute;
  inset: -40% auto -40% -28%;
  width: 34%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: translateX(-220%) skewX(-18deg);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.outline-button:hover,
.outline-button:focus {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #fff;
  transform: translateY(-3px) scale(1.025);
  box-shadow: var(--shadow-glow);
}

.outline-button:hover::before,
.outline-button:focus::before {
  transform: translateX(430%) skewX(-18deg);
}

.phone {
  white-space: nowrap;
  text-transform: none;
}

@media (max-width: 1199.98px) {
  .site-header .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(13, 13, 13, 0.96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  }

  .main-nav {
    gap: 8px;
    padding-top: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .main-nav .nav-item,
  .main-nav>.nav-link {
    width: 100%;
  }

  .main-nav .nav-link {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    white-space: normal;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link:focus,
  .main-nav .nav-link.active {
    border-bottom-color: rgba(255, 105, 0, 0.65);
    background: transparent;
    color: var(--orange);
  }

  .site-header .dropdown-menu {
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .site-header .dropdown-item {
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(248, 248, 248, 0.84);
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
  }

  .site-header .dropdown-item:hover,
  .site-header .dropdown-item:focus,
  .site-header .dropdown-item.active {
    background: rgba(255, 105, 0, 0.12);
  }

  .header-actions {
    align-items: stretch !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .header-actions .outline-button {
    width: 100%;
    min-height: 48px;
  }

  .header-actions .phone {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 248, 248, 0.88);
    text-align: center;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #0b0d0e;
}

.hero-fallback {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 105, 0, 0.28), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(255, 105, 0, 0.12), transparent 32%),
    linear-gradient(120deg, #080a0b 0%, #17191b 54%, #0b0d0e 100%);
}

.hero-fallback::after {
  position: absolute;
  z-index: 0;
  inset: 9% 8% 9% 48%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 105, 0, 0.05),
    0 0 0 92px rgba(255, 255, 255, 0.025),
    inset 0 0 80px rgba(255, 105, 0, 0.12);
  content: "";
  transform: rotate(-18deg) scaleY(0.72);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-background {
  z-index: 0;
  filter: blur(40px) brightness(0.3) saturate(0.8);
  opacity: 0.62;
  transform: scale(1.12);
}

.hero-video:not(.hero-video-background) {
  z-index: 1;
  left: 50%;
  right: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.98) saturate(1.08);
  transform: translateX(-50%);
  border-radius: 4px;
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.62);
}

.hero-wide .hero-video-background {
  filter: blur(26px) brightness(0.34) saturate(0.9);
  opacity: 0.72;
  transform: scale(1.06);
}

.hero-wide .hero-video:not(.hero-video-background) {
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
  transform: none;
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
  box-shadow: none;
}

.hero-wide::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.52) 30%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3));
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26));
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(24px, 8vw, 120px);
  width: min(38vw, 460px);
  transform: translateY(-50%);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  max-width: 380px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.42;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255, 105, 0, 0.24);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.hero-cta::before {
  position: absolute;
  inset: -40% auto -40% -28%;
  width: 34%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: translateX(-220%) skewX(-18deg);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-rate {
  position: absolute;
  z-index: 3;
  top: clamp(88px, 13vh, 148px);
  right: clamp(20px, 6vw, 90px);
  display: block;
  width: 104px;
  height: 154px;
  overflow: hidden;
  border-radius: 18px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.hero-rate img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 620px) {
  .hero-rate {
    top: 86px;
    right: 18px;
    width: 76px;
    height: 112px;
    border-radius: 14px;
  }
}

.hero-cta:hover,
.hero-cta:focus {
  border-color: var(--orange-soft);
  background: var(--orange-soft);
  color: #fff;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 16px 38px rgba(255, 105, 0, 0.38);
}

.hero-cta:hover::before,
.hero-cta:focus::before {
  transform: translateX(430%) skewX(-18deg);
}

.hero-highlights {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 8vw, 120px);
  bottom: 28px;
  left: clamp(24px, 8vw, 120px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-highlights span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.advantages {
  position: relative;
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: none;
}

.home-featured-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.home-featured-title {
  margin: 0;
  color: #171717;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 850;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-featured-link {
  flex: 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.home-featured-link:hover,
.home-featured-link:focus-visible {
  color: var(--orange);
}

.home-featured-section.home-directions-section {
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.82) 0 28%, transparent 28% 67%, rgba(255, 255, 255, 0.18) 67%),
    linear-gradient(155deg, transparent 0 42%, rgba(22, 53, 66, 0.12) 42% 58%, transparent 58%),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 78%, rgba(46, 132, 165, 0.2), transparent 28rem),
    linear-gradient(135deg, #c5d1d5, #aebdc3 54%, #9aaeb6);
  background-attachment: scroll;
  background-position: center;
  background-size: auto;
}

.home-directions-section .home-featured-title {
  color: #17252b;
}

.home-directions-section .home-featured-link {
  color: #17252b;
}

.home-directions-section .home-featured-link:hover,
.home-directions-section .home-featured-link:focus-visible {
  color: var(--orange);
}

.home-people-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 105, 0, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(31, 66, 82, 0.12), transparent 28rem),
    linear-gradient(135deg, #eef2f3, #dfe6e8 56%, #d1dade);
  background-size: cover;
}

.home-people-section > .container {
  position: relative;
  z-index: 1;
}

.home-people-lead {
  max-width: 360px;
  margin: 0;
  color: rgba(19, 19, 19, 0.56);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.home-people-subheading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.16);
}

.home-people-subheading h3 {
  margin: 0;
  color: #17252b;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.home-people-subsection {
  margin-top: clamp(58px, 7vw, 86px);
  padding-top: clamp(34px, 4vw, 52px);
  border-top: 1px solid rgba(19, 19, 19, 0.16);
}

.home-people-section .home-coach-card {
  border: 1px solid rgba(23, 37, 43, 0.12);
  background: linear-gradient(145deg, #dce5e8, #c6d2d6);
  box-shadow: 0 18px 38px rgba(23, 37, 43, 0.12);
}

.home-people-section .home-coach-card img {
  background: linear-gradient(145deg, #f8fafb, #d7e0e3);
}

.home-people-section .home-coach-card .coach-card-body {
  border: 1px solid rgba(23, 37, 43, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    #eef2f3;
}

:where(.athletes-section h1,
  .reviews-panel h1,
  .coaches-section h1,
  .schedule-heading h1,
  .events-section h1,
  .documents-heading h1,
  .contacts-section h1,
  .history-hero h1) {
  font-weight: 850;
  line-height: 1.06;
  text-wrap: balance;
  text-transform: none;
}

.advantage-grid {
  margin-top: clamp(40px, 6vw, 82px);
}

.advantage-card {
  position: relative;
  min-width: 0;
  min-height: 260px;
  gap: clamp(18px, 2.4vw, 32px);
  padding: clamp(24px, 3vw, 38px);
  border-radius: clamp(20px, 2.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #e8ecee, #cfd5d7);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease,
    background 0.42s ease;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(255, 105, 0, 0.1), transparent 44%);
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  pointer-events: none;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.2), transparent 68%);
  opacity: 0.82;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  pointer-events: none;
}

.advantage-image {
  --icon-size: clamp(86px, 12vw, 150px);
  position: relative;
  z-index: 1;
  width: var(--icon-size);
  aspect-ratio: 1;
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.42s ease;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.42s ease;
}

.advantage-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: none;
}

.advantage-card:nth-child(-n + 2) h3 {
  color: var(--orange);
  font-size: clamp(19px, 1.75vw, 25px);
}

.advantage-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: rgba(19, 19, 19, 0.68);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 600;
  line-height: 1.38;
  text-transform: none;
}

@media (hover: hover) {
  .advantage-card:hover {
    transform: translateY(-8px) scale(1.012);
    border-color: rgba(255, 105, 0, 0.38);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.14)),
      linear-gradient(135deg, #f0f3f4, #d6dcde);
    box-shadow:
      0 26px 58px rgba(19, 19, 19, 0.18),
      0 0 34px rgba(255, 105, 0, 0.14);
  }

  .advantage-card:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  .advantage-card:hover::after {
    opacity: 1;
    transform: translate(-12px, -10px) scale(1.16);
  }

  .advantage-card:hover .advantage-image {
    transform: translateY(-4px) rotate(-2deg);
    filter: drop-shadow(0 16px 24px rgba(255, 105, 0, 0.18));
  }

  .advantage-card:hover .advantage-image img {
    transform: scale(1.04);
  }
}

.partners {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 105, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, #171717, #242424 52%, #111);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 18px clamp(16px, 4vw, 56px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-attachment: fixed;
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.partners h2 {
  margin-bottom: clamp(42px, 5.5vw, 70px);
  color: #fff;
  text-align: center;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.partner-card {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(180px, 17vw, 220px);
  padding: clamp(34px, 4vw, 48px) clamp(26px, 3.5vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -58px auto;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.34), transparent 68%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.partner-list img {
  width: 100%;
  max-height: 166px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.partner-list .partner-round {
  width: clamp(118px, 13vw, 166px);
  height: clamp(118px, 13vw, 166px);
  border-radius: 50%;
}

@media (hover: hover) {
  .partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 0, 0.52);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 24px 64px rgba(0, 0, 0, 0.28),
      0 0 34px rgba(255, 105, 0, 0.18);
  }

  .partner-card:hover::after {
    opacity: 1;
  }

  .partner-card:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.3));
  }
}

.visit {
  padding: clamp(32px, 5vw, 58px) clamp(16px, 4vw, 24px) clamp(64px, 6vw, 80px);
}

.visit-form {
  width: min(960px, 100%);
  padding: clamp(48px, 6.25vw, 90px) clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    #fff;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-radius: 28px;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

.visit-form h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.12;
}

.form-lead {
  max-width: 524px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
}

.visit-form label,
.visit-form fieldset {
  text-align: left;
}

.visit-form>label,
.visit-form fieldset,
.field-row {
  width: min(480px, 100%);
  margin: 0 auto 22px;
}

.field-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field-row>label {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 767.98px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.visit-form span,
.visit-form legend {
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
}

.visit-form em {
  color: rgba(52, 64, 84, 0.5);
  font-style: normal;
}

.visit-form .form-control {
  height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--field);
  border-radius: 12px;
  color: var(--black);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.visit-form .form-control:focus,
.visit-form .form-check-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 105, 0, 0.18);
}

.visit-form .form-control::placeholder {
  color: var(--muted);
}

.visit-form fieldset {
  border: 0;
  padding: 0;
}

.choice,
.consent {
  padding-left: 1.75rem;
}

.choice {
  margin-top: 10px;
}

.choice .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-left: -1.75rem;
  accent-color: var(--orange);
}

.choice span,
.consent span {
  min-width: 0;
  font-size: 16px;
  line-height: 24px;
}

.choice strong {
  color: var(--orange);
  font-weight: 400;
}

.consent {
  opacity: 0.72;
}

.visit-form > .consent {
  margin-bottom: 6px;
}

.consent + .consent {
  margin-top: 0;
}

.consent .form-check-input {
  width: 20px;
  height: 20px;
  margin-left: -1.75rem;
}

.consent a {
  text-decoration: underline;
}

.visit-submit {
  display: block;
  width: min(480px, 100%);
  min-height: 52px;
  margin: 32px auto 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.visit-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.visit-submit:hover,
.visit-submit:focus,
.schedule-submit:hover,
.schedule-submit:focus,
.direction-card a:hover,
.direction-card a:focus,
.direction-card button:hover,
.direction-card button:focus,
.coach-card a:hover,
.coach-card a:focus,
.coach-card button:hover,
.coach-card button:focus,
.price-card a:hover,
.price-card a:focus {
  background: #e85f00;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 105, 0, 0.24);
}

.visit-submit:disabled:hover,
.visit-submit:disabled:focus {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #fff;
  transform: none;
  box-shadow: none;
}

.site-footer {
  padding: clamp(42px, 5vw, 68px) 0 clamp(36px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 105, 0, 0.2), transparent 22rem),
    linear-gradient(135deg, #111, #1c1c1c 54%, #0f0f0f);
  color: var(--white);
}

.footer-layout {
  align-items: flex-start;
}

.site-footer .brand {
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  margin-bottom: 22px;
  flex: 0 0 auto;
}

.footer-brand p,
.footer-section p,
.footer-contacts,
.site-footer .nav-link {
  margin: 0;
  color: rgba(248, 248, 248, 0.76);
  font-size: 15px;
  line-height: 1.45;
  text-transform: none;
}

.footer-brand p {
  max-width: 360px;
}

.footer-section h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.site-footer .nav-link:hover,
.site-footer .nav-link:focus,
.footer-contacts a:hover,
.footer-contacts a:focus {
  color: var(--orange);
}

.footer-contacts {
  display: grid;
  gap: 16px;
}

.footer-contacts div {
  min-width: 0;
}

.footer-contacts dt {
  margin-bottom: 4px;
  color: rgba(248, 248, 248, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-contacts dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-address-list {
  display: grid;
  gap: 9px;
}

.footer-cta p {
  margin-bottom: 18px;
}

.footer-cta .outline-button {
  margin-bottom: 20px;
}

.footer-cta img {
  width: 132px;
  height: auto;
  opacity: 0.86;
}

.site-footer .outline-button {
  min-width: 154px;
}

.history-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 105, 0, 0.14), transparent 28rem),
    radial-gradient(circle at 90% 22%, rgba(19, 19, 19, 0.08), transparent 24rem),
    #f4f4f4;
}

.history-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.history-hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -150px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(255, 105, 0, 0.16), rgba(255, 105, 0, 0.03) 58%, transparent 72%);
  pointer-events: none;
}

.history-hero::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 62% 34%, rgba(19, 19, 19, 0.08), transparent 68%);
  pointer-events: none;
}

.history-hero>.container {
  position: relative;
  z-index: 1;
}

.history-hero h1 {
  margin: 0 0 clamp(44px, 6vw, 84px);
  color: var(--black);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  text-align: center;
  text-transform: none;
}

.history-intro {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 28px);
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 14%, rgba(19, 19, 19, 0.06), transparent 18rem),
    linear-gradient(135deg, #fff, #f0f1f2 58%, #e6e8ea);
  box-shadow: 0 26px 64px rgba(19, 19, 19, 0.14);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease;
}

@media (hover: hover) {
  .history-intro:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 68px rgba(19, 19, 19, 0.16);
  }
}

.history-text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: clamp(16px, 2.2vw, 26px) clamp(18px, 2.8vw, 34px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  color: rgba(19, 19, 19, 0.76);
  box-shadow: 0 14px 34px rgba(19, 19, 19, 0.08);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.history-text p {
  margin: 0;
}

.history-team-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: clamp(8px, 1.2vw, 14px);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(19, 19, 19, 0.14);
}

.history-team-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 1200 / 831;
  border-radius: 20px;
  object-fit: cover;
}

.through-years {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 105, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, #171717, #242424 52%, #111);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.through-years::before {
  content: "";
  position: absolute;
  inset: 18px clamp(16px, 4vw, 56px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-attachment: fixed;
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.through-years-inner {
  text-align: center;
}

.through-years h2 {
  color: #fff;
  font-size: clamp(30px, 3.4vw, 48px);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.champion-grid {
  margin-top: clamp(34px, 5vw, 58px);
  width: 100%;
}

.champion-card {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(10, 10, 10, 0.52);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.comparison-slider {
  padding: 18px 18px 0;
}

.comparison-stage {
  position: relative;
  height: clamp(330px, 30vw, 400px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  isolation: isolate;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.comparison-after {
  object-position: 58% 0%;
}

.comparison-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--card);
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-before {
  object-position: 48% 0%;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 2;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}

.comparison-divider span::before,
.comparison-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.comparison-divider span::before {
  left: 9px;
  transform: translateY(-50%) rotate(-45deg);
}

.comparison-divider span::after {
  right: 9px;
  transform: translateY(-50%) rotate(135deg);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.champion-caption {
  padding: 16px 20px 22px;
  text-align: center;
}

.champion-caption h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
}

.champion-caption span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.champion-caption p {
  width: min(220px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.32;
}

.champion-caption .champion-description {
  width: min(220px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.32;
  text-align: center;
}

.champion-caption .champion-description> :first-child {
  margin-top: 0;
}

.champion-caption .champion-description> :last-child {
  margin-bottom: 0;
}

.history-visit {
  padding-top: clamp(32px, 5vw, 58px);
}

.athletes-page {
  background: #fff;
}

.athletes-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.12), transparent 22%, transparent 78%, rgba(19, 19, 19, 0.1)),
    radial-gradient(circle at 8% 18%, rgba(255, 105, 0, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 78%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e4e7e9);
}

.athletes-section::before,
.athletes-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.athletes-section::before {
  top: -260px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 38% 38%, rgba(255, 105, 0, 0.12), transparent 68%);
}

.athletes-section::after {
  bottom: -300px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 62% 34%, rgba(19, 19, 19, 0.08), transparent 68%);
}

.athletes-section>.container {
  position: relative;
  z-index: 1;
}

.athletes-section h1 {
  margin: 0 0 clamp(54px, 5.5vw, 78px);
  color: #171717;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.athlete-card {
  position: relative;
  width: 100%;
  margin-inline: auto;
  min-width: 0;
  min-height: 0;
  padding: 17px 17px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: #f8f8f8;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.athlete-photo {
  display: flex;
  width: 100%;
  aspect-ratio: 620 / 715;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f8f8f8;
}

.athlete-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.athlete-card h2 {
  margin: 10px 0 0;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--orange);
  color: #171717;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.athlete-card p {
  margin: 9px 0 0;
  color: rgba(19, 19, 19, 0.5);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
}

.athletes-visit {
  padding-top: clamp(32px, 5vw, 58px);
}

.reviews-page {
  background: #fff;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  padding-inline: clamp(16px, 5vw, 24px);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 105, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, #171717, #242424 52%, #111);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 18px clamp(16px, 4vw, 56px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-attachment: fixed;
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  pointer-events: none;
}

.reviews-panel {
  width: min(1124px, 100%);
  margin: 0 auto;
  padding: 30px clamp(12px, 2vw, 24px) 20px;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.44);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.reviews-panel h1 {
  margin: 0 0 40px;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  text-align: center;
}

.review-card {
  min-height: 239px;
  padding: 30px 40px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.review-head {
  margin-bottom: 42px;
}

.review-person {
  min-width: 0;
}

.review-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border-radius: 50%;
  background: #c7c7c7 url("profile.png") center / cover no-repeat;
}

.review-avatar::before,
.review-avatar::after {
  display: none;
}

.review-person h2 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.1;
}

.review-person p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.review-card time {
  position: relative;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.review-card time::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: -1px;
  mask:
    radial-gradient(circle at 50% 50%, transparent 0 4px, #000 4.4px 5.8px, transparent 6.2px),
    linear-gradient(#000 0 0) 50% 28% / 1.5px 5px no-repeat,
    linear-gradient(#000 0 0) 60% 55% / 4px 1.5px no-repeat;
}

.review-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.78;
}

.review-rating {
  margin: 22px 0 0;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.reviews-visit {
  padding-top: clamp(32px, 5vw, 58px);
}

.directions-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.direction-card {
  position: relative;
  min-height: clamp(260px, 25vw, 360px);
  overflow: hidden;
  border-radius: clamp(30px, 4vw, 56px);
  background: transparent;
  isolation: isolate;
}

.direction-card-large {
  min-height: clamp(320px, 26vw, 370px);
}

.direction-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.direction-card-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 42px 24px;
  color: #fff;
  text-align: center;
}

.direction-card h1,
.direction-card h2 {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 18px 32px;
  background: transparent;
  color: #fff;
  font-size: clamp(46px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  text-transform: none;
}

.direction-card h1::before,
.direction-card h2::before {
  position: absolute;
  z-index: -1;
  inset: -42px -64px;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.52) 34%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0) 100%);
  content: "";
  filter: blur(16px);
  pointer-events: none;
}

.direction-card a,
.direction-card button {
  min-height: 39px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
}

.direction-description-modal .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 105, 0, 0.34);
  background: linear-gradient(145deg, #1b1b1b, #080808 78%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 46px rgba(255, 105, 0, 0.14);
}

.direction-description-modal .modal-content::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.24), transparent 68%);
  content: "";
  pointer-events: none;
}

.coach-description-modal .modal-dialog {
  max-width: 520px;
}

.coach-description-modal__photo {
  position: relative;
  z-index: 1;
  padding: 18px 18px 0;
}

.coach-description-modal__photo img {
  width: 100%;
  height: 290px;
  display: block;
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.direction-description-modal .modal-header {
  position: relative;
  z-index: 1;
  padding: 30px 34px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.direction-description-modal .modal-title {
  margin: 0;
  padding-right: 24px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: none;
}

.direction-description-modal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.78;
}

.direction-description-modal .btn-close:hover,
.direction-description-modal .btn-close:focus {
  opacity: 1;
}

.direction-description-modal__body {
  position: relative;
  z-index: 1;
  padding: 24px 34px 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.direction-description-modal__body p,
.direction-description-modal__body ul,
.direction-description-modal__body ol {
  margin-bottom: 1em;
}

.direction-description-modal__body strong {
  color: #fff;
}

.direction-description-modal__body a {
  color: #ffb37d;
  text-decoration-color: rgba(255, 179, 125, 0.5);
  text-underline-offset: 3px;
}

.direction-description-modal__body a:hover,
.direction-description-modal__body a:focus {
  color: var(--orange);
}

.direction-description-modal__body> :first-child {
  margin-top: 0;
}

.direction-description-modal__body> :last-child {
  margin-bottom: 0;
}

.visit-modal .modal-dialog {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.visit-modal__content {
  width: 100%;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.visit-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 18px;
  opacity: 0.6;
}

.visit-modal__close:hover,
.visit-modal__close:focus {
  opacity: 1;
}

.visit-modal__body {
  padding: 0;
  overflow-x: hidden;
}

.visit-modal__section {
  padding: 0;
}

.visit-modal__section .visit-form {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(36px, 5vw, 56px) clamp(18px, 4vw, 32px);
  opacity: 1;
  transform: none;
  border-color: rgba(255, 105, 0, 0.24);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22), 0 0 0 5px rgba(255, 105, 0, 0.06);
}

.visit-modal__section .visit-form::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

@media (max-width: 620px) {
	.visit-modal .modal-dialog {
		margin-right: 12px;
		margin-left: 12px;
	}

  .direction-description-modal .modal-dialog {
    margin: 16px;
  }

  .direction-description-modal .modal-content {
    border-radius: 24px;
  }

  .coach-description-modal__photo {
    padding: 12px 12px 0;
  }

  .coach-description-modal__photo img {
    height: 240px;
    border-radius: 16px;
  }

  .direction-description-modal .modal-header {
    padding: 24px 22px 16px;
  }

  .direction-description-modal__body {
    padding: 20px 22px 28px;
    font-size: 15px;
  }

  .visit-modal__close {
    top: 12px;
    right: 14px;
  }
}

.directions-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #fff;
}

.active-nav-link {
  text-decoration: underline;
}

.coaches-page {
  background: #f4f4f4;
}

.coaches-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.coaches-section h1 {
  margin: 0 0 clamp(84px, 8vw, 92px);
  color: #171717;
  font-size: clamp(38px, 4.4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coach-card {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #d4d8d9;
  box-shadow: var(--shadow-sm);
}

.coach-card img {
  width: 100%;
  height: 330px;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.coach-card-body {
  min-height: 236px;
  margin-top: -37px;
  padding: 31px 18px 30px;
  border-radius: 20px;
  background: #f8f8f8;
  text-align: center;
  position: relative;
  z-index: 1;
}

.coach-card h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.14;
  text-transform: none;
}

.coach-card p {
  min-height: 0;
  margin: 28px 0 0;
  color: rgba(19, 19, 19, 0.5);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.coach-card-description {
  min-height: 0;
  margin: 28px 0 0;
  color: rgba(19, 19, 19, 0.5);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.coach-card-description p {
  margin: 0;
}

.coach-card a,
.coach-card button {
  min-height: 39px;
  margin-top: 32px;
  padding: 10px 21px;
  border-radius: 8px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
}

.coaches-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.schedule-page {
  background: #f4f4f4;
}

.schedule-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.schedule-heading {
  margin-bottom: clamp(38px, 5vw, 58px);
}

.schedule-heading h1 {
  margin: 0;
  color: #171717;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-heading>p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(19, 19, 19, 0.62);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.schedule-filter,
.schedule-results {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.schedule-filter {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: clamp(34px, 5vw, 52px);
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
}

.schedule-filter label {
  min-width: 0;
}

.schedule-filter span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.schedule-filter .form-select {
  min-height: 50px;
  padding: 0 44px 0 16px;
  border: 1px solid var(--field);
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 22px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 16px) 52% / 6px 6px no-repeat,
    #fff;
  color: var(--text);
  appearance: none;
  outline-color: var(--orange);
}

.schedule-submit {
  min-height: 50px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.schedule-reset {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.schedule-reset:hover,
.schedule-reset:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.schedule-results {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
}

.schedule-branch-group {
  padding-bottom: clamp(22px, 3vw, 34px);
}

.schedule-branch-group+.schedule-branch-group {
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}

.schedule-branch-heading {
  padding: 0 clamp(14px, 2vw, 26px) clamp(16px, 2vw, 22px);
}

.schedule-branch-heading h3 {
  margin: 0;
  color: rgba(19, 19, 19, 0.58);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.1;
}

.schedule-results-head {
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2.5vw, 28px);
}

.schedule-results-head .eyebrow {
  margin-bottom: 8px;
}

.schedule-results-head h2 {
  color: var(--text);
  font-size: clamp(28px, 3vw, 36px);
}

.schedule-days {
  margin-inline: 0;
  padding: 0 clamp(14px, 2vw, 26px) clamp(18px, 2.5vw, 28px);
}

.schedule-day {
  min-width: 0;
  margin-inline: 5px;
  padding: 12px;
  border-radius: 18px;
  background: #f4f4f4;
  align-content: start;
}

@media (min-width: 1200px) {
  .schedule-day {
    width: calc(16.66666667% - 10px);
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .schedule-day {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767.98px) {
  .schedule-day {
    width: calc(100% - 10px);
  }
}

.schedule-day h3,
.schedule-day h4 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  color: #171717;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lesson-card {
  min-width: 0;
  align-self: start;
  padding: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), var(--lesson-color, var(--black)));
  color: #fff;
  box-shadow: 0 10px 18px color-mix(in srgb, var(--lesson-color, var(--black)) 32%, rgba(19, 19, 19, 0.14));
}

.lesson-card time {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.lesson-card h4,
.lesson-card h5 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
}

.lesson-card p,
.lesson-card .lesson-comment {
  margin: 0;
  color: rgba(248, 248, 248, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.lesson-card .lesson-trainer {
  margin: 0;
  color: rgba(248, 248, 248, 0.62);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.schedule-day-empty {
  margin: 0;
  color: rgba(19, 19, 19, 0.52);
  font-size: 14px;
  font-weight: 700;
}

.schedule-empty {
  margin: 0;
  padding: 28px;
  color: rgba(19, 19, 19, 0.58);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.schedule-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.prices-page {
  background: #f4f4f4;
}

.prices-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.prices-section .site-page-title {
  margin: 0 0 clamp(38px, 5vw, 58px);
}

.price-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(26px, 2.4vw, 34px) clamp(20px, 2vw, 28px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--black);
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -34% 12%;
  z-index: -1;
  height: 68%;
  border-radius: 50%;
  opacity: 0.92;
  filter: blur(30px);
}

.price-card-blue::before {
  background: #4f89bd;
}

.price-card-orange::before {
  background: var(--orange);
}

.price-card-purple::before {
  background: #a647a0;
}

.price-card-green::before {
  background: #48a645;
}

.price-card-head {
  margin-bottom: 22px;
}

.price-card-head span {
  min-height: 32px;
  padding: 7px 12px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.price-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 850;
  line-height: 1.1;
  text-transform: none;
}

.price-card h3 {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

.price-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 650;
  line-height: 1.32;
}

.price-card a {
  min-width: 112px;
  min-height: 46px;
  margin-top: 48px;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #fff;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow-glow);
}

.prices-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.events-page {
  background: #f4f4f4;
}

.events-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  padding-inline: clamp(16px, 5vw, 24px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 16% 22%, rgba(255, 105, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, #171717, #242424 52%, #111);
  background-attachment: fixed;
  background-position: center;
  background-size: 58px 58px, 58px 58px, auto, auto, cover;
  isolation: isolate;
}

.events-section h1 {
  margin: 0 0 clamp(34px, 4vw, 40px);
  color: #fff;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
}

.events-grid {
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    rgba(10, 10, 10, 0.44);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.event-card {
  min-width: 0;
  padding: clamp(12px, 1.4vw, 16px);
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(10, 10, 10, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.event-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.event-card-image-link {
  display: block;
  line-height: 0;
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.event-card-image-link:hover img,
.event-card-image-link:focus-visible img {
  opacity: 0.9;
  transform: scale(1.015);
}

.event-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 80%;
  padding: 14px 24px;
  border-radius: 0 8px 0 0;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.14;
}

.event-card h2 {
  margin: 0;
  color: #d92900;
  font-size: clamp(23px, 2.2vw, 27px);
  line-height: 1.52;
  font-weight: 850;
  text-transform: none;
}

.event-card h2 a {
  color: inherit;
  text-decoration: none;
}

.event-card h2 a:hover,
.event-card h2 a:focus {
  color: var(--orange);
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.72;
}

.event-meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.2;
}

.event-meta span::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.event-meta span:first-child::before,
.event-meta span:last-child::before {
  border-radius: 50%;
}

.events-empty {
  margin: 0;
  color: #6f6f6f;
  font-size: 18px;
  text-align: center;
}

.events-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.single-post-page {
  background: #f4f4f4;
}

.single-post-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.single-post-card {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.single-post-header {
  margin-bottom: clamp(26px, 4vw, 42px);
}

.single-post-header h1 {
  max-width: 780px;
  margin: 14px 0 0;
  color: #171717;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.single-post-image {
  margin: 0 0 clamp(28px, 4vw, 44px);
  text-align: center;
}

.single-post-image img {
  width: 100%;
  max-height: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  object-fit: contain;
}

.single-post-content {
  color: #363636;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}

.single-post-content>*:first-child {
  margin-top: 0;
}

.single-post-content>*:last-child {
  margin-bottom: 0;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
}

.single-post-content a {
  color: var(--orange);
}

.single-post-empty {
  margin: 0;
  color: #6f6f6f;
  font-size: 18px;
  text-align: center;
}

.single-post-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.documents-page {
  background: #f4f4f4;
}

.documents-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.documents-heading {
  width: min(920px, 100%);
  margin-bottom: clamp(38px, 5vw, 58px);
}

.documents-heading h1 {
  margin: 0;
  color: #171717;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.documents-heading>p:last-child {
  margin: 24px 0 0;
  color: rgba(19, 19, 19, 0.62);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.35;
}

.documents-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.documents-nav a {
  padding: 11px 16px;
  border: 1px solid rgba(19, 19, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #333;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(19, 19, 19, 0.06);
}

.documents-nav a:hover,
.documents-nav a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.documents-content {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.legal-document {
  scroll-margin-top: 96px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.legal-document-number {
  width: max-content;
  margin: 0 0 18px;
  padding: 5px 11px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.legal-document h2 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #171717;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.legal-document h3 {
  margin: 28px 0 10px;
  color: #171717;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.2;
}

.legal-document p,
.legal-document li,
.legal-details {
  color: rgba(19, 19, 19, 0.72);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  margin: 0 0 18px;
  padding-left: 1.4em;
}

.legal-document li+li {
  margin-top: 9px;
}

.legal-document a {
  color: var(--orange);
  font-weight: 700;
}

.legal-document-note {
  margin-bottom: 24px !important;
  padding: 14px 18px;
  border-left: 4px solid var(--orange);
  color: rgba(19, 19, 19, 0.58) !important;
  font-size: 15px !important;
  font-weight: 700;
}

.legal-document-download {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

.document-download-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  text-decoration: none;
}

.document-download-link:hover,
.document-download-link:focus-visible {
  color: #171717;
  background: var(--orange);
}

.legal-details {
  margin: 0;
}

.legal-details>div+div {
  margin-top: 22px;
}

.legal-details dt {
  margin-bottom: 5px;
  color: #171717;
  font-weight: 800;
}

.legal-details dd {
  margin: 0;
}

.document-card,
.documents-note {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.document-card {
  min-width: 0;
  min-height: 280px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
}

.document-card span {
  width: max-content;
  padding: 5px 11px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.document-card h2,
.documents-note h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  text-transform: uppercase;
}

.document-card p,
.documents-note p {
  margin: 0;
  color: rgba(19, 19, 19, 0.58);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.documents-note {
  margin-top: clamp(24px, 3vw, 34px);
  padding: clamp(24px, 3vw, 34px);
  border-left: 6px solid var(--orange);
  border-radius: 18px;
}

.documents-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

.contacts-page {
  background: #f4f4f4;
}

.contacts-section {
  padding-block: var(--section-space);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.16), transparent 30%, transparent 70%, rgba(19, 19, 19, 0.18)),
    radial-gradient(circle at 8% 16%, rgba(255, 105, 0, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(19, 19, 19, 0.08), transparent 30rem),
    linear-gradient(135deg, #fff, #eef1f3 58%, #e5e8ea);
}

.contacts-inner {
  width: min(1050px, calc(100% - clamp(32px, 6vw, 120px)));
}

.contacts-section h1 {
  margin: 0 0 clamp(64px, 7vw, 74px);
  color: #171717;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contacts-info {
  margin-bottom: clamp(34px, 4vw, 42px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.contacts-info dl {
  margin: 0;
  color: #171717;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.5;
}

.contacts-info dl div {
  margin: 0;
}

.contacts-info dl div+div {
  margin-top: clamp(22px, 2.8vw, 32px);
}

.contacts-info dt {
  color: rgba(19, 19, 19, 0.56);
  font-weight: 700;
}

.contacts-info dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

.contacts-address-list {
  display: grid;
  gap: 9px;
}

.contacts-address-item {
  display: block;
}

.contacts-address-item span {
  color: inherit;
}

.social-panel {
  min-height: clamp(300px, 33vw, 382px);
  margin-bottom: clamp(34px, 4vw, 38px);
  padding: clamp(34px, 5vw, 52px);
  border-radius: 80px 16px 80px 16px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 105, 0, 0.32), transparent 22rem),
    linear-gradient(145deg, #151515, #080808);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.social-panel h2 {
  color: #fff;
  font-size: clamp(40px, 5.3vw, 60px);
  line-height: 1;
  text-align: center;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.social-actions {
  width: min(360px, 100%);
}

.social-actions a {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
}

.social-actions a:hover,
.social-actions a:focus {
  border-color: var(--orange);
  background: rgba(255, 105, 0, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.social-actions .social-icon-button:first-child {
  background: #fff;
  color: var(--black);
  font-size: 28px;
}

.social-actions .social-icon-button:nth-child(2) {
  font-size: 26px;
  font-weight: 700;
}

.social-network-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(520px, 100%);
  gap: 12px;
}

.social-network-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-network-link:hover,
.social-network-link:focus {
  border-color: var(--orange);
  background: rgba(255, 105, 0, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.social-network-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-network-icon img {
  display: block;
  width: 28px;
  max-width: 100%;
  height: 28px;
  object-fit: contain;
}

.social-network-list--footer,
.social-network-list--contacts {
  width: min(248px, 100%);
  gap: 8px;
}

.social-network-list--footer .social-network-link,
.social-network-list--contacts .social-network-link {
  min-height: 38px;
  gap: 6px;
  padding: 6px 7px;
  border-radius: 10px;
  font-size: 11px;
}

.social-network-list--footer .social-network-icon,
.social-network-list--contacts .social-network-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.social-network-list--footer .social-network-icon img,
.social-network-list--contacts .social-network-icon img {
  width: 20px;
  height: 20px;
}

.footer-social-title {
  margin-top: 24px !important;
}

.social-network-link {
  position: relative;
  z-index: 1;
  cursor: pointer;
  pointer-events: auto;
}

.map-section h2 {
  color: #171717;
  font-size: clamp(38px, 5vw, 60px);
}

.branch-map-layout {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

.branch-map-picker {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.branch-map-picker__label {
  color: rgba(19, 19, 19, 0.56);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-map-picker__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.branch-map-button {
  display: grid;
  min-height: 76px;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 37, 43, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #17252b;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.branch-map-button strong {
  font-size: 15px;
  line-height: 1.2;
}

.branch-map-button span {
  color: rgba(19, 19, 19, 0.58);
  font-size: 12px;
  line-height: 1.3;
}

.branch-map-button:hover,
.branch-map-button:focus-visible,
.branch-map-button.is-active {
  border-color: var(--orange);
  background: linear-gradient(145deg, #fff, #f2e9e3);
  box-shadow: 0 10px 24px rgba(255, 105, 0, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.map-empty-state {
  display: grid;
  gap: 8px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(23, 37, 43, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  color: #17252b;
  box-shadow: var(--shadow-sm);
}

.map-empty-state span {
  color: rgba(19, 19, 19, 0.58);
}

/* Unified heading system for page, section, subsection and card titles. */
h1.site-page-title {
  color: #171717;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2.site-section-title {
  color: #171717;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3.site-subsection-title {
  color: #17252b;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3.site-card-title {
  color: #171717;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.site-heading--light {
  color: #fff !important;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(19, 19, 19, 0.28), 0 10px 22px rgba(19, 19, 19, 0.16);
}

.map-frame-clip {
  position: relative;
  width: 100%;
  min-height: inherit;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  border-radius: 28px;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  transform: translateZ(0);
  will-change: transform;
}

[data-cookie-map] {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.map-consent-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 105, 0, 0.28), transparent 22rem),
    linear-gradient(145deg, #171717, #080808);
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.map-consent-placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.map-consent-placeholder.is-disintegrating {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.map-dust {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  pointer-events: none;
}

.map-dust__particle {
  position: absolute;
  display: block;
  border-radius: 35% 65% 45% 55%;
  opacity: 0;
  animation: map-dust-particle 5s cubic-bezier(0.18, 0.8, 0.32, 1) forwards;
}

@keyframes map-dust-particle {
  0% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--dust-x), var(--dust-y), 0) rotate(var(--dust-rotation)) scale(0.1);
  }
}

.map-consent-placeholder p {
  max-width: 420px;
  margin: 0;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: flex;
  width: min(680px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #171717;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.cookie-consent__content {
  min-width: 0;
}

.cookie-consent__content strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-consent__content p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.cookie-consent__content a {
  color: var(--orange);
  font-size: 13px;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-consent__actions .btn {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.cookie-consent__actions .btn:last-child {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.cookie-consent__actions .btn:last-child:hover,
.cookie-consent__actions .btn:last-child:focus {
  border-color: #e85f00;
  background: #e85f00;
  color: #fff;
}

.contacts-visit {
  padding-top: clamp(32px, 5vw, 58px);
  background: #f4f4f4;
}

:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section) {
  position: relative;
  overflow: hidden;
}

.documents-section {
  overflow: clip;
}

:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section)::before,
:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section)::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section)::before {
  top: -240px;
  right: -150px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 38% 38%, rgba(255, 105, 0, 0.16), rgba(255, 105, 0, 0.03) 58%, transparent 72%);
}

:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section)::after {
  bottom: -300px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 62% 34%, rgba(19, 19, 19, 0.08), transparent 68%);
}

:where(.advantages,
  .history-hero,
  .directions-section,
  .coaches-section,
  .schedule-section,
  .prices-section,
  .events-section,
  .single-post-section,
  .documents-section,
  .contacts-section)>.container {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  :where(.athlete-card, .review-card, .direction-card, .coach-card, .price-card, .event-card, .document-card, .documents-note):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .event-card figure img,
  .direction-card img,
  .coach-card img,
  .athlete-card img {
    transition: transform 0.32s ease;
  }

  .event-card:hover figure img,
  .direction-card:hover img,
  .coach-card:hover img,
  .athlete-card:hover img {
    transform: scale(1.03);
  }

  .coach-card:hover img {
    transform: none;
  }

  .direction-card:hover {
    box-shadow: none;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.advantage-card.reveal-on-scroll {
  transition:
    opacity 0.82s ease,
    transform 0.82s ease,
    border-color 0.42s ease,
    background 0.42s ease,
    box-shadow 0.42s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js :where(.advantage-card,
  .athlete-card,
  .review-card,
  .direction-card,
  .coach-card,
  .schedule-filter,
  .schedule-results,
  .price-card,
  .event-card,
  .document-card,
  .documents-note,
  .contacts-info,
  .social-panel,
  .map-section,
  .visit-form) {
  opacity: 0;
  transform: translateY(18px);
}

.js :where(.advantage-card,
  .athlete-card,
  .review-card,
  .direction-card,
  .coach-card,
  .schedule-filter,
  .schedule-results,
  .price-card,
  .event-card,
  .document-card,
  .documents-note,
  .contacts-info,
  .social-panel,
  .map-section,
  .visit-form).is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }

  .hero-content {
    top: 50%;
    right: 24px;
    bottom: auto;
    left: 24px;
    width: auto;
    max-width: 460px;
    transform: translateY(-50%);
  }

  .hero-wide .hero-video:not(.hero-video-background) {
    object-fit: contain;
  }

  .hero-content h1 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .hero-lead {
    margin-block: 16px 20px;
  }

  .hero-highlights {
    right: 24px;
    bottom: 24px;
    left: 24px;
    gap: 8px 18px;
    font-size: 11px;
  }

  .site-header .brand {
    width: 58px;
    height: 58px;
  }

  .advantage-card {
    min-height: 220px;
  }

  .reviews-panel {
    max-height: none;
    padding-bottom: 5px;
  }

  .contacts-inner {
    width: min(100% - 32px, var(--container));
  }

  .history-hero {
    padding-top: var(--section-space);
  }

}

@media (max-width: 620px) {
  h1 {
    font-size: 30px !important;
  }

  .home-featured-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
  }

  .home-featured-title {
    font-size: 30px;
  }

  .home-people-lead {
    text-align: left;
  }

  .home-people-subheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .events-section {
    padding-inline: 16px;
  }

  .history-hero > .container {
    width: 100%;
    max-width: none;
    --bs-gutter-x: 8px;
  }

  .events-section > .container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
    --bs-gutter-x: 0;
  }

  .contacts-section > .container.contacts-inner {
    width: 100%;
    max-width: none;
    --bs-gutter-x: 32px;
  }

  .documents-section {
    padding-inline: 16px;
  }

  .documents-section > .container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
    --bs-gutter-x: 0;
  }

  .documents-heading {
    width: 100%;
    margin-bottom: 28px;
  }

  .documents-heading > p:last-child {
    font-size: 15px;
  }

  .documents-nav {
    gap: 8px;
    margin-bottom: 24px;
  }

  .documents-nav a {
    max-width: 100%;
    padding: 9px 12px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .legal-document {
    min-width: 0;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .legal-document h2 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .legal-document h3 {
    font-size: 18px;
  }

  .legal-document p,
  .legal-document li,
  .legal-details {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .legal-document ul {
    padding-left: 1.2em;
  }

  .legal-document-note {
    padding: 12px 14px;
    font-size: 14px !important;
  }

  .events-grid {
    display: contents;
  }

  .events-grid > [class*="col-"] {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 16px;
  }

  .events-grid > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .event-card {
    padding: 12px 16px;
  }

  .contacts-info {
    padding: 22px;
  }

  .history-intro {
    width: 100%;
    margin-inline: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header {
    padding-block: 12px;
  }

  .site-header .container-fluid {
    --bs-gutter-x: 24px;
  }

  .site-header .brand {
    width: 50px;
    height: 50px;
  }

  .phone {
    font-size: 14px;
  }

  .outline-button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .hero-cta {
    height: 46px;
    font-size: 12px;
    padding: 9px 16px;
    white-space: normal;
  }

  .header-actions .outline-button {
    min-height: 48px;
    font-size: 15px;
  }

  .main-nav {
    font-size: 15px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-wide .hero-video:not(.hero-video-background) {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
  }

  .home-page .site-header .brand {
    width: 50px;
    height: 50px;
  }

  .advantage-card {
    min-height: 0;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .advantage-image {
    --icon-size: 72px;
  }

  .advantage-card h3,
  .advantage-card:nth-child(-n + 2) h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.05;
  }

  .advantage-card p {
    font-size: 12px;
    line-height: 1.25;
  }

  .athletes-section {
    padding-top: var(--section-space);
  }

  .athletes-section h1 {
    margin-bottom: 38px;
  }

  .athlete-card {
    min-height: 0;
  }

  .reviews-section {
    padding-top: var(--section-space);
  }

  .reviews-panel {
    border-radius: 24px;
    padding: 16px 4px 10px;
  }

  .reviews-panel h1 {
    margin-bottom: 26px;
  }

  .review-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .review-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .review-text {
    font-size: 13px;
    line-height: 1.55;
  }

  .direction-card,
  .direction-card-large {
    min-height: 270px;
    border-radius: 28px;
  }

  .direction-card-content {
    gap: 34px;
  }

  .direction-card h1,
  .direction-card h2 {
    font-size: 42px;
  }

  .coaches-section {
    padding-top: var(--section-space);
  }

  .coaches-section h1 {
    margin-bottom: 44px;
  }

  .coach-card {
    min-height: 0;
  }

  .schedule-section {
    padding-top: var(--section-space);
  }

  .schedule-filter {
    border-radius: 18px;
  }

  .schedule-results {
    border-radius: 18px;
  }

  .schedule-days {
    padding-inline: 14px;
  }

  .prices-section {
    padding-top: var(--section-space);
  }

  .price-card {
    min-height: 330px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .price-card-head {
    margin-bottom: 16px;
  }

  .price-card-head span {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .price-card h2 {
    font-size: 16px;
  }

  .price-card h3 {
    padding-bottom: 12px;
    font-size: 18px;
  }

  .price-card li {
    padding-bottom: 8px;
    font-size: 14px;
  }

  .price-card a {
    min-width: 96px;
    min-height: 40px;
    margin-top: 34px;
    padding: 9px 18px;
    font-size: 18px;
  }

  .events-section {
    padding-top: var(--section-space);
  }

  .events-grid {
    padding: 16px;
  }

  .event-card figcaption {
    max-width: 92%;
    padding: 12px 16px;
    font-size: 14px;
  }

  .event-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .documents-section {
    padding-top: var(--section-space);
  }

  .document-card {
    min-height: 0;
    border-radius: 18px;
  }

  .contacts-section {
    padding-top: var(--section-space);
  }

  .contacts-section h1 {
    margin-bottom: 34px;
  }

  .social-panel {
    border-radius: 38px 12px;
  }

  .visit-form {
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  }

  .choice span,
  .consent span {
    font-size: 14px;
    line-height: 21px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .site-footer .brand {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .footer-layout {
    --bs-gutter-y: 2rem;
  }

  .footer-section h2 {
    margin-bottom: 12px;
  }

  .site-footer .nav {
    font-size: 14px;
  }

  .history-hero h1 {
    margin-bottom: 34px;
  }

  .history-team-photo {
    border-radius: 12px;
  }

  .history-text {
    font-size: 15px;
    line-height: 1.32;
  }

  .comparison-stage {
    height: 318px;
  }

}

@media (max-width: 900px) and (orientation: landscape) {
  .hero-content {
    top: 50%;
    right: auto;
    left: clamp(20px, 5vw, 56px);
    width: min(50vw, 460px);
    max-width: none;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: clamp(26px, 4.6vw, 44px);
  }

  .hero-lead {
    max-width: 320px;
    margin: 10px 0 14px;
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-cta {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 11px;
  }

  .hero-highlights {
    right: 20px;
    bottom: 12px;
    left: 20px;
    gap: 6px 14px;
    font-size: 10px;
  }

  .hero-wide .hero-video:not(.hero-video-background) {
    object-fit: cover;
  }
}

.not-found-page {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 105, 0, 0.16), transparent 22rem),
    radial-gradient(circle at 88% 68%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(135deg, #171717, #080808 72%);
  color: var(--white);
}

.not-found-page::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 105, 0, 0.08) 48.1% 48.4%, transparent 48.5%),
    linear-gradient(295deg, transparent 0 72%, rgba(255, 255, 255, 0.05) 72.1% 72.25%, transparent 72.35%);
  content: "";
  pointer-events: none;
}

.not-found-page .container {
  position: relative;
  z-index: 1;
}

.not-found-content {
  width: min(760px, 100%);
  padding-block: clamp(88px, 12vw, 148px);
}

.not-found-eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.not-found-code {
  margin-left: -0.08em;
  color: transparent;
  font-size: clamp(130px, 23vw, 300px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-shadow:
    1px 0 0 rgba(255, 105, 0, 0.95),
    -1px 0 0 rgba(255, 105, 0, 0.5),
    0 0 54px rgba(255, 105, 0, 0.16);
  user-select: none;
}

.not-found-content h1 {
  max-width: 650px;
  margin: clamp(28px, 5vw, 52px) 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 850;
  line-height: 0.98;
  text-wrap: balance;
}

.not-found-description {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(248, 248, 248, 0.7);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.45;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-actions .outline-button {
  border-color: rgba(248, 248, 248, 0.6);
}

.not-found-orb {
  position: absolute;
  z-index: -1;
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 105, 0, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(255, 105, 0, 0.04),
    0 0 0 44px rgba(255, 105, 0, 0.025),
    0 0 80px rgba(255, 105, 0, 0.14);
  opacity: 0.75;
  pointer-events: none;
}

.not-found-orb-left {
  top: 12%;
  left: -9%;
}

.not-found-orb-right {
  right: -7%;
  bottom: 8%;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.025),
    0 0 0 44px rgba(255, 255, 255, 0.015),
    0 0 80px rgba(255, 255, 255, 0.08);
}

@media (max-width: 620px) {
  .cookie-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__actions .btn {
    flex: 1 1 0;
  }

  .not-found-content {
    padding-block: 74px 96px;
  }

  .not-found-code {
    font-size: clamp(112px, 34vw, 180px);
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-actions a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .advantage-image {
    --icon-size: 96px;
  }
}

@media (max-width: 767.98px),
(prefers-reduced-motion: reduce) {

  .partners,
  .partners::before {
    background-attachment: scroll;
  }
}
