/* =========================================================
   Дзюдо-центр — стили. Палитра: тёплая «татамная» — кремово-белый фон,
   мягкий графит вместо чёрного, основной акцент — тёплое золото
   (по цвету татами). Все цвета меняются в блоке :root ниже.
   ========================================================= */

:root {
  /* ===== ЦВЕТА (меняйте здесь) ===== */
  --color-red: #d9a441;           /* основной акцент — тёплое «татамное» золото */
  --color-red-dark: #b5832f;      /* золото потемнее (наведение) */
  --color-gold: #d9a441;          /* то же золото (для исторических ссылок) */
  --color-gold-dark: #b5832f;     /* золото потемнее */
  --color-red2: #d24a3d;          /* тёплый красный — только для фонового декора */

  --color-text: #2b2a28;          /* мягкий тёплый графит (вместо чёрного) */
  --color-muted: #6f675f;         /* приглушённый тёплый текст */
  --color-bg: #fffdfb;            /* тёплый почти-белый (карточки, формы) */
  --color-bg-alt: #f1ece6;        /* тёплый светлый фон плиток */
  --color-border: #e4ddd4;        /* мягкие тёплые границы */
  --color-ink: #2b2a28;           /* тёплый графит (тёмные блоки, кнопки) */

  --color-wa: #25d366;            /* WhatsApp */

  --color-red-soft: rgba(217, 164, 65, 0.14);  /* мягкое золото — только декор */
  --color-red-tint: #f7eccf;                  /* светло-золотой фон плиток/иконок */

  /* ===== РАЗМЕРЫ ===== */
  --container: 1140px;
  --radius: 6px;                  /* жёсткие, почти прямые углы */
  --radius-sm: 4px;
  --shadow: 0 5px 16px rgba(15, 16, 20, 0.14);       /* плотнее, контрастнее */
  --shadow-hover: 0 10px 26px rgba(15, 16, 20, 0.22);
  --header-h: 72px;

  /* Шрифт «плакатных» заголовков */
  --font-display: "Oswald", "Segoe UI", Arial, sans-serif;
}

/* ===== БАЗОВЫЕ СБРОСЫ ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;             /* плавная прокрутка к якорям */
  scroll-padding-top: var(--header-h);  /* отступ под фиксированную шапку */
  background: #f1ece6;                  /* тот же фон, что и .bg-anim (прохладный) */
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
  color: var(--color-text);
  background: transparent;          /* фон даёт фиксированный слой .bg-anim */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== КНОПКИ ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 4px;             /* жёсткие углы */
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Главная кнопка — чёрная */
.btn--primary {
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(17, 19, 23, 0.32);
}
.btn--primary:hover { background: #1c1b18; }

.btn--ghost {
  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn--ghost:hover { background: var(--color-ink); color: #fff; }

.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* Кнопки мессенджеров — однотонные чёрные (в тон главной кнопке) */
.btn--wa, .btn--ig { background: var(--color-ink); color: #fff; }
.btn--wa:hover, .btn--ig:hover { background: #1c1b18; }

/* ===== ЛОГОТИП ===== */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-size: 22px;
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-ink);
}
.logo--light .logo__text { color: #fff; }

/* ===== ШАПКА ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__list { display: flex; gap: 26px; }
.nav__link {
  font-weight: 600;
  color: var(--color-muted);
  position: relative;
  cursor: pointer;                 /* и для пунктов-кнопок без href (Галерея) */
  transition: color .2s ease;
}
.nav__link:hover { color: var(--color-ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 3px;
  background: var(--color-red);
  transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }

.header__cta { padding: 10px 20px; }

/* Бургер (скрыт на десктопе) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  width: 26px;
  margin: 0 auto;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
  position: relative;
  padding: 48px 0 64px;
  background: transparent;          /* фон даёт общий слой .bg-anim */
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));   /* первый экран — целиком */
  display: flex;
  align-items: center;
}

/* =========================================================
   АНИМИРОВАННЫЙ ФОН НА ВЕСЬ САЙТ
   Фиксированный слой (.bg-anim в начале <body>) за всем контентом.
   ========================================================= */
.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -1;                      /* позади всего контента */
  overflow: hidden;
  pointer-events: none;
  background: #f1ece6;              /* единый ровный прохладный фон — без стыков */
}

/* Большие мягкие свечения, которые «дышат» */
.bg-anim .glow { position: absolute; border-radius: 50%; }
.glow--red {
  top: -160px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(210, 74, 61, 0.16), transparent 68%);
  animation: heroGlow 9s ease-in-out infinite;
}
.glow--gold {
  bottom: -180px; left: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.08), transparent 68%);
  animation: heroGlow 11s ease-in-out infinite reverse;
}
.glow--red2 {
  top: 45%; left: 58%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(210, 74, 61, 0.09), transparent 70%);
  animation: drift 16s ease-in-out infinite;
}

/* Плавающие точки */
.bg-anim .dot { position: absolute; border-radius: 50%; opacity: .45; }
.dot--1 { width: 14px; height: 14px; background: var(--color-red2); top: 14%; left: 8%;  animation: floatY 7s  ease-in-out infinite; }
.dot--2 { width: 10px; height: 10px; background: var(--color-gold); top: 28%; left: 90%; animation: floatY 9s  ease-in-out infinite 1s; }
.dot--3 { width: 18px; height: 18px; background: var(--color-red2); top: 50%; left: 5%;  animation: drift  12s ease-in-out infinite; }
.dot--4 { width: 8px;  height: 8px;  background: var(--color-gold); top: 40%; left: 50%; animation: floatY 8s  ease-in-out infinite .5s; }
.dot--5 { width: 12px; height: 12px; background: var(--color-red2); top: 72%; left: 30%; animation: drift  10s ease-in-out infinite 2s; }
.dot--6 { width: 10px; height: 10px; background: var(--color-gold); top: 84%; left: 80%; animation: floatY 11s ease-in-out infinite; }
.dot--7 { width: 16px; height: 16px; background: var(--color-red2); top: 62%; left: 94%; animation: drift  13s ease-in-out infinite 1s; }
.dot--8 { width: 9px;  height: 9px;  background: var(--color-gold); top: 8%;  left: 55%; animation: floatY 9s  ease-in-out infinite 1.5s; }

/* Плавающие контурные кольца */
.bg-anim .ring { position: absolute; border-radius: 50%; border: 2px solid rgba(210, 74, 61, 0.18); }
.ring--1 { width: 90px;  height: 90px;  top: 12%;   left: 40%; animation: drift  14s ease-in-out infinite; }
.ring--2 { width: 150px; height: 150px; bottom: 10%; left: 3%; border-color: rgba(217, 164, 65, 0.16); animation: floatY 12s ease-in-out infinite 1s; }
.ring--3 { width: 70px;  height: 70px;  top: 70%;   left: 70%; border-color: rgba(210, 74, 61, 0.18); animation: floatY 10s ease-in-out infinite .5s; }

/* Иероглифы «дзюдо» / «путь» водяными знаками, медленно покачиваются */
.bg-anim .kanji-bg {
  position: absolute;
  font-family: var(--font-display);
  line-height: 1;
  color: rgba(20, 20, 20, 0.03);
  animation: sway 16s ease-in-out infinite;
}
.kanji-bg--1 { font-size: 300px; right: 6%; top: 4%; }
.kanji-bg--2 { font-size: 240px; left: 4%;  bottom: 6%; animation-duration: 19s; }

/* Ключевые кадры анимаций */
@keyframes heroGlow {
  0%, 100% { transform: scale(1);    opacity: .9; }
  50%      { transform: scale(1.12); opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-26px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(24px, -28px); }
}
@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 50px rgba(217, 164, 65, 0.5); }
  50%      { transform: scale(1.07); box-shadow: 0 0 80px rgba(217, 164, 65, 0.8); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;          /* текст по центру — первый экран без картинки */
  width: 100%;
}
.hero__badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 6px;
  background: var(--color-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;        /* увеличено, чтобы строки не накладывались */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--color-ink);
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 22px;
}
/* Фото детей в воротах тории + посыл про безопасность на первом экране */
.hero__safety {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 560px;
  margin: 10px auto 28px;
  text-align: center;
}
.hero__safety-img {
  flex: 0 0 auto;
  width: min(440px, 94%);
  height: auto;
  display: block;
}
.hero__safety-text {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-muted);
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero__safety-text { font-size: 19px; }
}
/* Баннер акции — строгий, в тон сайту */
.hero__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(217, 164, 65, 0.30);
  margin-bottom: 30px;
}
.hero__promo span {
  background: var(--color-ink);
  color: #fff;
  font-weight: 800;
  padding: 1px 9px;
  border-radius: 4px;
}

/* Яркая подсветка слова «бесплатно» */
.free-hl {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 1px 9px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Пульсация для привлечения внимания */
@keyframes promoPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 8px 20px rgba(217, 164, 65, 0.30); }
  50%      { transform: scale(1.04); box-shadow: 0 12px 30px rgba(217, 164, 65, 0.55); }
}

/* Плашка «первый месяц бесплатно» у формы записи — строгая, спортивная */
.free-banner {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 28px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(217, 164, 65, 0.30);
}
.free-banner span {
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 4px;
}

/* Анимация «блик» по баннерам акции (сдержанно, по-спортивному) */
.hero__promo, .free-banner { position: relative; overflow: hidden; }
.hero__promo::before, .free-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -160%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  animation: shine 3.4s ease-in-out infinite;
}
@keyframes shine {
  0%        { left: -160%; }
  55%, 100% { left: 160%; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; width: 100%; max-width: 600px; margin: 0 auto; }
.hero__actions .btn { flex: 1 1 auto; }

/* Подсказка «листайте вниз» */
.hero__scrollcue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scrollcue:hover { color: var(--color-red); }
.hero__scrollcue-arrow {
  font-size: 22px;
  color: var(--color-red);
  animation: cueBounce 1.8s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* Фото зала на главном экране (вместо прежних цифр) */
.hero__hall { margin: 34px auto 0; max-width: 100%; }
.hero__hall-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.hero__hall-cap {
  margin-top: 12px;
  text-align: center;
  color: var(--color-muted);
  font-size: 15px;
}

/* ===== КИНО-СЦЕНА «ВЫБОР» — картинка выезжает снизу на скролле и уезжает вверх =====
   .reveal-scene высокая (запас прокрутки), внутри прилипающий экран на 100vh.
   Трансформацию .reveal-scene__media и прозрачность подписи задаёт script.js. */
.reveal-scene { position: relative; height: 300vh; }
.reveal-scene__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: transparent;          /* виден общий тёплый фон сайта вокруг картинки */
  display: grid;
  place-items: center;
}
.reveal-scene__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: scale(1.06);           /* лёгкий overscan — размытые края уходят за экран */
  will-change: opacity;
}
.reveal-scene__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(12px);               /* старт — лёгкое размытие; резкость задаёт JS */
  will-change: filter;
}
.reveal-scene__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.45), rgba(20, 18, 16, 0.12) 45%, rgba(20, 18, 16, 0.55));
}
.reveal-scene__caption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;                      /* проявляется на скролле через JS */
  z-index: 2;
}
.reveal-scene__text {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 1.08;
  text-align: center;
  max-width: 16ch;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}


/* ===== ОБЩИЕ СЕКЦИИ ===== */
.section { padding: 70px 0; }
/* Все секции прозрачные — единый фон .bg-anim, без видимых границ при скролле */
.section--alt { background: transparent; }

.section__head { max-width: 740px; margin: 0 auto 40px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--color-ink);
}
/* Красное подчёркивание под заголовком секции */
.section__head .section__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--color-red);
  margin: 16px auto 0;
}
.section__lead { margin-top: 16px; font-size: 17px; color: var(--color-muted); }

/* ===== О СЕКЦИИ ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about__col {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.about__subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about__col p { color: var(--color-muted); }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--color-text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--color-red);
  color: var(--color-ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* ===== О ТРЕНЕРЕ ===== */
.coach__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-areas:
    "photo head"
    "photo body";
  column-gap: 50px;
  row-gap: 18px;
  align-items: start;
}
.coach__head { grid-area: head; }
.coach__photo { grid-area: photo; display: flex; align-self: stretch; }
.coach__content { grid-area: body; }
.coach__photo-placeholder {
  width: 100%;
  height: 100%;                  /* занимает всю высоту строки */
  aspect-ratio: 3 / 4;           /* запасная пропорция (для мобильной версии) */
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1f1f1f, #383838);
  color: #9a9a9a;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}
/* Реальное фото тренера */
.coach__photo-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;     /* лицо вверху — голову не обрезаем */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.coach__photo-img:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-hover); }
.coach__role { color: var(--color-red); font-weight: 700; margin: 8px 0 18px; }
.coach__text { color: var(--color-muted); margin-bottom: 18px; font-size: 17px; }
.coach__achievements { margin-bottom: 26px; }
.coach__achievements li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--color-muted);
}
.coach__achievements li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--color-red);
  border-radius: 50%;
}
.coach__achievements strong { color: var(--color-text); }

/* ===== ДИПЛОМЫ ТРЕНЕРА ===== */
.diplomas { margin-bottom: 26px; }
.diplomas__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.diplomas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.diploma { margin: 0; }
.diploma__img {
  aspect-ratio: 4 / 3;        /* горизонтально, под формат фото документов */
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background:
    repeating-linear-gradient(45deg, #f4efe8 0 10px, #e9e0d5 10px 20px);
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.diploma__img:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
/* Реальное фото документа: заполняет ячейку (та же высота, что у заглушек) */
img.diploma__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;        /* совпадает с пропорцией фото — без обрезки */
  object-fit: cover;
  object-position: center;
}
.diploma figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}
@media (max-width: 420px) {
  .diplomas__grid { gap: 10px; }
  .diploma__img { font-size: 12px; }
}

/* ===== О ТРЕНЕРЕ: карточки / врезка / путь / цитата ===== */
.coach__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.coach__cards .check-list { margin-top: 4px; }
.coach__cards .check-list li { font-size: 15px; }

/* Акцент «никогда не поздно» */
.coach__note {
  margin: 26px auto 0;
  max-width: none;                 /* во всю ширину — как карточки сверху */
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 17px;
  color: var(--color-text);
  box-shadow: var(--shadow);
}

/* Профессиональный путь */
.coach__path {
  margin: 50px auto 0;
  max-width: 760px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow);
}
.coach__path-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 22px;
}
.timeline__item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__year {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-red);
  min-width: 130px;
  flex-shrink: 0;
}
.timeline__text { color: var(--color-text); }

/* Финальная цитата */
.coach__quote {
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
}
.coach__quote blockquote {
  position: relative;
  font-size: clamp(18px, 2.4vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  padding-top: 44px;
}
.coach__quote blockquote::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: var(--color-red);
}
.coach__quote figcaption {
  margin-top: 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-red);
  font-weight: 600;
}

/* ===== ОКНО ПРОСМОТРА ДОКУМЕНТОВ (лайтбокс) ===== */
img.diploma__img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(3px);
}
.lightbox.is-open { display: flex; animation: lightboxIn .2s ease; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== ГАЛЕРЕЯ (выезжает из левого края на весь экран) ===== */
.gallery {
  position: fixed;
  inset: 0;
  z-index: 500;                 /* выше шапки (100), ниже лайтбокса (1000) */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f1ece6;          /* та же база, что и на основном экране (.bg-anim) */
  transform: translateX(-100%); /* спрятана за левым краем */
  visibility: hidden;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1),
              visibility 0s linear .45s;
}
.gallery.is-open {
  transform: translateX(0);     /* выезжает на весь экран */
  visibility: visible;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
/* Копия анимированного фона внутри галереи: переопределяем фикс-позицию
   слоя .bg-anim на абсолютную внутри панели (дочерние точки/кольца/иероглифы
   берут свои стили от класса .bg-anim без изменений). */
.gallery__bg {
  position: absolute;          /* было fixed — теперь внутри панели */
  inset: 0;
  z-index: 0;                  /* было -1 — теперь над базой панели, под контентом */
}
/* Шапка и контент — над фоновым слоем */
.gallery__bar, .gallery__scroll { position: relative; z-index: 1; }
/* Тёмная панель-шапка галереи */
.gallery__bar {
  flex: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--color-ink);
  color: #fff;
  border-bottom: 3px solid var(--color-red);
}
.gallery__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery__title-mark { color: var(--color-red); font-size: 26px; }
.gallery__close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background .2s ease, transform .25s ease;
}
.gallery__close:hover { background: rgba(255, 255, 255, 0.14); transform: rotate(90deg); }
/* Прокручиваемая лента: крупное фото сверху, остальные ниже */
.gallery__scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 28px 20px 48px;
  scroll-behavior: smooth;
}
/* Папки-вкладки галереи */
.gallery__tabs {
  max-width: 900px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gallery__tab {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gallery__tab:hover { color: var(--color-ink); border-color: var(--color-gold); }
.gallery__tab.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}
.gallery__item.is-hidden { display: none; }

.gallery__feed {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.gallery__item { margin: 0; }
.gallery__img,
.gallery__ph {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  display: block;
}
img.gallery__img {
  height: auto;                    /* фото целиком, без обрезки (любая ориентация) */
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
img.gallery__img:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
/* Первое фото — крупнее, занимает большую часть экрана */
.gallery__item--lead .gallery__img,
.gallery__item--lead .gallery__ph {
  aspect-ratio: 16 / 9;
  min-height: min(60vh, 520px);
  object-fit: cover;
}
/* Плитка-заглушка под будущее фото */
.gallery__ph {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  gap: 6px;
  background: repeating-linear-gradient(45deg, #f4f5f6 0 10px, #e9ebed 10px 20px);
  color: var(--color-muted);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.gallery__ph span:first-child { font-size: 34px; }

/* Кнопка-«пилюля» у левого края — открывает галерею.
   Стиль сайта: чёрная заливка + красная градиентная обводка (две подложки:
   padding-box даёт фон, border-box — градиентную рамку). */
.gallery-tab {
  position: fixed;
  left: 22px;
  top: 90px;                     /* сверху слева, под фиксированной шапкой */
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(var(--color-ink), var(--color-ink)) padding-box,
    linear-gradient(135deg, var(--color-red), var(--color-red-dark)) border-box;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(17, 19, 23, 0.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.32);
}
.gallery-tab:active { transform: translateY(-1px); }
.gallery-tab:focus-visible { outline: 3px solid var(--color-red); outline-offset: 3px; }
.gallery-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;                 /* крупнее на ПК */
  line-height: 1;
  transform: translate(-3px, -5px); /* чуть левее и выше */
}
.gallery-tab__arrow {
  display: inline-flex;
  font-size: 18px;
  line-height: 1;
  color: var(--color-red);
  transition: transform .25s ease;
}
.gallery-tab:hover .gallery-tab__arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .gallery__bar { padding: 0 16px; }
  .gallery__title { font-size: 19px; }
  .gallery__scroll { padding: 16px 14px 32px; }
  .gallery__feed { gap: 14px; }
  .gallery__item--lead .gallery__img,
  .gallery__item--lead .gallery__ph { min-height: 42vh; }
  /* На телефоне — компактный круг только с иконкой 📷 (текст скрыт) */
  .gallery-tab {
    left: 12px;
    top: 82px;
    width: 46px;
    height: 46px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .gallery-tab__text { display: none; }
  .gallery-tab__icon {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 19px;
    line-height: 1;
    transform: translateY(-5px);    /* выше в кружке */
  }
}

/* ===== РАСПИСАНИЕ ===== */
.schedule__wrap {
  overflow-x: auto;                    /* горизонтальная прокрутка на телефоне */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  min-width: 480px;
}
.schedule th, .schedule td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.schedule thead th {
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule tbody tr { cursor: pointer; transition: background .15s ease; }
.schedule tbody tr:hover { background: var(--color-bg-alt); }
.schedule tbody tr:focus-visible { outline: 2px solid var(--color-red); outline-offset: -2px; }

/* Подсказка под расписанием */
.schedule__hint {
  margin-top: 16px;
  text-align: center;
  color: var(--color-muted);
  font-size: 15px;
}
.schedule td:nth-child(2) { font-weight: 700; color: var(--color-ink); }

.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.tag--kids { background: var(--color-bg-alt); color: var(--color-muted); }
.tag--adults { background: var(--color-red-tint); color: var(--color-red-dark); }

/* ===== КАРТОЧКИ ПРЕИМУЩЕСТВ ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--color-red-tint);
  font-size: 28px;
  margin-bottom: 18px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.card__text { color: var(--color-muted); font-size: 15px; }

/* ===== КАК ЗАПИСАТЬСЯ ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(217, 164, 65, 0.35);
}
.step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.step__text { color: var(--color-muted); font-size: 15px; }

/* ===== КОНТАКТЫ ===== */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;          /* обе колонки одной высоты */
}
/* Левая колонка — карта растягивается, чтобы низ совпал с формой */
.contacts__info { display: flex; flex-direction: column; }
.contacts__list { margin-bottom: 24px; }
.contacts__list li {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.contacts__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.contacts__value { font-size: 18px; font-weight: 700; }
a.contacts__value:hover { color: var(--color-red); }

.contacts__messengers { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.contacts__messengers .btn { flex: 1; min-width: 140px; }

.contacts__map {
  flex: 1 1 auto;                /* занимает оставшуюся высоту колонки */
  min-height: 240px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;             /* скругление углов у карты */
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

/* ===== ФОРМА ===== */
.contacts__form-wrap {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;                       /* чтобы форма заняла всю высоту блока */
}
/* Форма-колонка: поле «Комментарий» растягивается, кнопка уходит вниз */
.form { display: flex; flex-direction: column; width: 100%; }
.form__row { margin-bottom: 18px; }
.form__row--grow { flex: 1 1 auto; display: flex; flex-direction: column; }
.form__row--grow .form__textarea { flex: 1 1 auto; }
.form__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form__input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__input:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.12);
}
.form__input::placeholder { color: #9a9a9a; }
.form__textarea { resize: vertical; min-height: 80px; }
.form__input.is-error { border-color: var(--color-red); background: rgba(217, 164, 65, 0.04); }

.form__success {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(37, 211, 102, 0.12);
  color: #1d9e4d;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
}
.form__error {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(217, 164, 65, 0.10);
  color: var(--color-red-dark);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
}
.form__hint { margin-top: 14px; font-size: 13px; color: var(--color-muted); text-align: center; }

/* Альтернатива форме — звонок */
.form__alt { margin-top: 18px; }
.form__alt-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form__alt-or::before,
.form__alt-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.form__call { font-size: 17px; letter-spacing: .5px; }

/* ===== ПОДВАЛ ===== */
.footer { background: var(--color-ink); color: #c4c4c4; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.footer__tagline { margin-top: 10px; color: #8a8a8a; font-size: 15px; }
.footer__phone {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.footer__phone:hover { color: var(--color-red); }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { color: #c4c4c4; transition: color .2s ease; }
.footer__nav a:hover { color: var(--color-red); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 14px;
  color: #8a8a8a;
  text-align: center;
}

/* ===== АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ ПРОКРУТКЕ ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   МОТИВАЦИОННАЯ ПОЛОСА «FIGHT»
   Тёмный баннер-призыв во всю ширину между блоками.
   ========================================================= */
.fight-band {
  position: relative;
  background: transparent;          /* единый фон сайта, без своего оттенка */
  color: var(--color-text);
  text-align: center;
  padding: 72px 20px;
}
.fight-band__inner { position: relative; z-index: 1; }
.fight-band__logo {
  width: clamp(220px, 45%, 380px);
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 20px rgba(20, 20, 20, 0.18));
  animation: floatY 6s ease-in-out infinite;   /* мягкое покачивание */
}
.fight-band__text {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* =========================================================
   ЕДИНЫЙ ЭФФЕКТ ПРИ НАВЕДЕНИИ
   Любой объект всплывает одинаково: плавный подъём + лёгкое увеличение.
   (Размещено после остальных правил, чтобы переопределить их.)
   ========================================================= */
.card, .step, .about__col, .diploma__img, .schedule__wrap,
.contacts__form-wrap, .coach__photo-placeholder,
.hero__photo, .btn {
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease,
              background .2s ease, color .2s ease, border-color .2s ease;
}
.card:hover, .step:hover, .about__col:hover, .diploma__img:hover,
.schedule__wrap:hover, .contacts__form-wrap:hover,
.coach__photo-placeholder:hover, .hero__photo:hover, .btn:hover {
  transform: translateY(-6px) scale(1.02);
}
/* Одинаковая тень для блоков (у кнопок остаётся своя цветная тень) */
.card:hover, .step:hover, .about__col:hover, .diploma__img:hover,
.schedule__wrap:hover, .contacts__form-wrap:hover,
.coach__photo-placeholder:hover, .hero__photo:hover {
  box-shadow: var(--shadow-hover);
}

/* Уважаем системную настройку «уменьшить движение» — отключаем анимации фона */
@media (prefers-reduced-motion: reduce) {
  .bg-anim .glow, .bg-anim .dot, .bg-anim .ring, .bg-anim .kanji-bg,
  .hero__image::before, .fight-band::before, .fight-band__logo,
  .hero__promo, .free-banner,
  .hero__promo::before, .free-banner::before,
  .hero__scrollcue-arrow {
    animation: none !important;
  }
  /* Галерея появляется без выезжающей анимации */
  .gallery { transition: visibility 0s !important; }
  /* Кино-сцена «Выбор» — без скролл-эффекта, просто статичная чёткая картинка */
  .reveal-scene { height: auto; }
  .reveal-scene__sticky { position: static; height: auto; }
  .reveal-scene__media { position: relative; transform: none; opacity: 1; }
  .reveal-scene__img { height: auto; filter: none; }
  .reveal-scene__caption { opacity: 1; }
}

/* =========================================================
   АДАПТИВНОСТЬ
   ========================================================= */

/* Планшеты */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; position: static; align-self: auto; display: flex; justify-content: center; }
  .hero__photo {
    position: static;
    width: 100%;
    height: auto;
    max-width: 520px;
  }
  .coach__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "photo" "body";   /* шапка → фото → текст */
    gap: 24px;
  }
  .coach__photo { width: min(360px, 100%); justify-self: center; align-self: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .coach__cards { grid-template-columns: repeat(2, 1fr); }
  .contacts__grid { grid-template-columns: 1fr; }
}

/* Телефоны */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }

  /* Прячем десктоп-меню и CTA в шапке, показываем бургер */
  .header__cta { display: none; }
  .burger { display: flex; }

  /* Мобильное выпадающее меню */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform .35s ease;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; padding: 10px 20px 20px; }
  .nav__list li { border-bottom: 1px solid var(--color-border); }
  .nav__list li:last-child { border-bottom: none; }
  .nav__link { display: block; padding: 14px 0; font-size: 17px; }
  .nav__link::after { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .coach__cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  /* Профессиональный путь: год над текстом */
  .timeline__item { flex-direction: column; gap: 4px; }
  .coach__path { padding: 24px 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }

  /* Делаем фоновые иероглифы и кольца компактнее на телефоне */
  .kanji-bg--1 { font-size: 180px; }
  .kanji-bg--2 { font-size: 150px; }
  .ring--2 { width: 100px; height: 100px; }

  /* Мотивационная полоса компактнее */
  .fight-band { padding: 52px 18px; }
  .fight-band__logo { width: 70%; }
  .fight-band__text { font-size: 16px; }
}
