/* ============================================================
   PLAY — стили
   Палитра: чёрный + красный, белые блоки контента
   Шрифты: Unbounded (заголовки), Inter (текст)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --red: #e10b1f;
  --red-dark: #b40818;
  --red-soft: #ff2a3d;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d8d8d8;
  --gray-500: #8a8a8a;
  --gray-700: #3a3a3a;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-text: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --header-h: 76px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(225,11,31,.25);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
  text-decoration: none;
}
.logo__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo__sub {
  font-family: var(--font-text);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.play-arrow {
  display: inline-block;
  width: 0.55em;
  height: 0.8em;
  flex-shrink: 0;
  vertical-align: middle;
  margin-left: 0.04em;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right .25s var(--ease);
}
.nav a:hover { color: var(--red-soft); }
.nav a:hover::after { right: 0; }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav__parent {
  /* inherits .nav a styles */
}
.nav__item--dropdown:hover .nav__parent { color: var(--red-soft); }
.nav__item--dropdown:hover .nav__parent::after { right: 0; }

.nav__chevron-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 4px 2px 4px 0;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color .2s var(--ease);
}
.nav__item--dropdown:hover .nav__chevron-btn { color: var(--red-soft); }
.nav__chevron {
  width: 8px; height: 5px;
  display: block;
  transition: transform .2s var(--ease);
}
.nav__item--dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__item--dropdown.is-open .nav__chevron { transform: rotate(180deg); }

.nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(225,11,31,.2);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 60;
  box-shadow: 0 10px 40px rgba(0,0,0,.7);
}
.nav__item--dropdown:hover .nav__submenu { display: block; }
.nav .nav__submenu a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
  border-bottom: none;
}
.nav .nav__submenu a::after { display: none; }
.nav .nav__submenu a:hover {
  color: var(--white);
  background: rgba(225,11,31,.12);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.vk-link, .phone-link {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s var(--ease);
}
.vk-link span { display: none; }
.vk-link:hover, .phone-link:hover { color: var(--red-soft); }
.phone-link { font-variant-numeric: tabular-nums; }

.burger {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease);
  text-align: center;
  line-height: 1;
}
.btn--book {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(225,11,31,.35);
}
.btn--book:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(225,11,31,.5); }
.btn--book:active { transform: translateY(0); }
.btn--small { padding: 10px 16px; font-size: 13px; border-radius: 6px; text-transform: uppercase; }
.btn--big { padding: 18px 32px; font-size: 16px; border-radius: 8px; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.4) 80%),
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.10) 30%, rgba(10,10,10,.5) 100%);
}
.hero__overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(225,11,31,.18) 100%);
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero__title {
  font-family: var(--font-display);
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroIn 1.4s var(--ease) .3s forwards;
}
.hero__line {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.hero__line--small {
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: 6px;
  color: var(--red-soft);
}
.hero__brand {
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 50%, #cfcfcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 60px rgba(0,0,0,.5);
}
.hero__arrow {
  width: 0.55em;
  height: 0.78em;
  vertical-align: middle;
  margin-left: 0.06em;
  flex-shrink: 0;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content .btn {
  opacity: 0;
  animation: heroIn 1.2s var(--ease) .9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  display: block;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--white);
  margin-left: -2px;
  border-radius: 2px;
  animation: scrollDown 1.6s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 96px 0;
  position: relative;
}
.section--white {
  background: var(--white);
  color: var(--black);
}
.section--dark {
  background: var(--black);
  color: var(--white);
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(225,11,31,.15), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(225,11,31,.10), transparent 60%);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--black);
  position: relative;
  padding-bottom: 18px;
}
.h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--red);
}
.h2--light { color: var(--white); }
.section__sub {
  color: var(--gray-500);
  margin: 0 0 48px;
  font-size: 17px;
}
.section--dark .section__sub { color: rgba(255,255,255,.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  max-width: 880px;
  margin-top: 36px;
}
.about__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  margin: 0 0 24px;
}
.about p { margin: 0 0 18px; }
.about__pills {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about__pills li {
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
}

/* ============================================================
   MEMBERS
   ============================================================ */
.members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.member {
  text-align: center;
}
.member__photo {
  width: 220px; height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--black-2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(225,11,31,.25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  background-image:
    radial-gradient(circle at 50% 35%, rgba(225,11,31,.2), transparent 60%),
    linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.member__photo::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.15)"><path d="M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-3 0-9 1.5-9 4.5V20h18v-1.5c0-3-6-4.5-9-4.5z"/></svg>') center/40% no-repeat;
}
.member__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}
.member:hover .member__photo {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(225,11,31,.45);
}
.member h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--white);
}
.member p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  letter-spacing: .3px;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  margin-top: 36px;
  border-top: 2px solid var(--black);
}
.sch-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--gray-300);
  transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.sch-row:hover {
  background: var(--gray-100);
  padding-left: 16px;
}
.sch-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 12px 0;
  border-radius: 6px;
  font-family: var(--font-display);
}
.sch-row__day { font-size: 28px; font-weight: 700; line-height: 1; }
.sch-row__month { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.sch-row__place {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.sch-row__place a {
  color: inherit;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.sch-row__place a:hover {
  color: var(--red);
  border-color: var(--red);
}
.sch-row__city {
  text-align: right;
  color: var(--gray-500);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.schedule__empty {
  padding: 32px 0 16px;
  color: var(--gray-500);
  font-size: 16px;
}
.schedule__hint {
  margin: 32px 0 0;
  color: var(--gray-500);
}
.schedule__hint a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ============================================================
   STAGE (where we play)
   ============================================================ */
.stage {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stage-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  background: var(--black-2);
  color: var(--white);
  cursor: pointer;
  isolation: isolate;
  transition: transform .3s var(--ease);
}
.stage-card:hover { transform: translateY(-4px); }
.stage-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  background-image: linear-gradient(135deg, #2a0a0a, #1a1a1a);
  z-index: 1;
  transition: transform .6s var(--ease);
}
.stage-card:hover .stage-card__img { transform: scale(1.05); }
.stage-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.85) 100%);
}
.stage-card__title {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 32px 32px 12px;
  margin-top: auto;
}
.stage-card__text {
  position: relative;
  z-index: 3;
  padding: 0 32px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}
.stage-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ============================================================
   VIDEO GRID
   ============================================================ */
.video-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black-2);
  cursor: pointer;
}
.video-item video,
.video-item > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.video-item__no-poster {
  width: 100%; height: 100%;
  background: var(--black-2);
}
.video-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .25s var(--ease);
}
.video-item:hover .video-item__play { background: rgba(0,0,0,.55); }
.video-item__play svg {
  width: 72px; height: 72px;
  transition: transform .25s var(--ease);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.6));
}
.video-item:hover .video-item__play svg { transform: scale(1.12); }

.video__more {
  text-align: center;
  margin-top: 36px;
}

/* Video lightbox */
.vlb {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.94);
  padding: 24px;
}
.vlb.is-open {
  display: flex;
  animation: fadeIn .25s var(--ease);
}
.vlb__inner {
  width: min(100%, 1100px);
}
.vlb__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.vlb__close {
  position: absolute;
  top: 16px; right: 20px;
  width: 44px; height: 44px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}
.vlb__close:hover { background: var(--red); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--black-2);
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
  filter: saturate(.95);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(225,11,31,.4) 100%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__more {
  text-align: center;
  margin-top: 40px;
}
.btn--more {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  padding: 14px 40px;
  font-size: 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--font-text);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--more:hover {
  border-color: var(--red);
  background: rgba(225,11,31,.12);
  color: var(--white);
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.contacts__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-300);
  margin: 0;
}
.contacts__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
}
.contacts__val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
}
a.contacts__val { transition: color .2s var(--ease); }
a.contacts__val:hover { color: var(--red); }
.contacts__btn { margin-top: 32px; }
.contacts__col--note {
  background: var(--gray-100);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--red);
  font-size: 16px;
  color: var(--gray-700);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 36px 0;
  font-size: 14px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.footer__brand .logo__wordmark { font-size: 22px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a:hover { color: var(--white); }
.footer__copy { display: flex; flex-direction: column; gap: 4px; }
.footer__dev { font-size: 12px; opacity: .6; }
.footer__dev a { color: inherit; text-decoration: none; }
.footer__dev a:hover { opacity: 1; color: var(--white); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.is-open { display: block; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s var(--ease);
}
.modal__dialog {
  position: relative;
  max-width: 520px;
  margin: 5vh auto;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: dialogIn .35s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--gray-100); color: var(--black); }

.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
}
.modal__sub {
  margin: 0 0 24px;
  color: var(--gray-500);
  font-size: 14px;
}

/* ============================================================
   FORM
   ============================================================ */
.form__row {
  margin-bottom: 16px;
}
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form__label span { color: var(--red); }
.form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-text);
  font-size: 16px;
  background: var(--white);
  color: var(--black);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225,11,31,.12);
}
.form__input--area { resize: vertical; min-height: 100px; }
.form__input.has-error { border-color: var(--red); background: #fff7f8; }

.form__err {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
  font-weight: 500;
}

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}
.form__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form__status {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form__status.is-ok { color: #0a7c31; font-weight: 600; }
.form__status.is-err { color: var(--red); font-weight: 600; }

.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 16px;
  text-align: center;
  animation: heroIn .4s var(--ease);
}
.form__success svg {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.form__success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--black);
}
.form__success-text {
  margin: 0;
  color: var(--gray-500);
  font-size: 15px;
}

.form__legal {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  margin: 12px 0 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn .25s var(--ease);
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border-radius: 6px;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 48px; height: 48px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lightbox__close:hover { background: var(--red); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}
.lightbox__nav:hover { background: var(--red); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ============================================================
   REPERTOIRE
   ============================================================ */
.repertoire {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px 48px;
  border-left: 4px solid var(--red);
}
.repertoire__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  flex: 1;
}
.repertoire__btn {
  flex-shrink: 0;
  white-space: nowrap;
  gap: 10px;
}

/* ============================================================
   CLIENTS CAROUSEL
   ============================================================ */
.clients-carousel {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.18);
  background: transparent;
  color: rgba(0,0,0,.5);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.carousel-btn:hover {
  border-color: var(--red);
  background: rgba(225,11,31,.08);
  color: var(--red);
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform .45s var(--ease);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 25%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.carousel-slide__logo {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid var(--gray-300);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.carousel-slide__logo img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
  filter: grayscale(25%);
  transition: filter .25s var(--ease);
}
.carousel-slide:hover .carousel-slide__logo {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.carousel-slide:hover .carousel-slide__logo img { filter: grayscale(0); }
.carousel-slide__name {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav a { font-size: 13px; }
  .vk-link span { display: none; }
  .members { grid-template-columns: repeat(2, 1fr); }
  .member__photo { width: 200px; height: 200px; }
}

@media (max-width: 860px) {
  .header__right .btn--book.btn--small { display: none; }
  .header__right { gap: 12px; }
  .phone-link { font-size: 13px; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right .3s var(--ease);
    margin: 0;
    border-left: 2px solid var(--red);
    overflow-y: auto;
  }
  .nav.is-open { right: 0; }
  .nav a {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }
  .burger { display: block; margin-left: auto; }

  /* Dropdown в мобильном меню */
  .nav__item--dropdown {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav .nav__parent {
    flex: 1;
    border-bottom: none;
    font-size: 18px;
    padding: 16px 0;
    width: auto;
  }
  .nav__chevron-btn {
    padding: 16px 8px;
  }
  .nav__submenu {
    position: static;
    width: 100%;
    background: rgba(255,255,255,.04);
    border: none;
    border-top: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__item--dropdown:hover .nav__submenu { display: none; }
  .nav__item--dropdown.is-open .nav__submenu { display: block; }
  .nav .nav__submenu a {
    font-size: 16px;
    padding: 14px 20px;
    color: rgba(255,255,255,.7);
    width: 100%;
    border-bottom: none;
  }
  .nav .nav__submenu a:hover { background: rgba(225,11,31,.1); }

  /* Репертуар — мобильный */
  .repertoire {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    align-items: flex-start;
  }

  /* Карусель — мобильный */
  .carousel-btn { width: 40px; height: 40px; font-size: 16px; }
  .carousel-slide { flex: 0 0 33.333%; }

  .section { padding: 64px 0; }

  .stage { grid-template-columns: 1fr; }

  .video-grid { grid-template-columns: 1fr; gap: 16px; }

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

  .contacts { grid-template-columns: 1fr; gap: 24px; }
  .contacts__row { grid-template-columns: 110px 1fr; }
  .contacts__val { font-size: 17px; }

  .sch-row { grid-template-columns: 100px 1fr; gap: 16px; }
  .sch-row__city { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .header__inner { padding: 0 16px; gap: 12px; }
  .vk-link, .phone-link { font-size: 12px; }
  .logo__wordmark { font-size: 20px; }
  .logo__sub { font-size: 8px; letter-spacing: 2.5px; }

  .hero { min-height: 560px; }
  .hero__brand { font-size: clamp(64px, 18vw, 110px); }

  .members { grid-template-columns: 1fr; gap: 24px; }
  .member__photo { width: 200px; height: 200px; }

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

  .modal__dialog { padding: 24px 16px 16px; margin: 2vh 10px; max-width: calc(100vw - 20px); }

  .footer__inner { flex-direction: column; text-align: center; }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__nav { width: 44px; height: 44px; }

  .carousel-slide { flex: 0 0 50%; }
  .clients-carousel { gap: 8px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 14px; }
  .carousel-slide__logo { height: 80px; padding: 12px 14px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  border-bottom: 1px solid var(--gray-300);
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-300);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  color: var(--black);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='white'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") center/10px no-repeat;
  transition: transform .25s var(--ease);
}

.faq__item[open] .faq__q::after {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 0 18px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq__q { font-size: 14px; }
}

/* Уважаем prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01s !important;
    scroll-behavior: auto !important;
  }
}
