/* =========================================================
   WIX SOUND — студия звукозаписи в Москве
   Общие стили для всех страниц (многостраничный сайт).
   Палитра: Slate Gray #020202 / Candy Blue #B2D5E5 / Blue Atoll #1F2634
   Шрифты: Unbounded (дисплей) + Manrope (текст) — оба с кириллицей.
   ========================================================= */

/* ---------- Дизайн-токены ---------- */
:root {
  --c-black:     #020202;          /* основной фон */
  --c-candy:     #B2D5E5;          /* ледяной голубой акцент */
  --c-atoll:     #1F2634;          /* тёмные поверхности */

  --c-surface:   #0a0d12;          /* секции */
  --c-surface-2: #11161f;          /* карточки */
  --c-line:      rgba(178, 213, 229, 0.12);
  --c-text:      #eef3f6;
  --c-muted:     #8d99a6;
  --c-candy-soft: rgba(178, 213, 229, 0.10);

  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --container: 1240px;
  --radius:    18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.4s var(--ease);

  --z-header: 50;
  --z-menu:   60;
  --z-grain:  80;
  --z-cursor: 90;
  --z-preloader: 100;
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip обрезает по горизонтали, НЕ создавая scroll-контейнер
   (в отличие от overflow-x: hidden, который ломает window.scrollY и sticky).
   Прокрутку держит сам html/окно — это важно для scroll-логики Hero. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--c-black);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; }

/* Кастомный курсор активен только на точных указателях */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [data-cursor] { cursor: none; }
}

/* ---------- Контейнер и секции ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }

/* ---------- Заголовки секций ---------- */
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -0.02em;
}
.section__title em { font-style: normal; color: var(--c-candy); }
.section__tag {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-candy); margin-bottom: 18px; padding-left: 28px; position: relative;
}
.section__tag::before { content: ""; position: absolute; left: 0; top: 50%; width: 18px; height: 1px; background: var(--c-candy); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__desc { color: var(--c-muted); max-width: 440px; font-size: 1.05rem; }

/* =========================================================
   Прелоадер
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader); background: var(--c-black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__logo { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.4rem); letter-spacing: 0.04em; }
.preloader__logo span { color: var(--c-candy); }
.preloader__bar { width: 200px; height: 2px; background: var(--c-line); overflow: hidden; border-radius: 2px; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--c-candy); animation: load 1.2s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* =========================================================
   Зерно / grain
   ========================================================= */
.grain {
  position: fixed; inset: -50%; z-index: var(--z-grain); pointer-events: none; opacity: 0.04; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain { 0% { transform: translate(0,0); } 50% { transform: translate(-3%, 2%); } 100% { transform: translate(2%, -2%); } }

/* =========================================================
   Кастомный курсор
   ========================================================= */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: var(--z-cursor); pointer-events: none; border-radius: 50%; }
.cursor { width: 40px; height: 40px; border: 1px solid var(--c-candy); transform: translate(-50%, -50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease); }
.cursor.is-hover { width: 64px; height: 64px; background: var(--c-candy-soft); }
.cursor-dot { width: 5px; height: 5px; background: var(--c-candy); transform: translate(-50%, -50%); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* =========================================================
   Прогресс прокрутки
   ========================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--c-atoll), var(--c-candy)); z-index: var(--z-header); transition: width 0.1s linear; }

/* =========================================================
   Шапка / навигация
   ========================================================= */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); border-bottom: 1px solid transparent; transition: background var(--t), backdrop-filter var(--t), padding var(--t), border-color var(--t); }
.header.is-scrolled { background: rgba(2,2,2,0.72); backdrop-filter: blur(14px); border-bottom-color: var(--c-line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 20px; }
.header.is-scrolled .header__inner { padding-block: 14px; }

.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: 0.02em; display: flex; align-items: center; gap: 10px; }
.logo__accent { color: var(--c-candy); }
.logo__mark { width: 12px; height: 12px; border-radius: 50%; background: var(--c-candy); box-shadow: 0 0 14px var(--c-candy); animation: pulse 2s infinite; }
.logo--lg { font-size: 1.8rem; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 6px var(--c-candy); } 50% { box-shadow: 0 0 18px var(--c-candy); } }

.nav { display: flex; gap: 32px; }
.nav__link { font-size: 0.92rem; font-weight: 500; color: var(--c-muted); position: relative; transition: color var(--t); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--c-candy); transition: width var(--t); }
.nav__link:hover { color: var(--c-text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--c-text); }

/* =========================================================
   Кнопки
   ========================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: transform var(--t), background var(--t), color var(--t), border-color var(--t); white-space: nowrap; }
.btn--primary { background: var(--c-candy); color: var(--c-black); }
.btn--primary:hover { background: #cfe6f1; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--c-line); color: var(--c-text); }
.btn--ghost:hover { border-color: var(--c-candy); background: var(--c-candy-soft); }
.btn--block { width: 100%; }
.btn__play { width: 26px; height: 26px; border-radius: 50%; border: 1px solid currentColor; position: relative; flex-shrink: 0; }
.btn__play::before { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-left: 7px solid currentColor; border-top: 4px solid transparent; border-bottom: 4px solid transparent; }

/* Бургер + мобильное меню */
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--c-text); margin-inline: auto; transition: var(--t); }
.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); }
.mobile-menu { position: fixed; inset: 0; z-index: var(--z-menu); background: var(--c-black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t); }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.mobile-menu__link { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.mobile-menu__link:hover, .mobile-menu__link.is-active { color: var(--c-candy); }

/* =========================================================
   HERO — статичный экран: только фото певицы на плоском фоне.
   Фон #020202 (как просили), чтобы блок был цельным.
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 60px; background: var(--c-black); }
/* Плоский тёмный фон + едва заметное свечение за певицей (не градиентная «коробка») */
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(46% 50% at 76% 42%, rgba(178,213,229,0.06), transparent 70%), var(--c-black); }

/* Текст (левая часть) */
.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__text { max-width: 560px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; letter-spacing: 0.08em; color: var(--c-candy); padding: 8px 16px; border: 1px solid var(--c-line); border-radius: 100px; margin-bottom: 28px; background: rgba(2,2,2,0.3); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-candy); animation: pulse 2s infinite; }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6.5vw, 5.4rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 26px; }
.hero__title .line { display: block; }
.hero__title em { font-style: normal; color: var(--c-candy); }
.hero__lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--c-muted); max-width: 460px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__mini { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__mini div { display: flex; flex-direction: column; }
.hero__mini strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-text); }
.hero__mini span { font-size: 0.85rem; color: var(--c-muted); }

/* Изображение певицы (правая часть) — статичная, сливается с фоном */
.hero__visual { position: absolute; inset: 0; z-index: 1; display: flex; justify-content: flex-end; align-items: flex-end; pointer-events: none; }
.hero__visual-inner { position: relative; height: 96%; width: min(58%, 760px); }
.hero__static { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: right bottom;
  animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
/* Низ певицы мягко растворяется в плоском фоне для цельности */
.hero__visual-fade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, var(--c-black) 99%); }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-muted); }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--c-candy), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--c-candy); animation: scrollDown 1.8s var(--ease) infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* =========================================================
   Hero внутренних страниц
   ========================================================= */
.page-hero { position: relative; padding: clamp(140px, 18vw, 220px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,2,2,0.5), var(--c-black)); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--c-muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--c-candy); }
.breadcrumb span { color: var(--c-candy); }
.page-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.03em; }
.page-hero__title em { font-style: normal; color: var(--c-candy); }
.page-hero__lead { color: var(--c-muted); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 560px; margin-top: 22px; }

/* =========================================================
   Бегущая строка брендов
   ========================================================= */
.marquee { overflow: hidden; border-block: 1px solid var(--c-line); padding-block: 26px; background: var(--c-surface); }
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; animation: marquee 28s linear infinite; font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 600; }
.marquee__track .dot { color: var(--c-candy); font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Зачем выбирать студию
   ========================================================= */
.why__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin: 0; }
.why__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why__text em { font-style: normal; color: var(--c-candy); }
.why__text .section__desc { margin-top: 20px; max-width: 520px; }
.why__list { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.why__list li { display: flex; gap: 20px; align-items: flex-start; padding-block: 22px; border-top: 1px solid var(--c-line); }
.why__list li:last-child { border-bottom: 1px solid var(--c-line); }
.why__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: transparent; -webkit-text-stroke: 1px var(--c-candy); flex-shrink: 0; padding-top: 2px; }
.why__list h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 6px; }
.why__list p { color: var(--c-muted); font-size: 0.95rem; }

/* =========================================================
   Статистика (счётчики)
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats--bordered { padding-top: 56px; border-top: 1px solid var(--c-line); }
.stat { text-align: center; }
.stat__num, .stat__plus { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.stat__plus { color: var(--c-candy); }
.stat p { color: var(--c-muted); font-size: 0.92rem; margin-top: 6px; }

/* =========================================================
   Услуги — Bento Grid
   ========================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento__card { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: transform var(--t), border-color var(--t); position: relative; overflow: hidden; }
.bento__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 100% 0%, var(--c-candy-soft), transparent 50%); opacity: 0; transition: opacity var(--t); }
.bento__card:hover { transform: translateY(-6px); border-color: rgba(178,213,229,0.4); }
.bento__card:hover::before { opacity: 1; }
/* Контент большой карточки по вертикальному центру (а не прижат к низу) */
.bento__card--lg { grid-column: span 2; grid-row: span 2; justify-content: center; }
.bento__card--lg .flip__front, .bento__card--lg .flip__back { justify-content: center; }
.bento__card--wide { grid-column: span 2; }
.bento__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--c-atoll); display: flex; align-items: center; justify-content: center; color: var(--c-candy); margin-bottom: 6px; }
.bento__icon svg { width: 26px; height: 26px; }
.bento__card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.bento__card--lg h3 { font-size: 2rem; }
.bento__card p { color: var(--c-muted); font-size: 0.95rem; }
.bento__price { margin-top: auto; padding-top: 8px; color: var(--c-candy); font-weight: 600; font-size: 0.95rem; }

/* =========================================================
   Галерея — авто-карусель + ручная прокрутка/drag
   ========================================================= */
.gallery__viewport {
  overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery__viewport::-webkit-scrollbar { display: none; }
.gallery__viewport.is-dragging { cursor: grabbing; }
.gallery__viewport.is-dragging .gallery__item img { transition: none; }

/* Автопрокрутка сделана CSS-анимацией, а не JS: анимация крутится на композиторе
   и не зависит от requestAnimationFrame (тот замирает в фоновой вкладке).
   Набор карточек дублируется в JS, поэтому сдвиг на -50% даёт бесшовную петлю. */
/* Отступы заданы через margin карточек, а НЕ через gap и padding ленты.
   Иначе половина ширины не совпадает с одним набором: между копиями остаётся
   лишний зазор, и на стыке появляется чёрный провал. С margin ширина ленты
   ровно вдвое больше одного набора, поэтому сдвиг на -50% попадает встык. */
.gallery__track { display: flex; width: max-content;
  animation: galleryScroll 96s linear infinite; will-change: transform;
  animation-play-state: paused; }
/* Движение начинается, когда кадры загружены (класс ставит main.js) */
.gallery__viewport.is-ready .gallery__track { animation-play-state: running; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Пауза при наведении и во время перетаскивания */
.gallery__viewport:hover .gallery__track,
.gallery__viewport.is-dragging .gallery__track { animation-play-state: paused; }
.gallery__item { flex: 0 0 clamp(240px, 30vw, 400px); margin-right: 20px; background: var(--c-surface-2); aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--c-surface-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); user-select: none; -webkit-user-drag: none; pointer-events: none; }
@media (hover: hover) { .gallery__item:hover img { transform: scale(1.06); } }

/* Сетка-галерея (страница Интерьер) — РОВНАЯ сетка, без «лесенки».
   Все плитки одинакового формата (object-fit: cover кадрирует фото). */
.grid-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4 / 5; }
.grid-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.grid-gallery figure:hover img { transform: scale(1.05); }

/* =========================================================
   Оборудование
   ========================================================= */
.gear__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.gear__media { border-radius: var(--radius-lg); overflow: hidden; }
.gear__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.gear__list { margin-top: 32px; display: flex; flex-direction: column; }
.gear__list li { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 20px; border-top: 1px solid var(--c-line); flex-wrap: wrap; }
.gear__list li:last-child { border-bottom: 1px solid var(--c-line); }
.gear__name { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.gear__meta { color: var(--c-muted); font-size: 0.9rem; text-align: right; }

/* =========================================================
   Тарифы
   ========================================================= */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: transform var(--t), border-color var(--t); }
.price-card:hover { transform: translateY(-6px); border-color: rgba(178,213,229,0.35); }
.price-card--featured { background: linear-gradient(180deg, rgba(31,38,52,0.8), var(--c-surface-2)); border-color: rgba(178,213,229,0.4); }
.price-card__badge { position: absolute; top: 24px; right: 24px; background: var(--c-candy); color: var(--c-black); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.price-card__desc { color: var(--c-muted); font-size: 0.92rem; }
.price-card__price { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-muted); }
.price-card__price span { font-size: 2.4rem; font-weight: 700; color: var(--c-text); }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-block: 8px; flex-grow: 1; }
.price-card ul li { display: flex; align-items: center; gap: 12px; color: var(--c-text); font-size: 0.95rem; }
.price-card ul li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; background: var(--c-candy-soft); border: 1px solid var(--c-candy); }

/* =========================================================
   Процесс
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 32px 28px; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); transition: transform var(--t), border-color var(--t); }
.step:hover { transform: translateY(-6px); border-color: rgba(178,213,229,0.3); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; -webkit-text-stroke: 1px var(--c-candy); color: transparent; display: block; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-block: 16px 10px; }
.step p { color: var(--c-muted); font-size: 0.95rem; }

/* =========================================================
   Отзывы
   ========================================================= */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 24px; transition: transform var(--t), border-color var(--t); }
.review:hover { transform: translateY(-6px); border-color: rgba(178,213,229,0.3); }
.review::before { content: "“"; font-family: var(--font-display); font-size: 3rem; color: var(--c-candy); line-height: 0.5; height: 24px; }
.review p { font-size: 1.05rem; }
.review footer { display: flex; flex-direction: column; margin-top: auto; }
.review footer strong { font-family: var(--font-display); font-weight: 600; }
.review footer span { color: var(--c-muted); font-size: 0.88rem; }

/* =========================================================
   CTA-полоса
   ========================================================= */
.cta-band { text-align: center; }
.cta-band__inner { border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: clamp(48px, 8vw, 90px) 24px; background: radial-gradient(80% 120% at 50% 0%, rgba(31,38,52,0.7), var(--c-surface-2)); }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 3.2rem); letter-spacing: -0.02em; margin-bottom: 20px; }
.cta-band h2 em { font-style: normal; color: var(--c-candy); }
.cta-band p { color: var(--c-muted); max-width: 460px; margin: 0 auto 32px; }

/* =========================================================
   Контакты + форма
   ========================================================= */
.contacts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contacts__list { margin-top: 12px; display: flex; flex-direction: column; }
.contacts__list li { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 18px; border-top: 1px solid var(--c-line); flex-wrap: wrap; }
.contacts__list li:last-child { border-bottom: 1px solid var(--c-line); }
.contacts__label { color: var(--c-muted); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contacts__list a:hover { color: var(--c-candy); }

.booking { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; color: var(--c-muted); }
.field input, .field select, .field textarea { background: var(--c-black); border: 1px solid var(--c-line); border-radius: 12px; padding: 14px 16px; color: var(--c-text); font-family: inherit; font-size: 1rem; transition: border-color var(--t); width: 100%; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-candy); }
.field select { appearance: none; }
.field__error { color: #ff8a8a; font-size: 0.8rem; min-height: 0; }
.field__hint { color: var(--c-muted); font-size: 0.8rem; }
.field.is-invalid input, .field.is-invalid select { border-color: #ff8a8a; }
.field[hidden] { display: none; }
/* select со значением — обычный текст, плейсхолдер — приглушённый */
.field select:invalid { color: var(--c-muted); }
.booking__note { font-size: 0.78rem; color: var(--c-muted); text-align: center; }
/* Оффер в точке решения: заметная строка над кнопкой */
.booking__bonus { font-size: 0.88rem; font-weight: 600; color: var(--c-candy); text-align: center;
  padding: 12px 16px; border: 1px dashed rgba(178,213,229,0.4); border-radius: 12px; background: var(--c-candy-soft); }
.booking__success { background: var(--c-candy-soft); border: 1px solid var(--c-candy); color: var(--c-candy); border-radius: 12px; padding: 16px; text-align: center; font-weight: 500; }

.map { margin-top: 64px; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 21/9; background: var(--c-surface-2); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.map__note { margin-top: 14px; text-align: center; font-size: 0.88rem; color: var(--c-muted); }
.map__note a { color: var(--c-candy); }
.map__note a:hover { text-decoration: underline; }
@media (max-width: 680px) { .map { aspect-ratio: 4/5; } }
.map__placeholder { text-align: center; color: var(--c-muted); }
.map__placeholder strong { display: block; font-family: var(--font-display); color: var(--c-text); margin-bottom: 6px; }

/* =========================================================
   Футер
   ========================================================= */
.footer { border-top: 1px solid var(--c-line); padding-top: clamp(56px, 8vw, 90px); background: var(--c-surface); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { color: var(--c-muted); margin-top: 16px; max-width: 280px; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col a, .footer__col span { color: var(--c-muted); transition: color var(--t); width: fit-content; }
.footer__col a:hover { color: var(--c-candy); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-block: 26px; border-top: 1px solid var(--c-line); color: var(--c-muted); font-size: 0.85rem; }
.footer__top:hover { color: var(--c-candy); }

/* =========================================================
   Reveal-анимации
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--reveal-delay, 0) * 0.08s); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   НОВЫЕ КОМПОНЕНТЫ И АНИМАЦИИ
   ========================================================= */

/* --- Кластер фото с параллаксом (блок «Дом запишет голос…») --- */
.why__cluster { position: relative; height: clamp(380px, 42vw, 520px); margin: 0; }
.why__photo { position: absolute; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.9); will-change: transform; }
.why__photo img { width: 100%; height: 100%; object-fit: cover; }
.why__photo--main { width: 66%; height: 100%; right: 0; top: 0; }
.why__photo--sub { width: 50%; height: 52%; left: 0; bottom: 4%; }
.why__photo-tag { position: absolute; bottom: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; align-items: center; padding: 11px 15px; background: rgba(2,2,2,0.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--c-line); border-radius: 14px; font-size: 0.78rem; }
.why__photo-tag span:last-child { color: var(--c-candy); }

/* --- Секция микрофона со scroll-анимацией --- */
.mic { position: relative; overflow: hidden; padding: clamp(80px, 12vw, 150px) 0; }
.mic__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.mic__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: clamp(280px, 32vw, 400px); }
.mic__glow { position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(178,213,229,0.28), transparent 65%); filter: blur(28px); animation: pulse 3.5s ease-in-out infinite; }
.mic__img { position: relative; width: min(46%, 220px); filter: drop-shadow(0 36px 60px rgba(0,0,0,0.7)); will-change: transform; transform-origin: center 60%; }
.mic__ring { position: absolute; border: 1px solid rgba(178,213,229,0.18); border-radius: 50%; width: 56%; aspect-ratio: 1; }
.mic__ring--2 { width: 72%; border-color: rgba(178,213,229,0.10); }

/* --- Флип-карточки (переворот при наведении) --- */
.flip { perspective: 1400px; }
.flip__inner { position: relative; display: grid; transition: transform 0.7s var(--ease); transform-style: preserve-3d; }
.flip:hover .flip__inner, .flip:focus-within .flip__inner,
.flip.is-flipped .flip__inner { transform: rotateY(180deg); }
/* На телефоне подсказка про наведение неуместна */
@media (hover: none) { .flip__hint { font-size: 0; }
  .flip__hint::before { content: 'Нажми — подробнее'; font-size: 0.78rem; } }
.flip__front, .flip__back { grid-area: 1 / 1; display: flex; flex-direction: column; gap: 14px; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.flip__back { transform: rotateY(180deg); justify-content: center; }
.flip__back h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--c-candy); }
.flip__back p { color: var(--c-text); font-size: 0.95rem; line-height: 1.6; }
.flip__back ul { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.flip__back li { color: var(--c-muted); font-size: 0.9rem; padding-left: 18px; position: relative; }
.flip__back li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--c-candy); }
.flip__hint { margin-top: auto; font-size: 0.78rem; color: var(--c-muted); display: inline-flex; align-items: center; gap: 6px; }
.flip__hint::after { content: "↻"; color: var(--c-candy); }
/* Карточка-флип не «лифтится», только переворот (чтобы не дёргалось) */
.bento__card.flip:hover, .service-card.flip:hover { transform: none; }

/* --- Ровная сетка услуг (страница «Услуги») --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 32px; min-height: 300px; transition: border-color var(--t); }
.service-card:hover { border-color: rgba(178,213,229,0.4); }
.service-card .bento__icon { margin-bottom: 6px; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.service-card p { color: var(--c-muted); font-size: 0.95rem; }
.service-card .bento__price { margin-top: auto; padding-top: 8px; color: var(--c-candy); font-weight: 600; font-size: 0.95rem; }

/* --- Свечение цифр в блоке «Как проходит сессия» при наведении --- */
.step__num { transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease), -webkit-text-stroke-color 0.3s var(--ease); }
.step:hover .step__num { color: var(--c-candy); -webkit-text-stroke-color: var(--c-candy); text-shadow: 0 0 14px rgba(178,213,229,0.9), 0 0 34px rgba(178,213,229,0.55); }

/* --- Неоновая «рельса», рисующаяся при скролле (страница «Студия») --- */
/* z-index: 0 — неон строго ПОД контентом (main = z-index 1).
   Едва заметный фоновый акцент: узкая полоса у самого края, слабое свечение.
   На экранах < 1280px контейнер подходит к краю — там неон скрыт полностью. */
.neon-rail { position: fixed; top: 0; left: 0; width: 72px; height: 100vh; z-index: 0; pointer-events: none; opacity: 0.28;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent); }
.neon-rail svg { width: 100%; height: 100%; display: block; }
.neon-rail path { fill: none; stroke: var(--c-candy); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 2px rgba(178,213,229,0.45)); }
.neon-rail .neon-rail__base { stroke: rgba(178,213,229,0.05); filter: none; }
@media (max-width: 1279px) { .neon-rail { display: none; } }

/* Контент страниц выше неоновой рельсы */
main { position: relative; z-index: 1; }

/* Оверлей перехода между страницами (плавное затемнение в чёрный) */
.page-fade { position: fixed; inset: 0; z-index: 95; background: var(--c-black); opacity: 0; pointer-events: none; transition: opacity 0.42s var(--ease); }
.page-fade.is-active { opacity: 1; pointer-events: all; }

/* --- Пузырьки bubblegum (страница «Услуги», первый блок) --- */
.bubbles { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
/* Нейтрально-серые, едва заметные «шары», мягко пульсируют */
.bubble { position: absolute; border-radius: 50%; mix-blend-mode: screen;
  background: radial-gradient(circle at 32% 30%, rgba(150,160,170,0.18), rgba(150,160,170,0.05) 55%, transparent 72%);
  animation: bubbleFloat var(--bd, 16s) ease-in-out infinite, bubblePulse var(--bp, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s); filter: blur(0.5px); }
.bubble--atoll { background: radial-gradient(circle at 32% 30%, rgba(31,38,52,0.6), rgba(31,38,52,0.12) 55%, transparent 72%); border: 1px solid rgba(255,255,255,0.05); }
@keyframes bubbleFloat { 0%,100% { transform: translate(0,0); } 33% { transform: translate(12px,-18px); } 66% { transform: translate(-10px,-8px); } }
@keyframes bubblePulse { 0%,100% { transform: scale(0.92); opacity: 0.35; } 50% { transform: scale(1.1); opacity: 0.6; } }

/* --- Блок скидки 20% (страница «Услуги») --- */
.discount { position: relative; }
.discount__inner { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: center;
  border: 1px solid rgba(178,213,229,0.4); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); background: radial-gradient(80% 140% at 0% 0%, rgba(31,38,52,0.8), var(--c-surface-2)); overflow: hidden; }
.discount__badge { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--c-candy);
  text-shadow: 0 0 24px rgba(178,213,229,0.5); line-height: 1; }
.discount__text h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.discount__text p { color: var(--c-muted); max-width: 440px; }
.discount__cta { display: flex; flex-direction: column; gap: 10px; }
.discount__cta small { color: var(--c-muted); font-size: 0.78rem; text-align: center; }

/* =========================================================
   Неон на цифрах: загорается, когда блок доезжает до экрана.
   Класс is-lit ставит JS (IntersectionObserver) — работает и на телефоне,
   где наведения нет.
   ========================================================= */
/* Свечение нарастает и гаснет одинаково плавно (1.1 с в обе стороны) */
.why__num, .step__num, .stat__num, .stat__plus, .ref-scale__item strong {
  transition: color 1.1s var(--ease), text-shadow 1.1s var(--ease),
              -webkit-text-stroke-color 1.1s var(--ease);
}
.why__num.is-lit, .step__num.is-lit {
  color: var(--c-candy); -webkit-text-stroke-color: var(--c-candy);
  text-shadow: 0 0 12px rgba(178,213,229,0.85), 0 0 30px rgba(178,213,229,0.45);
}
.stat__num.is-lit, .stat__plus.is-lit, .ref-scale__item strong.is-lit {
  color: var(--c-candy);
  text-shadow: 0 0 14px rgba(178,213,229,0.8), 0 0 34px rgba(178,213,229,0.4);
}
/* Наведение на карточку усиливает свечение ещё сильнее */
.step:hover .step__num, .why__list li:hover .why__num {
  text-shadow: 0 0 16px rgba(178,213,229,1), 0 0 42px rgba(178,213,229,0.6);
}

/* =========================================================
   Неоновый логотип вместо фотографии
   ========================================================= */
/* Без рамки и подложки — только текст, который проявляется и гаснет */
.logo-plate {
  display: flex; align-items: center; justify-content: center; margin: 0;
  aspect-ratio: 4 / 5; position: relative;
}
.logo-plate__text {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.2rem); line-height: 1; letter-spacing: -0.02em;
  text-align: center; color: var(--c-muted); opacity: 0.5;
  transition: color 1.2s var(--ease), text-shadow 1.2s var(--ease), opacity 1.2s var(--ease);
}
.logo-plate__text span { display: block; color: var(--c-candy); }
.logo-plate__sub {
  transition: opacity 1.2s var(--ease); opacity: 0.45;
  position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--c-muted);
}
/* Неон: на десктопе — по наведению, на телефоне — когда блок появился (is-lit из JS) */
.logo-plate:hover .logo-plate__text,
.logo-plate.is-lit .logo-plate__text {
  color: #fff; opacity: 1;
  text-shadow: 0 0 10px rgba(178,213,229,0.95), 0 0 28px rgba(178,213,229,0.7),
               0 0 64px rgba(178,213,229,0.45);
}
.logo-plate:hover .logo-plate__text span,
.logo-plate.is-lit .logo-plate__text span { color: var(--c-candy); }
.logo-plate.is-lit .logo-plate__sub, .logo-plate:hover .logo-plate__sub { opacity: 1; }

/* =========================================================
   Прайс-лист таблицей
   ========================================================= */
.pricelist { border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; background: var(--c-surface-2); }
.pricelist__row {
  display: flex; align-items: baseline; gap: 16px; padding: 18px 24px;
  border-top: 1px solid var(--c-line); transition: background var(--t);
}
.pricelist__row:first-child { border-top: 0; }
.pricelist__row:hover { background: rgba(178,213,229,0.04); }
.pricelist__row--accent { background: rgba(178,213,229,0.07); }
.pricelist__name { font-weight: 500; }
.pricelist__note { display: block; font-size: 0.82rem; color: var(--c-muted); margin-top: 3px; }
.pricelist__dots { flex: 1; border-bottom: 1px dotted rgba(178,213,229,0.25); min-width: 20px; }
.pricelist__price { font-family: var(--font-display); font-weight: 600; color: var(--c-candy); white-space: nowrap; }
.pricelist__group { padding: 22px 24px 6px; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-muted); border-top: 1px solid var(--c-line); }
.pricelist__group:first-child { border-top: 0; }

/* =========================================================
   Бонус-полоса (оффер на каждой странице)
   ========================================================= */
.bonus-band { padding-block: clamp(32px, 5vw, 56px); }
.bonus-band__inner { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(178,213,229,0.35); border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 36px) clamp(22px, 4vw, 44px);
  background: radial-gradient(90% 160% at 0% 0%, rgba(31,38,52,0.75), var(--c-surface-2)); }
.bonus-band__icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: var(--c-atoll);
  display: flex; align-items: center; justify-content: center; color: var(--c-candy); }
.bonus-band__icon svg { width: 26px; height: 26px; }
.bonus-band__text { flex-grow: 1; }
.bonus-band__text h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 6px; }
.bonus-band__text h3 em { font-style: normal; color: var(--c-candy); }
.bonus-band__text p { color: var(--c-muted); font-size: 0.92rem; max-width: 560px; }
.bonus-band .btn { flex-shrink: 0; }

/* =========================================================
   Реферальная программа
   ========================================================= */
.ref-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Накопительная шкала: 25 → 50 → 75 → 100% */
.ref-scale { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(40px, 6vw, 64px); }
.ref-scale__item { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px 20px; text-align: center;
  background: var(--c-surface-2); transition: border-color var(--t), transform var(--t); position: relative; overflow: hidden; }
.ref-scale__item:hover { transform: translateY(-4px); border-color: rgba(178,213,229,0.35); }
.ref-scale__item strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--c-candy); display: block; }
.ref-scale__item span { color: var(--c-muted); font-size: 0.88rem; }
.ref-scale__item--free { border-color: rgba(178,213,229,0.5); background: linear-gradient(180deg, rgba(31,38,52,0.85), var(--c-surface-2)); }
.ref-scale__item--free strong { text-shadow: 0 0 22px rgba(178,213,229,0.55); }
/* Заполнение шкалы под элементами */
.ref-scale__item::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: var(--fill, 25%); background: var(--c-candy); opacity: 0.7; }

/* =========================================================
   Мероприятия
   ========================================================= */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: transform var(--t), border-color var(--t); position: relative; overflow: hidden; }
.event-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 100% 0%, var(--c-candy-soft), transparent 50%); opacity: 0; transition: opacity var(--t); }
.event-card:hover { transform: translateY(-6px); border-color: rgba(178,213,229,0.4); }
.event-card:hover::before { opacity: 1; }
.event-card--wide { grid-column: span 2; }
.event-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.event-card p { color: var(--c-muted); font-size: 0.95rem; }
.event-card__meta { margin-top: auto; padding-top: 8px; color: var(--c-candy); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* =========================================================
   Адаптив
   ========================================================= */
@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .about__grid, .gear__grid, .contacts__grid, .why__grid, .mic__inner, .discount__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__media { max-width: 460px; }
  /* Hero на планшете/мобильном: компоновка в колонку, фото сверху */
  .hero { flex-direction: column; align-items: center; min-height: auto; padding: 104px 0 48px; text-align: center; }
  .hero__content { order: 2; }
  .hero__text { max-width: 100%; margin-inline: auto; }
  .hero__eyebrow, .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__mini { justify-content: center; }
  .hero__visual { position: relative; inset: auto; order: 1; height: clamp(300px, 50vh, 440px); width: 100%; justify-content: center; align-items: flex-end; margin-bottom: 18px; }
  .hero__visual-inner { width: min(82%, 380px); height: 100%; }
  .hero__static { object-position: center bottom; }
  .hero__scroll { display: none; }
  .gear__grid .gear__media { order: -1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--lg, .bento__card--wide { grid-column: span 2; grid-row: auto; }
  .pricing__grid, .reviews__grid, .steps, .services-grid, .events-grid, .ref-steps { grid-template-columns: 1fr 1fr; }
  .event-card--wide { grid-column: span 2; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); }
  .why__cluster { height: clamp(340px, 70vw, 460px); order: -1; }
  .mic__inner .mic__visual { order: -1; }
  .neon-rail { display: none; }
  .bonus-band__inner { flex-wrap: wrap; }
  .ref-scale { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body, a, button, [data-cursor] { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .bento, .pricing__grid, .reviews__grid, .steps, .services-grid, .events-grid, .ref-steps { grid-template-columns: 1fr; }
  .bento__card--lg, .bento__card--wide, .event-card--wide { grid-column: auto; }
  .ref-scale { grid-template-columns: 1fr 1fr; }
  .bonus-band__inner { flex-direction: column; align-items: flex-start; }
  .bonus-band .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .gear__meta { text-align: left; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  /* На телефоне reveal — только прозрачность (без сдвига), чтобы текст не «сползал» */
  [data-reveal] { transform: none; }
  [data-reveal].is-visible { transform: none; }
  /* Кластер фото не наезжает на текст: фиксируем порядок и отступ */
  .why__cluster { order: -1; margin-bottom: 8px; }
  .hero__static { animation: none; }   /* без «дыхания» на мобайле */
}

/* =========================================================
   prefers-reduced-motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  /* Исключение: лента интерьера — это способ показать студию, а не украшение.
     Оставляем её живой, но заметно медленнее, чтобы не раздражала. */
  .gallery__track { animation-duration: 220s !important; animation-iteration-count: infinite !important; }
}
