/* === ФОН НА ВСЮ СТРАНИЦУ === */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #eaf6ff;

  /* фоновое изображение дохё как на макете */
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../img/Dohyo13.jpg") center top / cover no-repeat fixed;
  background-attachment: fixed; /* фон остаётся на месте при прокрутке */
}

/* Контейнеры */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
}

/* Шапка с логотипами и бойцами */
.header {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 12px 0 24px;
}

/* Убираем фоновое изображение из шапки (оно теперь общее) */
.header::before {
  content: "";
  display: none;
}

/* Бойцы по краям */
.fighter {
  position: absolute;
  top: 20px;
  width: min(22vw, 260px);
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}
.fighter--left { left: max(0px, calc(50% - 700px)); }
.fighter--right { right: max(0px, calc(50% - 700px)); }

/* Центральные логотипы */
.header__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 40px auto 16px;
}
.kaluga-logo {
  width: min(220px, 40vw);
  height: auto;
}
.sumo-logo {
  width: min(220px, 70vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.8));
}

/* Навигация */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.nav__btn {
  background: linear-gradient(#2f6dff, #1446c8);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 0 #0b2a8a, 0 10px 20px rgba(0, 0, 0, 0.35);
}
.nav__btn:hover { filter: brightness(1.15); }

/* === ТЕКСТОВЫЙ БЛОК === */
.hero-text {
  text-align: left;
  padding: 40px 0;
  color: #7ff0ff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

.hero-text .lead {
  font-size: clamp(16px, 2.2vw, 20px);
  margin: 18px 0;
}

.hero-text strong {
  color: #fff;
}

.hero-text .tagline {
  text-align: center;
  margin-top: 24px;
  color: #7ff0ff;
  font-weight: 700;
}

/* Подвал */
.footer {
  text-align: center;
  color: #9fb4d1;
  background: gray;
  padding: 20px 0 30px;
}

/* Адаптив */
@media (max-width: 700px) {
  .fighter { display: none; }
}

/* === АККОРДЕОН (обновлённый, стильный) === */
.section-title {
  text-align: center;
  font-size: 32px;
  color: #7ff0ff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  margin: 40px 0 24px;
  letter-spacing: 1px;
}

/* Заголовок секции */
.section-title{
  text-align:center;
  font-size:32px;
  color:#7ff0ff;
  text-shadow:0 3px 8px rgba(0,0,0,.6);
  margin:28px 0 18px;
}

/* Центрируем и ограничиваем ширину блока */
.accordion{
  display:flex; flex-direction:column; gap:14px;
  margin:0 auto; width:100%; max-width:980px;  /* ширина как у макета */
  align-items:stretch;
}

/* Карточка аккордеона */
.accordion-item{
  border-radius:12px; overflow:hidden;
  background: transparent; border: none;
  box-shadow:none;
}

/* Кнопка-вкладка (синяя) как на макете */
.accordion-item > summary{
  cursor:pointer; user-select:none; list-style:none;
  padding:14px 18px;
  color:#fff; font-weight:700; font-size:18px;
  background: linear-gradient(#2f6dff, #1446c8);
  border-radius:12px;
  box-shadow: 0 4px 0 #0b2a8a, 0 10px 18px rgba(0,0,0,.35);
  position:relative;
}
.accordion-item > summary::-webkit-details-marker{display:none;}
.accordion-item > summary::after{
  content:"▼"; position:absolute; right:16px; top:50%;
  transform:translateY(-50%); transition:transform .25s ease;
  opacity:.9;
}
.accordion-item[open] > summary::after{ transform:translateY(-50%) rotate(180deg); }

/* --- Плашка контента как на макете --- */
.panel{
  position:relative;
  margin-top:10px;
  padding:18px 22px;
  background: rgba(0,0,0,.55);              /* полупрозрачная чёрная плашка */
  border-radius:10px;
  color:#7ff0ff;
  text-shadow:0 2px 6px rgba(0,0,0,.55);
  line-height:1.75;
  backdrop-filter: blur(2px);                /* лёгкое стекло (если поддерживается) */
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* Контейнер секции: центр + отступы */
.sumo-accordion{
  display:flex; justify-content:center;
  padding: 28px 16px 56px;
}

/* Стеклянная тёмная плашка (как на фото) */
.glass{
  width:min(1100px, 100%);
  padding: 26px 24px 20px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color:#fff;
}

.glass__title{
  margin: 0 0 14px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .3px;
  text-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.glass__lead{
  margin: 0 0 18px;
  color:#eae6e6;
  line-height:1.6;
}

/* Линия-разделитель под подзаголовком (как на макете) */
.glass__lead{ border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 14px; }

/* Аккордеон */
.acc{ margin-top: 6px; }
.acc__item{
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.acc__item:last-child{ border-bottom: none; }

/* Заголовок пункта */
.acc__summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 14px;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 20px);
  position: relative;
  color: #fff;
}
.acc__summary::-webkit-details-marker{ display:none; }

/* Стрелка справа ▸ (вращается при открытии) */
.acc__summary::after{
  content: "▸";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .25s ease, opacity .2s;
  opacity: .9; font-size: 20px;
}
.acc__item[open] > .acc__summary::after{
  transform: translateY(-50%) rotate(90deg);
}

/* Контент */
.acc__body{
  padding: 0 14px 16px 14px;
  color:#f1f1f1;
}
.acc__body p{ margin: 8px 0; line-height:1.7; }

/* Кнопки управления внизу */
.acc__actions{
  display:flex; gap:12px; flex-wrap:wrap;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
}
.btn-pill{
  appearance:none; border:0; cursor:pointer;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
}
.btn-primary{
  background:#b2142a; color:#fff;
  box-shadow: 0 6px 18px rgba(178,20,42,.35);
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-ghost{
  background: transparent; color:#e7e7e7;
  border:1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover{ background: rgba(255,255,255,.07); }

/* Мобильные мелочи */
@media (max-width: 700px){
  .glass{ padding: 20px 16px; border-radius: 18px; }
  .acc__summary{ padding-right: 28px; }
}

/* Контейнер аккордеона */
.sumo-accordion {
  display: flex;
  justify-content: center;
  padding: 40px 16px 60px;
}

/* Прозрачная обёртка (раньше была тёмная плашка) */
.glass {
  width: min(1100px, 100%);
  padding: 10px 20px;
  background: transparent; /* 🔹 убрали фон */
  border: none;
  box-shadow: none;
  color: #fff;
}

/* Заголовок и подзаголовок */
.glass__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-align: center;
  color: #7ff0ff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.glass__lead {
  text-align: center;
  margin: 0 0 28px;
  color: #d7faff;
  line-height: 1.6;
  font-size: 18px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Аккордеон */
.acc {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}

/* Каждый элемент */
.acc__item {
  background: rgba(0, 0, 0, 0.45); /* лёгкое затемнение, чтобы текст читался */
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: background 0.3s ease;
}

.acc__item:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* Контейнер аккордеона */
.sumo-accordion {
  display: flex;
  justify-content: center;
  padding: 40px 16px 60px;
}

/* Прозрачная обёртка */
.glass {
  width: min(1100px, 100%);
  padding: 10px 20px;
  background: transparent; /* Полностью убираем фон */
  border: none;
  color: #fff;
}

/* Заголовок и подзаголовок */
.glass__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-align: center;
  color: #7ff0ff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.glass__lead {
  text-align: center;
  margin: 0 0 28px;
  color: #d7faff;
  line-height: 1.6;
  font-size: 18px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Аккордеон */
.acc {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Каждый элемент аккордеона */
.acc__item {
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(127, 240, 255, 0.25);
  backdrop-filter: blur(5px);             /* эффект стекла под текстом */
  background: rgba(255, 255, 255, 0.05); /* лёгкая прозрачная подложка */
  transition: all 0.3s ease;
}

.acc__item:hover {
  background: rgba(127, 240, 255, 0.1); /* подсветка при наведении */
  box-shadow: 0 4px 12px rgba(127, 240, 255, 0.15);
}

/* Заголовки аккордеона */
.acc__summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 18px;
  color: #7ff0ff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  position: relative;
  transition: color 0.3s ease;
  background: rgba(0, 0, 0, 0); /* убрали фон */
}

.acc__summary:hover {
  color: #b8f7ff;
}

/* Стрелка справа */
.acc__summary::-webkit-details-marker {
  display: none;
}

.acc__summary::after {
  content: "▸";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 20px;
  opacity: 0.8;
}

.acc__item[open] .acc__summary::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}

/* Текст внутри */
.acc__body {
  padding: 0 22px 16px;
  color: #e8ffff;
  line-height: 1.7;
  font-size: 17px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0); /* фон под текстом прозрачный */
}

/* Кнопки снизу */
.acc__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn-pill {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #2f6dff, #1446c8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.15);
}

.btn-ghost {
  background: transparent;
  color: #7ff0ff;
  border: 1px solid rgba(127, 240, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(127, 240, 255, 0.15);
}

/* Мобильные настройки */
@media (max-width: 700px) {
  .glass__title {
    font-size: 28px;
  }
  .acc__summary {
    font-size: 17px;
  }
  .acc__body {
    font-size: 16px;
  }
}

/* === Прозрачный подвал в две строки === */
.site-footer{
  background: transparent;            /* полностью прозрачный фон */
  color: #e6f7ff;
  padding: 18px 0 26px;
  text-shadow: 0 2px 6px rgba(0,0,0,.55); /* читаемость на фото-фоне */
  border-top: 1px solid rgba(255,255,255,.18); /* тонкая линия-разделитель */
}

.footer-row{
  display:flex;
  flex-wrap:wrap;
  gap: 14px 22px;
  align-items:center;
  justify-content:space-between;
  padding: 6px 0;
}

.footer-item{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  white-space: nowrap;
  opacity:.95;
}
.footer-item a{
  color:#7ff0ff;
  text-decoration:none;
}
.footer-item a:hover{ text-decoration:underline; }

/* Иконки */
.icon{
  width: 20px;
  height: 20px;
  fill: currentColor;       /* берём цвет текста */
  opacity:.9;
}


.social:hover{
  transform: translateY(-1px);
  background: rgba(127,240,255,.16);
  border-color: rgba(127,240,255,.6);
}

/* Нижняя строка */
.footer-bottom{
  margin-top: 6px;
  border-top: 1px dashed rgba(255,255,255,.18);
  padding-top: 10px;
}
.copyright{
  margin:0;
  font-size: 14px;
  opacity:.9;
}

/* Мобильная раскладка */
@media (max-width: 760px){
  .footer-row{
    justify-content:center;
    text-align:center;
  }
  .footer-item{
    width:100%;
    justify-content:center;
  }
  .footer-bottom{
    gap:10px;
  }
}

/* ===== ТРЕНЕРА ===== */
/* ===== ТРЕНЕРА (обновлённый дизайн) ===== */
.coaches{ padding: 28px 0 44px; }
.coaches__title{
  text-align:center;
  margin: 0 0 18px;
  color:#7ff0ff; font-weight:800;
  font-size: clamp(24px, 3.2vw, 32px);
  text-shadow:0 3px 10px rgba(0,0,0,.6);
  position: relative;
}
.coaches__title::after{
  content:""; display:block; margin:10px auto 0;
  width:min(220px, 40%); height:3px;
  background: linear-gradient(90deg, transparent, #7ff0ff, transparent);
  box-shadow: 0 0 12px #7ff0ff55;
  border-radius:2px;
}

/* Сетка */
.coach-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Карточка */
.coach-card{
  position:relative; margin:0; overflow:hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.coach-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.45);
}

/* Фото — одинаковая пропорция, мягкий zoom */
.coach-photo{
  width:100%; display:block;
  aspect-ratio: 4 / 5;      /* одинаковая высота/ширина у всех */
  object-fit: cover; object-position: 50% 35%;
  transition: transform .35s ease;
  filter: saturate(103%);
}
.coach-card:hover .coach-photo{ transform: scale(1.03); }

/* Тёмный градиент по низу фото для читаемости */
.coach-card::after{
  content:""; position:absolute; inset:auto 0 0 0; height:38%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.75) 100%);
  pointer-events:none;
}

/* Стеклянная подпись поверх фото */
.coach-info{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color:#0b0f14; text-align:center;
  padding:10px 12px; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  border:1px solid #eaeaea;
}
.coach-name{
  margin:0 0 4px; font-weight:800; font-size: clamp(15px, 2vw, 17px);
}
.coach-role{
  margin:0; font-size: 14px; color:#333;
}

/* Адаптив */
@media (max-width: 1080px){
  .coach-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .coach-grid{ grid-template-columns: 1fr; gap:16px; }
  .coach-info{ left:10px; right:10px; bottom:10px; }
}

/* Заголовок */
.schedule__title{
  text-align:center; margin:0 0 16px; font-weight:900;
  font-size: clamp(22px,3.2vw,32px); color:#7ff0ff;
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

/* Сетка карточек */
.days-row.fancy{
  list-style:none; padding:0; margin:0 auto; max-width:1100px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:18px;
}

/* Карточка */
.day-card{
  position:relative; overflow:hidden; border-radius:18px; padding:16px 16px 14px;
  background: radial-gradient(120% 140% at 85% -10%, rgba(127,240,255,.14), transparent 60%),
             rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .22s ease, background .25s ease;
}
.day-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  background: radial-gradient(120% 140% at 85% -10%, rgba(127,240,255,.22), transparent 60%),
             rgba(255,255,255,.09);
}
/* блик при ховере */
.day-card::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.day-card:hover::after{ transform: translateX(120%); }

/* Лента заголовка (день недели + зал) */
.ribbon{
  display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:10px;
}
.ribbon__day{
  display:inline-block; padding:6px 12px; border-radius:12px;
  color:#fff; font-weight:900; letter-spacing:.5px;
  background: linear-gradient(90deg, #2f6dff, #1446c8);
  box-shadow: 0 3px 0 #0b2a8a, 0 10px 16px rgba(0,0,0,.25);
}

/* Chips / бейджи */
.chip{
  display:inline-block; padding:6px 10px; border-radius:999px; font-weight:700; font-size:13px;
  color:#fff; border:1px solid #ffffff2a;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  background: rgba(255,255,255,.12);
}
.chip--place{ color:#dff7ff; background: rgba(127,240,255,.18); border-color: rgba(127,240,255,.5); }
.chip--teens{ background:#7b5cff; }
.chip--adults{ background:#00c28a; }

/* Время с «неоновой точкой» */
.time-line{
  position:relative; display:flex; align-items:center; gap:10px;
  border-radius:12px; padding:10px 12px; margin: 6px 0 10px;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.18);
}
.time-line .time{
  font-size: clamp(18px, 2.2vw, 20px); color:#fff; text-shadow:0 2px 6px rgba(0,0,0,.6);
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: radial-gradient(circle at 40% 40%, #b8fff8, #50ffe8 60%, #00c4ff 100%);
  box-shadow: 0 0 10px #57fff0, 0 0 18px #57fff0aa;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:.95 }
  50%{ transform: scale(1.18); opacity:1 }
}

/* Теги направлений */
.tags{ display:flex; gap:8px; flex-wrap:wrap; }

/* Адаптив */
@media (max-width: 980px){ .days-row.fancy{ grid-template-columns: 1fr; max-width: 620px; } }

/* ==== Кнопки блока "Наши занятия" (как на макете) ==== */
.lessons-cta{
  /* держим блок ближе к низу секции, но не липким */
  margin: clamp(36px, 12vh, 100px) auto 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 26px;
  max-width: 900px;
  align-items: end;
}

.btn-lesson{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px 26px;
  border-radius: 14px;

  background: rgba(255,255,255,0.96);      /* белая кнопка как на макете */
  color: #0b0f14;                           /* тёмный текст */
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 22px);
  letter-spacing: .2px;

  box-shadow: 0 10px 30px rgba(0,0,0,.25),  /* мягкая тень */
              inset 0 0 0 1px #e8e8e8;      /* тонкая рамка */
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

/* лёгкая «подсветка» при наведении — аккуратно, без лишнего цвета */
.btn-lesson:hover{
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0,0,0,.34), inset 0 0 0 1px #e2e2e2;
}

/* фокус — доступность с клавиатуры */
.btn-lesson:focus-visible{
  outline: 3px solid #7ff0ff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(127,240,255,.3), 0 12px 28px rgba(0,0,0,.3);
}

/* Мелкие акцентные различия (можно убрать, если нужны абсолютно одинаковые) */
.btn-lesson--kids   { /* лёгкий бирюзовый отблеск снизу */
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 -3px 0 rgba(127,240,255,.25), inset 0 0 0 1px #e8e8e8;
}
.btn-lesson--adults { /* лёгкий зелёный отблеск снизу */
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 -3px 0 rgba(0,194,138,.22), inset 0 0 0 1px #e8e8e8;
}

/* Адаптив — на узких экранах по одной в с*

/* ===== Герой-картинка (Сумо — дети) ===== */
.kids-hero{ padding: 20px 0 28px; }

.kids-photo{
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 32px rgba(0,0,0,.38);
}

/* Фото на всю ширину, одинаковая высота, аккуратная обрезка */
.kids-photo img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;             /* 16:9 выглядит кинематографично */
  object-fit: cover;
  object-position: center 45%;
  transition: transform .5s ease;
  filter: saturate(104%);
}

/* Лёгкий зум при наведении */
.kids-photo:hover img{ transform: scale(1.03); }

/* Верхний лёгкий блик и нижний градиент для читаемости подписи */
.kids-photo::before,
.kids-photo::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
}
.kids-photo::before{
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 35%);
}
.kids-photo::after{
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55) 100%);
}

/* Стеклянная подпись */
.kids-caption{
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: grid; gap: 4px;
  justify-items: center; text-align: center;

  padding: 10px 14px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #0b0f14;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.kids-caption strong{ font-weight: 900; font-size: clamp(16px, 2.2vw, 18px); }
.kids-caption span{ font-size: 14px; color:#2b2b2b; opacity:.9; }

/* Адаптив */
@media (max-width: 680px){
  .kids-caption{ left: 10px; right:10px; bottom:10px; padding:8px 10px; }
  .kids-caption span{ font-size: 13px; }
}

/* ===== Видео: Сумо для взрослых ===== */
.video-block{ padding: 22px 0 40px; }
.video__title{
  text-align:center; margin:0 0 14px; font-weight:900;
  font-size:clamp(22px,3.2vw,32px); color:#7ff0ff;
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

.video-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border-radius:18px; padding:14px; max-width: 1000px; margin: 0 auto;
  box-shadow:0 14px 32px rgba(0,0,0,.38);
}

/* Контейнер 16:9 */
.video-16x9{
  position:relative; width:100%;
  aspect-ratio: 16 / 9;               /* современный способ */
  border-radius:14px; overflow:hidden;
  background:#000;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* Само видео / iframe */
.video-16x9 > video,
.video-16x9 > iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0; display:block;
}

/* Подпись под роликом */
.video-caption{
  margin-top:10px; color:#dff7ff; text-align:center; line-height:1.5;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
  font-size: clamp(14px, 2.2vw, 16px);
}

/* Небольшая «живость» при наведении */
.video-card:hover .video-16x9{ box-shadow:0 16px 34px rgba(0,0,0,.45); }

/* ===== Соревнования: 3 красивые кнопки-плитки ===== */
.comp-cta{ padding: 24px 0 44px; }
.comp-cta__title{
  text-align:center; margin:0 0 16px;
  color: white; font-weight:900; font-size:clamp(22px,3.2vw,32px);
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

.comp-cta__grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(3, 1fr);
  max-width:1100px; margin:0 auto;
}

/* Плитка */
.tile{
  display:grid; gap:8px; grid-template-columns:auto 1fr; grid-template-rows:auto auto;
  align-items:center; text-decoration:none; color:#eaf6ff; padding:16px;
  border-radius:18px; background:
    radial-gradient(120% 140% at 85% -10%, rgba(127,240,255,.14), transparent 60%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .22s ease, background .25s ease;
}
.tile:hover{
  transform: translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  background:
    radial-gradient(120% 140% at 85% -10%, rgba(127,240,255,.22), transparent 60%),
    rgba(255,255,255,.09);
}

/* Иконка */
.tile__icon{
  grid-row: span 2; display:grid; place-items:center;
  width:50px; height:50px; border-radius:12px;
  background: linear-gradient(180deg,#2f6dff,#1446c8);
  box-shadow:0 4px 0 blue, 0 10px 16px rgba(0,0,0,.25);
}
.tile__icon svg{ width:28px; height:28px; fill:#fff; }

/* Текст */
.tile__title{ font-weight:900; font-size:clamp(16px,2.6vw,18px); line-height:1.25; }
.tile__sub{ font-size:14px; color:#dff7ff; opacity:.9; }

/* Адаптив */
@media (max-width: 980px){
  .comp-cta__grid{ grid-template-columns: 1fr; max-width:680px; }
}

/* ===== Показательные выступления: горизонтальная лента ===== */
.showcase{ padding: 22px 0 40px; }
.showcase__title{
  text-align:center; margin:0 0 14px; font-weight:900;
  font-size:clamp(22px,3.2vw,32px); color:#7ff0ff;
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

/* Горизонтальная строка карточек */
.showcase-row{
  display:flex; gap:16px; overflow-x:auto; padding:6px 2px 10px;
  scroll-snap-type:x mandatory; /* приятно фиксируется по карточкам */
}
.showcase-row::-webkit-scrollbar{ height:8px; }
.showcase-row::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.25); border-radius:999px;
}

/* Карточка видео */
.video-card{
  flex:0 0 auto;                   /* не переносится, остаётся в строке */
  min-width: clamp(280px, 32vw, 420px);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border-radius:16px; padding:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  scroll-snap-align:center;
  transition: transform .18s ease, box-shadow .22s ease, background .25s ease;
}
.video-card:hover{
  transform: translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  background: rgba(255,255,255,.09);
}

/* Контейнер «16:9» */
.ratio{
  position:relative; width:100%; aspect-ratio:16/9;
  border-radius:12px; overflow:hidden; background:#000;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.ratio > video,
.ratio > iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }

.video-title{
  margin:10px 4px 2px; text-align:center; color:#eaf6ff;
  font-weight:800; font-size:clamp(14px,2.4vw,16px); text-shadow:0 2px 6px rgba(0,0,0,.6);
}

/* Узкие экраны — всё остаётся в одну линию со скроллом */
@media (max-width: 700px){
  .video-card{ min-width: 84vw; }
}

/* ===== Инфоплашка "Воскресенье — сборная" ===== */
.schedule__note{
  max-width:1100px; margin: 8px auto 0; padding: 12px 14px;
  display:flex; align-items:center; gap:12px;

  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

.note-badge{
  display:inline-block; padding:6px 12px; border-radius:12px;
  font-weight:900; color:#fff; letter-spacing:.4px;
  background: linear-gradient(90deg,#2f6dff,#1446c8);
  box-shadow:0 3px 0 #0b2a8a, 0 10px 16px rgba(0,0,0,.25);
}

.note-text{
  color:#eaf6ff; font-size:clamp(14px,2.2vw,16px);
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}

/* Заголовок */
.route{ padding:22px 0 44px; }
.route__title{
  text-align:center; margin:0 0 16px; font-weight:900;
  color:#7ff0ff; font-size:clamp(22px,3.2vw,32px);
  text-shadow:0 3px 12px rgba(0,0,0,.7);
}

/* Две колонки: слева инфо, справа карта */
.route-grid{
  display:grid; gap:18px; align-items:start;
  grid-template-columns: 1fr min(48vw, 560px);  /* ПРАВАЯ колонка — фикс ширина */
  max-width: 1200px; margin: 0 auto;
}

/* Левая колонка */
.place-card{
  display:grid; grid-template-columns: 180px 1fr; gap:16px; align-items:center;
  padding:12px; background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border-radius:16px; box-shadow:0 12px 28px rgba(0,0,0,.35);
  margin-bottom:12px;
}
.place-card__img{ width:100%; height:140px; object-fit:cover; border-radius:12px; }
.place-card__name{ margin:0 0 4px; font-weight:900; color:#eaf6ff; font-size:clamp(16px,2.6vw,20px); }
.place-card__addr{ margin:0 0 10px; color:#dff7ff; opacity:.95; }
.place-card__actions{ display:flex; flex-wrap:wrap; gap:10px; }

.btn.btn--route{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px; text-decoration:none;
  background: linear-gradient(180deg,#2f6dff,#1446c8);
  color:#fff; font-weight:800;
  box-shadow:0 4px 0 #0b2a8a, 0 10px 16px rgba(0,0,0,.25);
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn.btn--route:hover{ transform:translateY(-2px); filter:saturate(1.05);
  box-shadow:0 6px 0 #0b2a8a, 0 16px 24px rgba(0,0,0,.3); }

/* Мини-карта */
.map-thumb{
  display:block; position:relative; border-radius:16px; overflow:hidden;
  border:1px solid rgba(255,255,255,.2); box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.map-thumb img{ width:100%; height:auto; display:block; }
.map-thumb__cta{
  position:absolute; left:12px; bottom:12px;
  background: rgba(255,255,255,.9); color:#0b0f14; font-weight:800;
  padding:8px 12px; border-radius:10px; box-shadow:0 8px 18px rgba(0,0,0,.25);
}

/* ПРАВАЯ колонка — карта нужного размера */
.route-right{ display:block; }
.map-embed{
  width:100%; border-radius:16px; overflow:hidden;
  border:1px solid rgba(255,255,255,.2); box-shadow:0 14px 32px rgba(0,0,0,.38);
}
.map-embed iframe{
  width:100%;
  height: clamp(380px, 58vh, 520px);   /* управляет высотой карты */
  display:block;
}

/* Адаптив: на мобильных — одна колонка */
@media (max-width: 980px){
  .route-grid{ grid-template-columns: 1fr; }
  .place-card{ grid-template-columns: 1fr; }
  .place-card__img{ height:180px; }
}

.news {
  padding: 40px;
  text-align: center;
  color: white;
}

.news-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.news-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.news-item {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
}

.news-item:hover {
  transform: scale(1.03);
}

.kids-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; /* чтобы на узких экранах переносилось */
  gap: 20px;
  padding: 30px 0;
}

.kids-photo {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  width: 320px; /* ширина блока с фото */
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.kids-photo:hover {
  transform: scale(1.05);
}

.kids-photo img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.kids-caption {
  padding: 10px;
  color: white;
  font-size: 0.9em;
}

/* Галерея в ряд с переносом */
.kids-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;          /* перенос на узких экранах */
  gap: 24px;
  padding: 30px 0;
}

/* Карточка фото */
.kids-photo {
  position: relative;
  width: clamp(260px, 30vw, 380px); /* адаптивная ширина */
  aspect-ratio: 16 / 9;             /* ровные пропорции */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  background: #000;                 /* на случай, если фото не загрузится */
  transition: transform .2s ease, box-shadow .2s ease;
}

.kids-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

/* Само изображение */
.kids-photo img {
  display: block;    /* убирает лишние «зазоры» */
  width: 100%;
  height: 100%;
  object-fit: cover; /* кадрирует без искажений */
}

/* Подпись поверх фото снизу */
.kids-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 75%);
}

.kids-caption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.route {
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.adults-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;       /* перенос на следующую строку при узком экране */
  gap: 24px;
  padding: 40px 0;
}

/* Контейнер каждой фотографии */
.adults-photo {
  position: relative;
  width: clamp(280px, 30vw, 360px); /* адаптивная ширина карточки */
  aspect-ratio: 16 / 9;             /* одинаковая высота */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adults-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Само изображение */
.adults-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* чтобы не тянуть, а аккуратно обрезать */
  display: block;
}

/* Подпись */
.adults-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 80%);
}

.adults-caption strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.photo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;              /* Расстояние между фото */
  flex-wrap: wrap;        /* Чтобы переносились при узком экране */
  padding: 20px;
}

.photo-row img {
  width: 250px;           /* Размер фото */
  height: auto;
  border-radius: 10px;    /* Закругленные углы */
  box-shadow: 0 0 10px blue(0,0,0,0.3);
  transition: transform 0.3s;
}

.photo-row img:hover {
  transform: scale(1.05);
}

.photo-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;           /* чтобы переносились при узком экране */
  gap: 20px;
  padding: 30px;
}

.photo-item {
  text-align: center;
  color: white;
  font-size: 16px;
}

.photo-item img {
  width: 260px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.photo-item img:hover {
  transform: scale(1.05);
}

.photo-item p {
  margin-top: 10px;
  font-weight: 500;
}

.media-section {
  text-align: center;
  margin-top: 40px;
}

.media-buttons .nav_btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #005bff;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.media-buttons .nav_btn:hover {
  background-color: #003fcc;
}

.gallery {
  text-align: center;
  padding: 40px 20px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.gallery p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.media-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 900px;
  color: white;
}

.media-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.media-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.media-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.media-buttons .nav_btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #005bff;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.media-buttons .nav_btn:hover {
  background-color: #003fcc;
  transform: scale(1.05);
}

.gallery {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  color: white;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.gallery p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.video-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  color: white;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.video-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  justify-items: center;
}

.video-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #005bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #003fcc;
}

.gallery {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.gallery h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;
}

.gallery-container img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.4);
}

.champ-gallery {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.champ-gallery h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.champ-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.champ-container figure {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  max-width: 400px;
}

.champ-container img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.champ-container img:hover {
  transform: scale(1.05);
}

.champ-container figcaption {
  margin-top: 10px;
  font-size: 0.95em;
  color: #ddd;
}

.video-gallery {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.video-gallery h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  justify-items: center;
}

.video-container video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.video-container video:hover {
  transform: scale(1.05);
}
