/* ============================================================
   Lyberty — главная страница
   Палитра: navy + бирюза + оранжевый
   Шрифт: Poppins
   ============================================================ */

:root {
  --c-dark:    #0a2e4a;   /* основной тёмный navy */
  --c-dark-2:  #061f33;   /* глубже для градиентов */
  --c-light:   #ffffff;
  --c-bg-alt:  #f4f6f8;   /* альт. фон секций */
  --c-accent:  #1ab394;   /* бирюза — главный CTA (контраст к navy) */
  --c-accent-2:#f5a623;   /* оранжевый — бейджи */
  --c-text:    #0a2e4a;   /* основной текст */
  --c-muted:   #5e6b7a;   /* второстепенный текст */
  --c-border:  #e3e8ee;
  --shadow:    0 8px 32px rgba(10,46,74,.12);
  --radius:    12px;
  --container: 1200px;
  --header-h:  90px;
  --promo-h:   60px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: 'Poppins', -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--c-text);
  background: var(--c-light);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body { padding-top: 0; } /* не сдвигаем — канвас hero абсолютный */

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 700; color: inherit; }
p { margin: 0 0 1em; }
.is-hidden { display: none !important; }

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

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.eyebrow--accent { color: var(--c-accent); }
.eyebrow--light { color: rgba(255,255,255,.85); }
.eyebrow--xl {
  font-size: clamp(20px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; }
.section__head--light h2 { color: var(--c-light); }
.section__lead { color: var(--c-muted); font-size: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center; cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 8px 24px rgba(74,23,217,.35);
}
.btn--primary:hover { background: #15907a; }
.btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   1. PROMO-BAR
   ============================================================ */
.promo-bar {
  background: var(--c-dark); color: #fff;
  font-size: 15px;
  position: relative; z-index: 50;
}
.promo-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: var(--promo-h);
  gap: 24px;
}
.promo-bar__text {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
}
.promo-bar__text i { color: #fff; font-size: 15px; }
.promo-bar__right {
  display: flex; align-items: center; gap: 22px;
}
.promo-bar__phone {
  font-weight: 700; color: #fff;
  letter-spacing: 0.01em;
}
.promo-bar__phone:hover { color: var(--c-accent); }
.promo-bar__icons { display: flex; gap: 14px; align-items: center; }
.promo-bar__icons a {
  color: #fff; font-size: 18px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color .2s, background .2s;
}
.promo-bar__icons a:hover { color: var(--c-dark); background: #fff; }

@media (max-width: 768px) {
  .promo-bar__text { display: none; } /* на мобиле оставляем телефон + иконки */
  .promo-bar__right { margin-left: auto; gap: 14px; }
  .promo-bar__icons { gap: 10px; }
}

/* ============================================================
   2. HEADER
   ============================================================ */
.header {
  position: sticky; top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  z-index: 40;
  height: var(--header-h);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.header__logo img { height: 60px; width: auto; }
.header__logo--white { display: none; }

.nav {
  display: flex; gap: 22px; align-items: center;
  font-size: 20px; font-weight: 500;
}
.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--c-text);
  transition: color .2s;
}
.nav a:hover { color: var(--c-accent); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--c-accent);
  transition: width .2s;
}
.nav a:hover::after { width: 100%; }

.header__icons {
  display: none; /* иконки переехали в промо-бар */
}

.header__burger {
  display: none;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--c-text);
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .header__burger { display: block; }
}

/* ============================================================
   3. HERO (фото трибун + WebGL-волны)
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--promo-h));
  min-height: 560px;
  overflow: hidden;
  background: var(--c-dark);
}

/* Фоновое фото — трибуны бассейна (на весь hero) */
.hero__photo {
  position: absolute; inset: 0;
  z-index: 0;
  background-image: url('stadiumfoto.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* Тёмный gradient в верхней части — для читаемости заголовка */
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,46,74,.78) 0%,
    rgba(10,46,74,.50) 25%,
    rgba(10,46,74,.10) 28%,
    rgba(10,46,74,0)   32%
  );
  pointer-events: none;
}

/* WebGL-волны: нижние 30% hero (фото и вода — в этой зоне) */
#hero-canvas {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  width: 100%; height: 30%;
  z-index: 1;
}

/* Горизонтальный телефон — вода прижата к низу, hero на всю высоту */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; }
  #hero-canvas { height: 50% !important; bottom: 0 !important; }
}

.hero__overlay {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  text-align: center;
}
.hero__content { color: #fff; max-width: 880px; width: 100%; }
.hero__content--lift {
  align-self: flex-start;
  padding-top: 20vh;
}
.hero__title {
  font-size: clamp(40px, 9vw, 140px);
  font-weight: 800;
  line-height: 0.95;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
  display: flex; gap: 4px; flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero__title { font-size: clamp(36px, 11vw, 72px); }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(32px, 12vw, 56px); }
}
.hero__title .letter {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: letterUp 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes letterUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  margin: 0 auto 32px;
  max-width: 560px;
  opacity: 0.92;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.8);
  font-size: 12px; letter-spacing: 0.3em;
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%      { transform: translate(-50%, 6px); opacity: 0.3; }
}

@media (max-width: 640px) {
  .hero { min-height: 480px; }
  .hero__cta .btn { flex: 1 1 100%; }
}

/* ============================================================
   4. STRIP (announcement)
   ============================================================ */
.strip {
  background: var(--c-accent);
  color: #fff;
  padding: 16px 0;
}
.strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: 15px; font-weight: 500;
  text-align: center;
}
.strip__badge { font-size: 20px; }
.strip__text strong { font-weight: 700; }

/* ============================================================
   5. SECTION (базовая)
   ============================================================ */
.section {
  padding: 80px 0;
}
.section--alt { background: var(--c-bg-alt); }
.section--dark {
  background: var(--c-dark); color: #fff;
}
.section--dark .eyebrow--accent { color: var(--c-accent); }
.strip {
  background: var(--c-accent);
  color: #fff;
  padding: 16px 0;
}
.strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: 15px; font-weight: 500;
  text-align: center;
}
.strip__badge { font-size: 20px; }
.strip__text strong { font-weight: 700; }
.section--cta {
  background: linear-gradient(135deg, var(--c-dark), var(--c-dark-2));
  color: #fff;
}

@media (max-width: 640px) { .section { padding: 56px 0; } }

/* ============================================================
   6. О КЛУБЕ
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}
.about h2 { font-size: clamp(28px, 3.5vw, 44px); }
.about p { color: var(--c-muted); font-size: 17px; }
.about__photo {
  aspect-ratio: 1 / 1;            /* квадрат */
  max-width: 360px;               /* не растягивать */
  border-radius: var(--radius);   /* мягкое скругление */
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* заполняет круг, обрезает лишнее */
  display: block;
}
/* Логотип вместо фото (page-about) — большой квадрат с белыми отступами */
.about__logo {
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  overflow: hidden;
}
.about__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__logo { max-width: 320px; margin: 0 auto; padding: 32px; aspect-ratio: 1 / 1; }
}
@media (max-width: 480px) {
  .about__logo { max-width: 260px; padding: 24px; }
}

/* ============================================================
   7. CARDS (общая стилизация)
   ============================================================ */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(10,46,74,.06);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,46,74,.12);
}
.card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 12px; font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(26, 179, 148, 0.08);
  border: 2px solid var(--c-accent);
  border-radius: 8px;
  transition: background .2s, color .2s, transform .15s, gap .2s;
}
.card__link:hover {
  background: var(--c-accent);
  color: #fff;
  gap: 12px;
  transform: translateY(-2px);
}

.placeholder {
  background: linear-gradient(135deg, #e3e8ee, #c7d0db);
  color: #5e6b7a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

/* Буллеты с акцентной точкой */
.bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px; color: var(--c-muted);
}
.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px; color: var(--c-muted);
  line-height: 1.6;
}
.bullets li::before {
  content: ''; position: absolute; left: 4px; top: 50%;
  width: 8px; height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   8. ПРОГРАММЫ
   ============================================================ */
.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program h3 { font-size: 22px; }
.program--cta {
  background: var(--c-dark);
  color: #fff;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
}
.program--cta h3 { color: #fff; }
.program--cta p { color: rgba(255,255,255,.85); }

/* ============================================================
   9. ТРЕНЕРЫ
   ============================================================ */
.coaches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 880px; margin: 0 auto;
}
.coach { text-align: center; }
.coach__photo {
  width: 240px; height: 240px;
  border-radius: var(--radius);
  margin: 0 auto 20px;
  aspect-ratio: 1;
  overflow: hidden;
}
.coach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coach h3 { font-size: 22px; }
.coach__role {
  display: block;
  color: var(--c-accent);
  font-size: 14px; font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================================
   10. ЗВЁЗДЫ (WebGL)
   ============================================================ */
.stars-canvas {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  background: #061f33;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
#stars-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.stars-canvas__hint {
  position: absolute; bottom: 8px; right: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.star { text-align: center; padding: 24px; }
.star__photo {
  width: 160px; height: 160px;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e3e8ee, #c7d0db);
  position: relative;
}
.star__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.star__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 48px/1 Poppins, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-dark));
  letter-spacing: 0.02em;
}
.star__photo--placeholder span {
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
/* Светлая секция "Для нас важнее человек, чем медаль" — текст слева, фото справа */
.section--care {
  background: #ffffff;
  color: var(--c-text);
}
.care-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.care-row__text { text-align: left; }
.care-row__text p {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  margin: 0 0 20px;
  color: var(--c-text);
}
.care-text__lead { font-weight: 500; }
.care-text__quote {
  font-size: clamp(17px, 2vw, 21px) !important;
  line-height: 1.55;
  font-weight: 500;
  color: var(--c-dark) !important;
  margin: 28px 0 !important;
}
.care-text__cta { margin-top: 12px; }
.care-row__photo {
  display: flex;
  align-items: stretch;
}
.care-row__photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--c-accent), var(--c-dark));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  gap: 12px;
}
.care-row__photo-placeholder i { font-size: 48px; opacity: 0.6; }
.care-row__photo-placeholder span { font-size: 14px; letter-spacing: 0.05em; }
.care-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .care-row { grid-template-columns: 1fr; gap: 32px; }
  .care-row__photo-placeholder { aspect-ratio: 3 / 2; max-height: 320px; }
}
.star h3 { font-size: 18px; }
.star__year {
  display: block;
  color: var(--c-accent-2);
  font-size: 13px; font-weight: 600;
  margin-bottom: 8px;
}
.star p { font-size: 14px; color: var(--c-muted); }
.section--dark .star { background: rgba(255,255,255,.05); }
.section--dark .star p { color: rgba(255,255,255,.7); }

/* ============================================================
   11. НОВОСТИ
   ============================================================ */
.news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.news-card__cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--c-bg-alt);
}
.news-card__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.news-card:hover .news-card__cover img { transform: scale(1.04); }
.news-card__date {
  display: block;
  color: var(--c-accent-2);
  font-size: 13px; font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.news-card h3 { font-size: 20px; }
.news-card p { font-size: 15px; color: var(--c-muted); }

/* ====== Пагинация ====== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 48px auto 0;
  flex-wrap: wrap;
}
.pagination__item,
.pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, color .2s, border-color .2s;
}
.pagination__item:hover,
.pagination__arrow:hover {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.pagination__item.is-current {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.pagination__arrow.is-disabled {
  opacity: .4;
  pointer-events: none;
}

/* ====== Отдельная страница новости (2 колонки: текст + галерея) ====== */
.news-detail {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.news-article__date {
  display: inline-block;
  background: var(--c-accent-2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.news-article__body p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--c-text);
}
.news-detail__gallery {
  position: sticky;
  top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.news-detail__gallery .news-gallery__item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.news-gallery__item {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.news-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.news-gallery__item:hover img { transform: scale(1.05); }
.news-article__back {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  .news-detail { grid-template-columns: 1fr; gap: 32px; }
  .news-detail__gallery { position: static; }
}
.news-article__placeholder {
  text-align: center;
  padding: 48px 24px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  color: var(--c-muted);
}
.news-article__placeholder i {
  font-size: 40px;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.news-article__placeholder p {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--c-text);
}
.news-article__source {
  font-size: 13px;
  color: var(--c-muted);
}
.news-article__source a {
  color: var(--c-accent);
  text-decoration: underline;
}

/* ============================================================
   12. PRICE TABLE
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: separate; border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.price-table th {
  background: var(--c-dark);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600;
}
.price-table td { font-size: 15px; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--c-bg-alt); }

.price-note { display: none; } /* старая цена-таблица не используется */
.price-cta { display: none; }

/* --- Что входит в занятие --- */
.price-intro { margin-bottom: 64px; text-align: center; }
.price-intro h2 { margin-bottom: 32px; }
.price-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.price-intro__item {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 12px rgba(10,46,74,.04);
}
.price-intro__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent);
  color: #fff;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 16px;
}
.price-intro__item h3 { font-size: 17px; margin-bottom: 8px; }
.price-intro__item p { font-size: 14px; line-height: 1.6; color: var(--c-muted); margin: 0; }

/* --- Категория (Маленькие / Взрослые) --- */
.price-category {
  margin-bottom: 56px;
  padding: 48px 40px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg, 20px);
  box-shadow: 0 8px 24px rgba(10,46,74,.06);
}
.price-category__head { text-align: center; margin-bottom: 32px; }
.price-category__tag {
  display: inline-block;
  padding: 6px 24px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* Параллелограмм: верхняя сторона сдвинута вправо относительно нижней */
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  margin-bottom: 12px;
}
.price-category__title {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 12px;
}
.price-category__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
}

/* --- Тарифы (3 компактные колонки внутри блока) --- */
.price-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px;
}
.plan {
  position: relative;
  padding: 24px 20px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: 0 4px 12px rgba(10,46,74,.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.plan__freq {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}
.plan__duration-small {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 0;
  border-top: 1px solid var(--c-border);
  margin-top: 6px;
}
.plan__price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.plan__price-unit {
  font-size: 14px;
  color: var(--c-muted);
}
.plan--popular {
  /* выделение популярности отключено */
}
.plan__badge {
  /* выделение популярности отключено */
  display: none;
}
.price-category__cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* --- Подробный контент внутри блока --- */
.price-category__content {
  margin-bottom: 32px;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.price-category__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--c-text);
}
.price-category__content ul.bullets {
  columns: 2;
  column-gap: 32px;
}
.price-category__content ul.bullets li {
  font-size: 18px;
  padding: 8px 0 8px 22px;
  break-inside: avoid;
}
.price-category__highlight {
  margin: 20px 0 0;
  padding: 16px 20px;
  background: rgba(26,179,148,.08);
  border-left: 4px solid var(--c-accent);
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
}
@media (max-width: 640px) {
  .price-category__content ul.bullets { columns: 1; }
  .price-category__content { padding: 20px; }
}

/* --- Индивидуальная тренировка (светлый блок как остальные) --- */
.price-category--individual {
  background: var(--c-bg-alt);
  border: none;
}
.price-category__tag--violet {
  background: var(--c-accent-2);
}

.price-individual__price {
  text-align: center;
  padding: 32px 24px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.price-individual__price--light { background: var(--c-bg-alt); }
.price-individual__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 8px;
}
.price-individual__unit {
  font-size: 14px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.price-individual__price .btn { width: 100%; max-width: 320px; margin: 0 auto; }

@media (max-width: 960px) {
  .price-individual {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
}

/* --- 3 колонки со скидками, документами, оплатой --- */
.price-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  margin-top: 32px;
}
.price-notes__col h3 { font-size: 17px; margin-bottom: 12px; color: var(--c-text); }
.price-notes__col ul.bullets li { font-size: 14px; }

.price-bottom-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px auto;
  text-align: center;
}

@media (max-width: 960px) {
  .price-intro__grid { grid-template-columns: repeat(2, 1fr); }
  .price-plans { grid-template-columns: 1fr; }
  .plan--popular { transform: none; }
  .price-notes { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .price-category { padding: 32px 20px; }
}
@media (max-width: 640px) {
  .price-intro__grid { grid-template-columns: 1fr; }
  .price-intro__item { padding: 20px; }
}

/* ============================================================
   13. ГАЛЕРЕЯ
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: auto;
  position: relative;
  cursor: zoom-in;
  background: var(--c-bg-alt, #f4f6f8);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item.wide { grid-column: span 2; }
.gallery__item.tall { grid-row: span 2; }
.gallery-cta { text-align: center; }
.gallery-cta .btn--ghost {
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.gallery-cta .btn--ghost:hover { background: var(--c-accent); color: #fff; }

@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.wide, .gallery__item.tall { grid-column: auto; grid-row: auto; }
}

/* ===== Лайтбокс ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 74, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 28px;
}
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .lightbox__nav { width: 40px; height: 40px; font-size: 18px; }
  .lightbox__close { width: 40px; height: 40px; font-size: 22px; }
}

/* ============================================================
   14. SIGNUP (CTA + form)
   ============================================================ */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.signup__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
}
.signup__text p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
}
.signup__form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  gap: 16px;
  color: var(--c-text);
}
.signup__form label { display: flex; flex-direction: column; gap: 6px; }
.signup__form span { font-size: 13px; font-weight: 600; color: var(--c-muted); }
.signup__form input,
.signup__form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-bg-alt);
  color: var(--c-text);
  transition: border-color .2s, background .2s;
}
.signup__form input:focus,
.signup__form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
}
.signup__form button { margin-top: 8px; }
.signup__status {
  font-size: 14px;
  line-height: 1.4;
  margin: 8px 0 0;
  min-height: 1em;
}
.signup__status--ok    { color: #15907a; font-weight: 600; }
.signup__status--error { color: #c0392b; font-weight: 600; }
.signup__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
}
.signup__agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.signup__agree a {
  color: var(--c-accent);
  text-decoration: underline;
}
.signup__agree a:hover { color: var(--c-accent-dark); }

/* Страница согласия на обработку ПД */
.consent {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 56px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  color: var(--c-text);
  line-height: 1.7;
}
.consent h2, .consent h3 { margin-top: 0; color: var(--c-text); }
.consent p { margin: 0 0 16px; }
.consent__list {
  padding-left: 0;
  list-style: none;
  counter-reset: consent-counter;
  margin: 24px 0;
}
.consent__list li {
  counter-increment: consent-counter;
  position: relative;
  padding: 0 0 16px 48px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.consent__list li:last-child { border-bottom: none; }
.consent__list li::before {
  content: counter(consent-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent__contacts {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 46, 74, 0.1);
}
.consent__contacts h3 { margin-top: 0; font-size: 18px; }
.consent__contacts p { margin: 0 0 8px; font-size: 14px; }
.consent__contacts a { color: var(--c-accent); text-decoration: none; }
.consent__contacts a:hover { text-decoration: underline; }
.consent__date {
  margin-top: 32px;
  font-size: 13px;
  color: var(--c-muted);
  text-align: right;
  font-style: italic;
}

@media (max-width: 768px) {
  .consent { padding: 32px 24px; }
  .consent__list li { padding-left: 40px; }
  .consent__list li::before { width: 28px; height: 28px; font-size: 13px; }
}

@media (max-width: 768px) {
  .signup { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   15. FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(10,46,74,.04);
  transition: box-shadow .2s;
}
.faq__item[open] { box-shadow: 0 6px 20px rgba(10,46,74,.1); }
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 8px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--c-accent);
  font-weight: 300;
  transition: transform .2s;
}
.faq__item[open] summary::after {
  content: '−';
}
.faq__item p {
  margin: 16px 0 0;
  color: var(--c-muted);
  font-size: 15px;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark-2);
  color: rgba(255,255,255,.85);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__logo img { width: 150px; height: auto; margin-bottom: 16px; }
.footer__col p { font-size: 14px; line-height: 1.8; }
.footer__col ul li { margin-bottom: 8px; font-size: 14px; }

/* Навигация в футере — две колонки, чтобы высота была компактной */
.footer__col--nav ul {
  columns: 2;
  column-gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__col--nav ul li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

/* Кнопка записи в первой колонке (под лого) */
/* .footer__col--brand .btn — стиль удалён: кнопка переехала в .footer__social */
.footer__col a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer__col a:hover { color: var(--c-accent); }
.footer__social { display: flex; gap: 10px; margin-top: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  transition: background .2s;
}
.footer__social a:hover { background: rgba(26,179,148,.85); color: #fff; transform: translateY(-2px); }

/* Кнопка «Записаться» — в одном ряду с соцсетями, тот же стиль */
.footer__social-cta {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  transition: background .2s;
  margin-left: 6px; /* лёгкий отступ от соцсетей */
}
.footer__social-cta:hover { background: rgba(26,179,148,.85); color: #fff; transform: translateY(-2px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.footer__credit:hover { color: rgba(255,255,255,.85); }
.footer__credit-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__credit-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}
.footer__credit-text small {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   17. STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 30;
  padding: 14px 24px;
  background: var(--c-accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(74,23,217,.5);
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
}
.sticky-cta.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover { background: #15907a; }

@media (max-width: 480px) {
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ============================================================
   PAGE HERO (короткий баннер на внутренних страницах)
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: #fff;
  padding: 40px 0 50px;
  margin-top: 0;          /* header sticky — под него и так заходит */
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(26,179,148,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(245,166,35,.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Модификатор: подложка-фото с затемнением */
.page-hero--photo { background: var(--c-dark); }
/* Модификатор: бирюзовый фон (без фото/оверлея) */
.page-hero--turquoise {
  background: #06316b;
  color: #fff;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: url("bg.jpg") center / cover no-repeat;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 46, 74, 0.5);
  z-index: 1;
}
.page-hero--photo .container { position: relative; z-index: 3; }
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero__breadcrumbs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  font-size: 16px; color: #7cd9fc;
  margin-bottom: 18px;
}
.page-hero__breadcrumbs a { color: #7cd9fc; transition: color .2s; }
.page-hero__breadcrumbs a:hover { color: var(--c-accent); }
.page-hero__breadcrumbs span { opacity: .5; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.1;
}
.page-hero h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.2;
}
.page-hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Кастомный аудио-плеер гимна ===== */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 24px auto 8px;
  padding: 10px 14px;
  background: rgba(10, 46, 74, 0.55);
  border: none;
  border-radius: 16px;
  color: #fff;
}
.audio-player__btn,
.audio-player__mute {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--c-accent, #1ab394);
  color: #ffffff;
  font: 600 14px/1 Poppins, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.audio-player__btn i,
.audio-player__mute i { font-size: 15px; }
.audio-player__btn:hover,
.audio-player__mute:hover {
  background: #15907a;
  transform: translateY(-1px);
}
.audio-player__btn:focus-visible,
.audio-player__mute:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.audio-player__info {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.audio-player__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-player__time {
  font-size: 12px;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.audio-player__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  cursor: pointer;
}
.audio-player__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--c-accent, #1ab394);
  border-radius: 999px;
  transition: width 0.1s linear;
}
@media (max-width: 480px) {
  .audio-player {
    padding: 8px 10px;
    gap: 8px;
  }
  .audio-player__btn,
  .audio-player__mute {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .audio-player__title { font-size: 13px; }
}

/* ===== Плеер в hero (поверх тёмного фото трибун, по центру, без обводки) ===== */
.audio-player--hero {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  margin: 0;
  background: rgba(10, 46, 74, 0.55);
}
@media (max-height: 700px) {
  .audio-player--hero { bottom: 20px; }
}
@media (max-width: 480px) {
  .audio-player--hero {
    bottom: 16px;
    width: calc(100% - 24px);
  }
}

/* ============================================================
   PAGE CONTENT (контентная область внутренней страницы)
   ============================================================ */
.page-content {
  padding: 64px 0;
}
/* ===== Why-us: 6 плиток с иконками ===== */
.why-us {
  padding: 80px 0;
  background: var(--c-bg-alt);
}
.why-us__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.why-us__head h2 { margin: 12px 0 12px; }
.why-us__head p { color: var(--c-muted); font-size: 17px; }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-us__item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(10,46,74,.05);
  transition: transform .25s, box-shadow .25s;
}
.why-us__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10,46,74,.10);
}
.why-us__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(74,23,217,.1);
  color: var(--c-accent);
  font-size: 24px;
  margin-bottom: 20px;
}
.why-us__item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 10px;
}
.why-us__item p {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ===== Галерея ученицы (страница звезды) ===== */
.star-gallery {
  margin: 48px 0 0;
}
.star-gallery__head {
  margin-bottom: 24px;
}
.star-gallery__head h3 {
  margin: 8px 0 6px;
  font-size: 26px;
  color: var(--c-text);
}
.star-gallery__head p {
  color: var(--c-muted);
  font-size: 15px;
  margin: 0;
}
.star-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.star-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--c-bg, #f5f7f9);
}
.star-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.star-gallery__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .star-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .star-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .star-gallery__head h3 { font-size: 22px; }
}

/* ===== Логотип клуба (page-about) ===== */
.about-logo {
  padding: 80px 0;
  background: #fff;
}
.about-logo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-logo__img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(26, 179, 148, 0.18));
}

/* ===== Фотогалерея (page-about) ===== */
.about-gallery {
  padding: 60px 0 100px;
  background: #fff;
}
.about-gallery__head {
  text-align: center;
  margin-bottom: 40px;
}
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--c-bg, #f5f7f9);
  position: relative;
}
.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-gallery__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .about-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .about-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-logo { padding: 60px 0; }
}
/* Волна-разделитель в нижней части page-hero */
.page-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.page-hero__wave svg {
  display: block;
  width: 100%;
  height: 70px;
}
@media (max-width: 768px) {
  .page-hero__wave svg { height: 40px; }
}
.page-content > .container > * + * { margin-top: 32px; }
.page-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 16px;
  color: var(--c-text);
}
.page-content h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin: 0 0 12px;
  color: var(--c-text);
}
.page-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
}
.page-content ul.bullets { margin: 16px 0; }

/* Узкий контейнер для текстовых разделов */
.page-content .container--narrow { max-width: 880px; }

/* Ссылка «назад» в конце страницы */
.page-back {
  display: inline-block;
  margin-top: 40px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 15px;
  transition: gap .2s;
}
.page-back:hover { color: #15907a; }

/* Хлебные крошки внутри page-content (для детальных страниц) */
.page-content .page-hero__breadcrumbs {
  margin-bottom: 32px;
  justify-content: flex-start;
  color: var(--c-muted);
}
.page-content .page-hero__breadcrumbs a { color: var(--c-muted); }
.page-content .page-hero__breadcrumbs a:hover { color: var(--c-accent); }

/* Карточка-детали для тренеров/звёзд */
.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.detail-hero__photo {
  width: 320px; height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #e3e8ee, #c7d0db);
}
.detail-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-hero__body h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  line-height: 1.1;
}
.detail-hero__role {
  display: inline-block;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.detail-hero__body p { font-size: 17px; line-height: 1.7; color: var(--c-text); }

.detail-social {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
.detail-social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--c-bg-alt);
  border-radius: 8px;
  color: var(--c-text);
  font-size: 14px; font-weight: 500;
  transition: background .2s, color .2s, transform .2s;
}
.detail-social a:hover {
  background: var(--c-accent);
  color: #fff !important;
  transform: translateY(-2px);
}
.detail-social a:hover i { color: #fff !important; }
.detail-social a i { font-size: 16px; color: var(--c-text); transition: color .2s; }

.detail-cta {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.detail-cta h3 { margin: 0 0 12px; }
.detail-cta p { color: var(--c-muted); margin: 0 0 20px; }

@media (max-width: 768px) {
  .detail-hero { grid-template-columns: 1fr; gap: 24px; }
  .detail-hero__photo { width: 100%; max-width: 320px; height: auto; aspect-ratio: 1; margin: 0 auto; }
}

/* Контактная карточка + карта */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contacts-info {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}
.contacts-info h3 { margin-bottom: 16px; }
.contacts-info p { margin: 0 0 12px; font-size: 16px; }
.contacts-info p strong { color: var(--c-text); display: block; margin-bottom: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.contacts-info a:hover { color: var(--c-accent); }
.contacts-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, #e3e8ee, #c7d0db);
  position: relative;
  aspect-ratio: 825 / 486;
  max-width: 100%;
}
.contacts-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 24px; }
  .contacts-map { min-height: 280px; aspect-ratio: 16 / 11; }
}
@media (max-width: 480px) {
  .contacts-map { min-height: 240px; }
}

/* ============================================================
   Расписание на главной
   ============================================================ */
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.schedule__group {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(10, 46, 74, 0.06);
  border-top: 4px solid var(--c-accent);
}
.schedule__group h3 {
  font-size: 18px;
  margin: 0 0 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-dark);
}
.schedule__day {
  margin-bottom: 16px;
}
.schedule__day:last-child { margin-bottom: 0; }
.schedule__day-name {
  font-weight: 600;
  color: var(--c-accent);
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule__slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(10, 46, 74, 0.1);
  font-size: 14px;
}
.schedule__slot:last-child { border-bottom: none; }
.schedule__slot-time { font-weight: 600; color: var(--c-dark); }
.schedule__slot-type {
  background: rgba(26, 179, 148, 0.1);
  color: var(--c-accent);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
}
.schedule__slot-type--water { background: rgba(74, 158, 217, 0.12); color: #2c6fa3; }

@media (max-width: 960px) {
  .schedule { grid-template-columns: 1fr; gap: 20px; }
}
