@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --surface-soft: #f3f1eb;
  --surface-muted: #ebe8e1;
  --text: #1a1a1a;
  --text-soft: #676767;
  --text-faint: #9a9a9a;
  --accent: #d9b86a;
  --accent-deep: #b78f37;
  --line: #e5e5e2;
  --shadow: 0 28px 90px rgba(26, 26, 26, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1800px;
  --section-space: 72px;
  --section-space-tight: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
}

body.is-locked {
  overflow: hidden;
}

body.intro-active .site-header,
body.intro-active main,
body.intro-active .footer {
  opacity: 0;
  pointer-events: none;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100%, var(--container));
  padding-inline: clamp(16px, 3vw, 64px);
  margin: 0 auto;
}

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

.section-tight {
  padding: var(--section-space-tight) 0;
}

.surface {
  background: var(--surface);
}

.surface-soft {
  background: var(--bg);
}

.section-label {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(217, 184, 106, 0.18);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.title-xl,
.title-lg,
.title-md,
.display-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.display-title {
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 0.98;
}

.title-xl {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.04;
}

.title-lg {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.1;
}

.title-md {
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.18;
}

.text-accent {
  color: var(--accent-deep);
}

.text-soft {
  color: var(--text-soft);
}

.lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.btn {
  background: var(--text);
  color: #fff;
}

.btn:hover,
.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.btn-light {
  background: #fff;
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
  backdrop-filter: blur(16px);
  transition: background-color 0.35s ease, box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  min-height: 84px;
}

.brand-logo {
  width: 198px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/*.nav-group {
  position: relative;
}

.nav-link,
.nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.08;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  max-width: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-group > .nav-link {
  gap: 6px;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.is-active,
.nav-button.is-active {
  background: rgba(26, 26, 26, 0.05);
  color: var(--text);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--surface-soft);
  color: var(--text);
}*/

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-link,
.nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.08;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  max-width: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-group > .nav-link {
  gap: 6px;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.is-active,
.nav-button.is-active,
.nav-group:hover > .nav-link,
.nav-group:focus-within > .nav-link {
  background: rgba(26, 26, 26, 0.05);
  color: var(--text);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--surface-soft);
  color: var(--text);
}


.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.phone-link {
  max-width: none;
  color: var(--text);
  font-size: 18px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: left;
  flex: 0 0 auto;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease, transform 0.25s ease;
}

.phone-link:hover {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.header-actions .btn {
  width: auto;
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.burger-lines,
.burger-lines::before,
.burger-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  content: "";
}

.burger-lines::before {
  transform: translateY(-6px);
}

.burger-lines::after {
  transform: translateY(4px);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(26, 26, 26, 0.36);
  backdrop-filter: blur(10px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(100%, 380px);
  padding: 24px;
  background: #fff;
  box-shadow: -24px 0 60px rgba(26, 26, 26, 0.12);
  overflow-y: auto;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mobile-nav-section-title {
  margin-top: 8px;
  padding: 6px 8px 0;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-links a,
.mobile-nav-links button {
  justify-content: flex-start;
  width: 100%;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: heroSliderLoop 18s infinite ease-in-out;
}

.hero-slide {
  width: calc(100% / 3);
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero:hover .hero-track {
  animation-play-state: paused;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 250, 248, 0.96) 0%,
    rgba(250, 250, 248, 0.72) 48%,
    rgba(250, 250, 248, 0) 100%
  );
}

@keyframes heroSliderLoop {
  0%,
  29% {
    transform: translateX(0);
  }

  33%,
  62% {
    transform: translateX(-33.333333%);
  }

  66%,
  95% {
    transform: translateX(-66.666667%);
  }

  100% {
    transform: translateX(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 72px;
  width: min(100%, 520px);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, 540px) minmax(300px, 430px);
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  width: 100%;
}

.page-hero-copy {
  max-width: 640px;
}

.page-hero-aside {
  justify-self: end;
  width: 100%;
  max-width: 430px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.page-hero-aside .check-list li span:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-aside .check {
  color: var(--accent);
}

.mode-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(18px);
}

.mode-switch button {
  min-height: 42px;
  min-width: 54px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-soft);
}

.mode-switch button.is-active {
  background: var(--text);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.15);
}

.mode-switch button svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.hero-stat-value {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.hero-stat-label {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  pointer-events: none;
  transform: translateY(32px);
}

.hero-arrow {
  pointer-events: auto;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: rgba(26, 26, 26, 0.82);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 36px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.hero-arrow:hover {
  color: rgba(26, 26, 26, 1);
  transform: scale(1.08);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 4;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(26, 26, 26, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.scroll-hint:hover {
  transform: translateX(-50%) translateY(2px);
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.5);
}

.scroll-hint-arrow {
  font-size: 22px;
  line-height: 1;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.glass-card,
.promo-card,
.trainer-card,
.pricing-card,
.zone-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promo-card[data-action="open-program"] {
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.promo-card[data-action="open-program"]:hover,
.promo-card[data-action="open-program"]:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(26, 26, 26, 0.12);
}

.card {
  padding: 22px;
  background: #fff;
}

.soft-card {
  padding: 22px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 168px;
  gap: 18px;
}

.zone-card {
  position: relative;
  min-height: 168px;
  background: #000;
}

.zone-card.zone-card-wide {
  min-height: 168px;
}

.zone-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 354px;
}

.zone-card-tall {
  grid-row: span 2;
  min-height: 354px;
}

.zone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.zone-card:hover img {
  transform: scale(1.05);
}

.zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.78));
}

.zone-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 20px 92px 20px 20px;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.zone-card:hover .zone-card-body {
  transform: translateY(0);
}

.zone-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}

.zone-card:hover .zone-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.zone-card:hover .zone-card-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1480px) {
  .zone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .zone-card-featured {
    min-height: 180px;
  }

  .zone-card-tall {
    min-height: 180px;
  }
}

.trainer-card {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.trainer-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
}

.trainer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trainer-card:hover .trainer-card-image img {
  transform: scale(1.05);
}

.trainer-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 42%, rgba(26, 26, 26, 0.58) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trainer-card:hover .trainer-card-image.has-quote::after {
  opacity: 1;
}

.trainer-card-quote {
  position: absolute;
  inset: auto 22px 20px 22px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.42;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.trainer-card[data-action="open-trainer"] {
  cursor: pointer;
}

.trainer-card[data-action="open-trainer"]:focus-visible {
  outline: 3px solid rgba(217, 184, 106, 0.72);
  outline-offset: 6px;
  border-radius: 30px;
}

.trainer-card[data-action="open-trainer"]:focus-visible .trainer-card-image img {
  transform: scale(1.05);
}

.trainer-card:hover .trainer-card-quote {
  opacity: 1;
  transform: translateY(0);
}

.trainer-card-body {
  padding: 16px 0 0;
}


.trainer-team-grid .trainer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trainer-team-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.step-card,
.goal-card {
  height: 100%;
}

.step-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.step-card-title,
.goal-card-title {
  display: block;
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  color: var(--text);
}

.step-card p,
.goal-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.goal-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(217, 184, 106, 0.16);
  color: var(--accent-deep);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.review-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px;
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-slider-shell {
  position: relative;
}

.review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 5);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-slider .review-card {
  width: 100%;
  min-height: 100%;
  scroll-snap-align: start;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-slider .review-card-image {
  aspect-ratio: 4 / 5;
}

.review-slider-button {
  position: absolute;
  inset: 50% auto auto 16px;
  transform: translateY(-50%);
  z-index: 2;
}

.review-slider-button[data-action="slider-next"] {
  inset: 50% 16px auto auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background: var(--text);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(217, 184, 106, 0.18);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.badge-strong {
  background: var(--accent);
}

.pricing-card.featured .badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 34px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.16);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 16px 0 20px;
}

.price strong {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-card .check-list {
  margin-bottom: auto;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  color: var(--accent-deep);
  font-weight: 700;
}

.pricing-card .btn,
.pricing-card .btn-light {
  width: min(100%, 308px);
  margin: 28px auto 0;
  justify-content: center;
}

.tariff-slider-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.tariff-slider-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tariff-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.tariff-slider::-webkit-scrollbar {
  display: none;
}

.tariff-slider .pricing-card {
  width: 100%;
  scroll-snap-align: start;
}

.tariff-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.slider-button-side {
  flex: 0 0 auto;
}

.slider-button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}

.slider-button:hover {
  background: var(--accent);
}

.price-placeholder {
  margin: 16px 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-soft);
}

.pricing-card.featured .price-placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--text);
  color: #fff;
}

.cta-banner-soft {
  min-height: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #312b23 100%);
}

.gym-cta-banner .cta-banner-overlay {
  background:
    linear-gradient(90deg, rgba(22, 20, 18, 0.58) 0%, rgba(22, 20, 18, 0.44) 48%, rgba(22, 20, 18, 0.52) 100%);
}

.gym-cta-banner .cta-banner-body {
  max-width: 860px;
}

.cta-banner.is-image {
  min-height: 320px;
}

.cta-banner-media {
  position: absolute;
  inset: 0;
}

.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.68);
}

.cta-banner-body {
  position: relative;
  z-index: 1;
  padding: 44px 32px;
}

.page-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.page-hero-group {
  padding-top: 116px;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-trainers .page-hero-media {
  background: linear-gradient(180deg, #d8c7b2 0%, #c8b59e 100%);
}

.page-hero-trainers .page-hero-media img {
  object-fit: contain;
  object-position: center bottom;
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.18) 0%, rgba(26, 26, 26, 0.38) 38%, rgba(26, 26, 26, 0.72) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 460px);
  align-items: end;
  gap: 28px;
  padding-bottom: 36px;
}

.page-hero-content {
  max-width: 820px;
  padding: 32px 0 48px;
}

.page-hero-aside {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 24px 64px rgba(18, 18, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.page-hero-checks {
  margin-top: 22px;
}

.page-hero-aside .title-md,
.page-hero-aside .check-list li span:last-child {
  color: rgba(255, 255, 255, 0.96);
}

.gym-zone-slider-shell {
  position: relative;
}

.gym-zone-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 18px) / 2.35);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gym-zone-slider::-webkit-scrollbar {
  display: none;
}

.gym-zone-card {
  width: 100%;
  scroll-snap-align: start;
}

.spa-access-note {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(217, 184, 106, 0.14);
  border: 1px solid rgba(217, 184, 106, 0.22);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.spa-card {
  height: 100%;
}

.spa-massage-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.spa-massage-card .program-card-media {
  aspect-ratio: auto;
  min-height: 100%;
}

.spa-massage-card .program-card-media img {
  height: 100%;
}

.page-hero-checks li span:not(.check) {
  color: rgba(255, 255, 255, 0.82);
}

.hall-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.08);
}

.hall-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hall-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-card-body {
  padding: 26px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.08);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(26, 26, 26, 0.12);
}

.program-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(217, 184, 106, 0.14);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.program-card .btn {
  margin: 22px auto 0;
  align-self: center;
}

.modal-program {
  width: min(100%, 980px);
  padding: 26px;
}

.program-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.program-modal-media {
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
}

.program-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.program-modal-body .lead {
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 840px) {
  .program-modal-layout {
    grid-template-columns: 1fr;
  }

  .program-modal-media {
    min-height: 240px;
  }
}

.group-cta-strip {
  padding: 0 0 var(--section-space);
  background: var(--bg);
}

.group-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 54px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #151515 0%, #27231f 48%, #3b342a 100%);
  color: #fff;
}

.gym-visit-cta {
  background: #1d1a17;
}

.group-cta-media,
.group-cta-overlay {
  position: absolute;
  inset: 0;
}

.group-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-cta-overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.62) 46%, rgba(18, 18, 18, 0.58) 100%);
}

.gym-visit-cta .group-cta-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.54) 0%, rgba(18, 16, 14, 0.38) 46%, rgba(18, 16, 14, 0.46) 100%);
}

.group-cta-content {
  position: relative;
  z-index: 1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-box {
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p:last-child {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.metric-card,
.detail-card {
  height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
}

.metric-card {
  text-align: center;
}

.metric-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.metric-card span,
.detail-card p,
.detail-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-stack,
.info-stack {
  display: grid;
  gap: 18px;
}

.feature-stack .soft-card,
.info-stack .card {
  height: 100%;
}

.floor-stack {
  gap: 16px;
}

.floor-card {
  position: relative;
  padding: 22px 24px;
  border: 1px solid rgba(183, 143, 55, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 236, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.05);
}

.floor-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, var(--accent) 0%, #ead39a 100%);
}

.floor-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.floor-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 184, 106, 0.18);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.floor-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.floor-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.floor-visual-card {
  border: 1px solid rgba(183, 143, 55, 0.12);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.05);
}

.cta-panel {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f1f1f, #35322c);
  color: #fff;
}

.cta-panel .lead {
  color: rgba(255, 255, 255, 0.74);
}

.inline-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(217, 184, 106, 0.12);
  color: var(--text-soft);
  line-height: 1.7;
}

.table-note {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.table-wrap table {
  border-right: 1px solid var(--line);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.table-wrap thead th {
  background: rgba(217, 184, 106, 0.14);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.table-wrap thead th:first-child {
  background: rgba(26, 26, 26, 0.06);
}

.table-wrap tbody td:first-child {
  background: rgba(26, 26, 26, 0.04);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.table-wrap-tariffs thead th:nth-child(4) {
  position: relative;
  background: linear-gradient(180deg, rgba(217, 184, 106, 0.2) 0%, rgba(217, 184, 106, 0.12) 100%);
  color: var(--text);
  font-weight: 750;
  box-shadow:
    inset 1px 0 0 rgba(217, 184, 106, 0.24),
    inset -1px 0 0 rgba(217, 184, 106, 0.24),
    inset 0 1px 0 rgba(217, 184, 106, 0.16);
}

.table-wrap-tariffs thead th:nth-child(4)::after {
  content: none;
}

.table-wrap-tariffs tbody td:nth-child(4) {
  background: rgba(255, 252, 245, 0.78);
  font-weight: 600;
  box-shadow:
    inset 1px 0 0 rgba(217, 184, 106, 0.18),
    inset -1px 0 0 rgba(217, 184, 106, 0.18);
}

.table-wrap-tariffs tbody tr:first-child td:nth-child(4) {
  box-shadow:
    inset 1px 0 0 rgba(217, 184, 106, 0.18),
    inset -1px 0 0 rgba(217, 184, 106, 0.18),
    inset 0 1px 0 rgba(217, 184, 106, 0.1);
}

.table-wrap-tariffs tbody tr:last-child td:nth-child(4) {
  box-shadow:
    inset 1px 0 0 rgba(217, 184, 106, 0.18),
    inset -1px 0 0 rgba(217, 184, 106, 0.18),
    inset 0 -1px 0 rgba(217, 184, 106, 0.1);
}

.table-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.schedule-entry {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(217, 184, 106, 0.1);
  color: var(--text);
  line-height: 1.45;
}

.schedule-entry-paid {
  background: rgba(183, 143, 55, 0.18);
  color: #6e5418;
  font-weight: 600;
}

.pill-green {
  background: #e6f7eb;
  color: #187a38;
}

.pill-yellow {
  background: #fff3d6;
  color: #9a6a00;
}

.pill-red {
  background: #fde6e6;
  color: #b12121;
}

.pill-blue {
  background: #e7f0ff;
  color: #2755b6;
}

.faq {
  display: grid;
  gap: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.faq-content {
  display: none;
  padding: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-item.is-open .faq-content {
  display: block;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-filter button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
}

.gallery-filter button.is-active {
  background: var(--accent);
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-slider-shell {
  position: relative;
}

.gallery-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slider .gallery-card {
  width: 100%;
  scroll-snap-align: start;
}

.gallery-slider-controls {
  position: absolute;
  inset: 50% 16px auto 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.gallery-slider-button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
  pointer-events: auto;
}

.gallery-slider-button:hover {
  background: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 184, 106, 0.18);
  color: var(--accent-deep);
  font-size: 22px;
}

.contact-form {
  padding: 22px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
}

.contact-feedback-form {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 239, 230, 0.98) 100%);
  border: 1px solid rgba(183, 143, 55, 0.18);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.08);
  overflow: hidden;
}

.contact-feedback-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--accent) 0%, #ead39a 100%);
}

.contact-feedback-form::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(183, 143, 55, 0.08);
  pointer-events: none;
}

.contact-feedback-form > * {
  position: relative;
  z-index: 1;
}

.legal-hero {
  min-height: 44vh;
}

.legal-hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.legal-content {
  max-width: 980px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 242, 234, 0.98) 100%);
  border: 1px solid rgba(183, 143, 55, 0.12);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.06);
}

.legal-content h2,
.legal-content h3 {
  margin: 0;
  color: var(--text);
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 34px);
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: clamp(18px, 2vw, 22px);
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--text);
}

.legal-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.contact-map-card,
.contact-feedback-form {
  min-height: 640px;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
}

.contact-map-frame {
  flex: 1;
  min-height: 0;
  width: 100%;
}

.contact-map-frame > div,
.contact-map-frame iframe,
.contact-map-frame ymaps {
  width: 100% !important;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(12px);
}

.modal {
  width: min(100%, 960px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

[data-contact-modal] .modal {
  width: min(100%, 720px);
  padding: 24px;
  border-radius: 24px;
}

[data-contact-modal] .title-lg {
  font-size: clamp(22px, 2.6vw, 34px);
}

[data-contact-modal] .lead {
  font-size: 13px;
  line-height: 1.55;
}

[data-contact-modal] .field {
  gap: 8px;
  margin-bottom: 14px;
}

[data-contact-modal] .field label {
  font-size: 13px;
}

[data-contact-modal] .input,
[data-contact-modal] .textarea {
  border-radius: 16px;
  padding: 12px 14px;
}

[data-contact-modal] select.input {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

[data-contact-modal] .input {
  min-height: 48px;
}

[data-contact-modal] .textarea {
  min-height: 112px;
}

[data-contact-modal] .btn {
  width: 100%;
  min-height: 46px;
  font-size: 13px;
}

.modal-breathing {
  width: min(100%, 540px);
  border-radius: 24px;
  background: #fafaf8;
}

.modal-trainer {
  width: min(100%, 1080px);
}

.trainer-modal-quote {
  margin-bottom: 18px !important;
  color: var(--text) !important;
  font-weight: 600;
  font-style: italic;
}

.trainer-modal-body .program-tags {
  margin-top: 22px;
}

.breathing-kicker {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.breathing-panel {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
}

.breathing-progress {
  height: 7px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: #f0eee8;
  margin-bottom: 14px;
}

.breathing-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: #d9b86a;
  transition: width 0.3s ease;
}

.breathing-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.breathing-step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.breathing-panel-done {
  padding: 22px 18px;
  text-align: center;
}

.breathing-done-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3e5bd;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
  opacity: 1;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.intro-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.intro-loader-inner {
  width: min(100%, 1640px);
  text-align: center;
}

.intro-loader-logo {
  width: min(100%, 1280px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  animation: introFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.intro-loader-tagline {
  margin: 42px 0 0;
  color: #a1a1a1;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.25;
  font-weight: 300;
  opacity: 0;
  transform: translateY(18px);
  animation: introFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.splash-intro {
  margin-bottom: 42px;
  text-align: center;
}

.splash-kicker {
  margin: 0;
  color: #676767;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.splash-card-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.splash-card {
  width: 328px;
  min-height: 410px;
  padding: 36px 28px 30px;
  border-radius: 28px;
  border: 3px solid #deded9;
  background: #fff;
  transition: transform 0.35s ease, border-color 0.35s ease,
    background-color 0.35s ease, color 0.35s ease;
}

.splash-card:hover {
  transform: translateY(-4px);
  border-color: #cfcfc8;
}

.splash-card.is-active {
  border-color: #d5d5cf;
  color: var(--text);
}

.splash-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f2ef;
  color: #676767;
}

.splash-icon svg {
  width: 54px;
  height: 54px;
}

.splash-title {
  margin: 0 0 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 700;
}

.splash-copy {
  margin: 0;
  text-align: center;
  color: #676767;
  font-size: 16px;
  line-height: 1.45;
}

.splash-note {
  margin: 52px 0 0;
  text-align: center;
  color: #676767;
  font-size: 16px;
  line-height: 1.45;
}

.footer {
  padding: 64px 0 24px;
  background: var(--text);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-title {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a,
.footer-copy,
.footer-legal,
.footer-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: center;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.breathing-figure {
  --breathing-accent: #d9b86a;
  --breathing-soft: rgba(217, 184, 106, 0.16);
  margin: 4px 0 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
  position: relative;
}

.breathing-figure-body {
  width: min(100%, 260px);
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
  border-radius: 28px;
}

.breathing-figure-aura {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--breathing-soft) 0%, rgba(255, 255, 255, 0) 72%);
  transform: translateY(0) scale(1);
  filter: blur(14px);
  pointer-events: none;
}

.breathing-figure-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.breathing-figure-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--breathing-accent);
}

.breathing-figure[data-breathing-state="inhale"] {
  --breathing-accent: #d9b86a;
  --breathing-soft: rgba(217, 184, 106, 0.2);
}

.breathing-figure[data-breathing-state="inhale"] .breathing-figure-aura {
  transform: translateY(0) scale(1.02);
}

.breathing-figure[data-breathing-state="inhale"] .breathing-figure-image {
  transform: scale(1);
  filter: none;
}

.breathing-figure[data-breathing-state="hold"] {
  --breathing-accent: #b78f37;
  --breathing-soft: rgba(183, 143, 55, 0.22);
}

.breathing-figure[data-breathing-state="hold"] .breathing-figure-aura {
  transform: translateY(0) scale(0.92);
}

.breathing-figure[data-breathing-state="hold"] .breathing-figure-image {
  /*transform: scale(0.985);
  filter: saturate(0.92) brightness(0.98);*/
}

.breathing-figure[data-breathing-state="exhale"] {
  --breathing-accent: #8ea993;
  --breathing-soft: rgba(142, 169, 147, 0.22);
}

.breathing-figure[data-breathing-state="exhale"] .breathing-figure-aura {
  transform: translateY(0) scale(1.06);
}

.breathing-figure[data-breathing-state="exhale"] .breathing-figure-image {
  /*transform: scale(1);
  filter: saturate(0.95) brightness(0.97);*/
}


@media (max-width: 1440px) {
  :root {
    --section-space: 64px;
    --section-space-tight: 46px;
  }

  .display-title {
    font-size: clamp(34px, 5.2vw, 62px);
  }

  .title-xl {
    font-size: clamp(26px, 3.8vw, 46px);
  }

  .title-lg {
    font-size: clamp(22px, 2.4vw, 34px);
  }

  .hero-content {
    width: min(100%, 480px);
    padding: 112px 0 64px;
  }

  .cta-banner-body {
    padding: 40px 28px;
  }
}

@media (max-width: 1180px) {
  .tariff-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .review-slider {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .gym-zone-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  :root {
    --section-space: 56px;
    --section-space-tight: 40px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-row {
    min-height: 76px;
  }

  .brand-logo {
    width: 170px;
  }

  .tariff-slider-row {
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .page-hero {
    min-height: 68vh;
  }

  .page-hero-content {
    padding: 52px 0 58px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero-aside {
    justify-self: stretch;
    max-width: none;
  }

  .hero-content {
    width: min(100%, 440px);
    padding: 104px 0 56px;
  }

  .nav-link,
  .nav-button,
  .phone-link,
  .header-actions .btn {
    max-width: none;
    width: auto;
    white-space: nowrap;
  }

  .zone-grid,
  .pricing-grid,
  .program-grid,
  .grid-4,
  .grid-5,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .split,
  .section-head,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .contact-map-card,
  .contact-feedback-form {
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .display-title {
    font-size: clamp(30px, 7.5vw, 46px);
  }

  .title-xl {
    font-size: clamp(24px, 5.5vw, 34px);
  }

  .title-lg {
    font-size: clamp(20px, 4vw, 28px);
  }

  .lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-content {
    width: 100%;
    max-width: 460px;
    padding: 104px 0 56px;
  }

  .card,
  .soft-card,
  .pricing-card,
  .metric-card,
  .detail-card,
  .contact-form {
    padding: 20px;
  }

  .cta-banner-body,
  .cta-panel {
    padding: 24px;
  }

  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .zone-card-featured {
    min-height: 180px;
  }

  .zone-card-tall {
    min-height: 180px;
  }

  .modal {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 840px) {
  .intro-loader-logo {
    width: min(100%, 780px);
  }

  .intro-loader-tagline {
    margin-top: 28px;
    font-size: 18px;
  }

  .splash-intro {
    margin-bottom: 32px;
  }

  .splash-card {
    width: min(100%, 360px);
    min-height: 420px;
    padding: 40px 28px 32px;
  }

  .splash-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 32px;
  }

  .splash-title {
    font-size: 28px;
  }

  .splash-copy,
  .splash-note {
    font-size: 16px;
  }

  .display-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .title-xl {
    font-size: clamp(22px, 7vw, 32px);
  }

  .title-lg {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .title-md {
    font-size: clamp(17px, 4.4vw, 22px);
  }

  .lead {
    font-size: 14px;
    line-height: 1.58;
  }

  :root {
    --section-space: 48px;
    --section-space-tight: 34px;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 34px;
  }

  .page-hero-group {
    padding-top: 92px;
  }

  .page-hero {
    min-height: 62vh;
  }

  .page-hero-content {
    padding: 34px 0 40px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero-aside {
    padding: 22px;
  }

  .hero-stats,
  .grid-3,
  .grid-2,
  .grid-5,
  .gallery-grid,
  .pricing-grid,
  .program-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .zone-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

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

  .footer-legal {
    justify-content: flex-start;
    text-align: left;
  }

  .zone-card,
  .zone-card.zone-card-wide,
  .zone-card-featured,
  .zone-card-tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }

  .gallery-slider-controls {
    inset-inline: 10px;
  }

  .hero-arrows {
    inset: auto 0 142px 0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transform: translateY(0);
  }

  .modal {
    padding: 20px;
    border-radius: 20px;
  }

  .hall-card-body {
    padding: 22px;
  }

  .program-card-body,
  .group-cta-inner {
    padding: 22px;
  }

  .review-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .gym-zone-slider {
    grid-auto-columns: calc((100% - 18px) / 1.2);
  }

  .spa-massage-card {
    grid-template-columns: 1fr;
  }

  .group-cta-overlay {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.78) 0%, rgba(18, 18, 18, 0.66) 100%);
  }

  .hero-arrow {
    font-size: 28px;
  }
}

@media (max-width: 1180px) {
  .gallery-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .gallery-slider {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 560px) {
  .tariff-slider {
    grid-auto-columns: 100%;
  }

  .review-slider {
    grid-auto-columns: 100%;
  }

  .gym-zone-slider {
    grid-auto-columns: 100%;
  }

  .tariff-slider-row {
    align-items: stretch;
  }

  .slider-button-side {
    align-self: center;
  }

  .page-hero {
    min-height: 58vh;
  }

  .btn,
  .btn-outline,
  .btn-light {
    width: 100%;
    min-height: 46px;
  }

  .header-row {
    min-height: 70px;
  }

  .brand-logo {
    width: 152px;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .hero-arrows {
    inset: auto 0 168px 0;
    padding: 0 8px;
    transform: translateY(0);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card,
  .soft-card,
  .pricing-card,
  .metric-card,
  .detail-card,
  .contact-form,
  .modal,
  .splash-card,
  .cta-panel {
    padding: 18px;
  }

  .cta-banner-body {
    padding: 20px 18px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .trainer-card-quote {
    inset: auto 16px 16px 16px;
    font-size: 13px;
  }

  .footer {
    padding-top: 56px;
  }
}

#programs {
  scroll-margin-top: 120px;
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding-inline: 24px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .header-row {
    min-height: 76px;
  }

  .brand-logo {
    width: 150px;
  }

  .burger {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .section-head .btn-row,
  .section-head .btn,
  .section-head .btn-light,
  .section-head .btn-outline {
    width: 100%;
  }

  .title-lg {
    font-size: clamp(28px, 8.4vw, 34px);
    line-height: 1.08;
  }

  .title-md {
    font-size: clamp(22px, 6.8vw, 28px);
    line-height: 1.12;
  }

  .lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .program-grid,
  .pricing-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .soft-card,
  .goal-card,
  .program-card,
  .spa-card {
    width: 100%;
  }

  .soft-card,
  .goal-card {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .goal-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
  }

  .goal-card-title {
    font-size: 26px;
  }

  .goal-card p {
    font-size: 19px;
  }

  .program-card {
    border-radius: 24px;
  }

  .program-card-media {
    aspect-ratio: 16 / 9;
  }

  .program-card-body {
    padding: 24px;
  }

  .program-card-body .lead {
    font-size: 17px !important;
  }

  .spa-access-note {
    display: flex;
    width: 100%;
    min-height: 0;
    padding: 14px 18px;
    border-radius: 22px;
    font-size: 17px;
    line-height: 1.35;
  }

  .page-hero-group {
    padding-top: 88px;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 56px 0 34px;
  }

  .page-hero-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 18px;
    padding-bottom: 28px;
  }

  .page-hero-layout > *,
  .page-hero-content,
  .page-hero-copy,
  .page-hero-aside {
    min-width: 0;
    max-width: 100%;
  }

  .page-hero-aside {
    justify-self: start;
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    padding: 22px;
    border-radius: 24px;
  }

  .page-hero .title-xl,
  .page-hero .lead {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .page-hero-aside .title-md {
    font-size: clamp(24px, 7.2vw, 28px);
    overflow-wrap: anywhere;
  }

  .page-hero-aside .check-list li {
    min-width: 0;
  }

  .page-hero-aside .check-list li span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .page-hero-aside .btn-row,
  .page-hero-aside .btn,
  .page-hero-aside .btn-light {
    width: 100%;
  }

  .btn-row {
    width: 100%;
  }

  .btn,
  .btn-outline,
  .btn-light {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .group-cta-inner,
  .cta-banner,
  .cta-panel {
    border-radius: 24px;
  }

  .group-cta-inner {
    padding: 28px 22px;
  }

  .mobile-nav {
    width: min(100%, 360px);
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .container {
    padding-inline: 20px;
  }

  .brand-logo {
    width: 142px;
  }

  .burger {
    width: 50px;
    height: 50px;
  }

  .title-lg {
    font-size: 28px;
  }

  .title-md,
  .goal-card-title {
    font-size: 24px;
  }
}
