/* =========================================================================
   ROSEBOND — стили сайта лейбла
   -------------------------------------------------------------------------
   Токены дизайна (фиксированные значения — не менять без пересмотра всей
   визуальной системы):

   Цвета:
     --bg          #0a0a0d   основной фон (почти чёрный)
     --bg-panel    #12141c   тёмно-синяя панель (карточки, шапка)
     --bg-panel-2  #0d1220   вторая тёмно-синяя панель (подвал)
     --maroon      #4a0f16   тёмно-красный акцент
     --maroon-2    #7c1a24   более яркий красный (hover, активные состояния)
     --ink         #eae7e2   основной текст (тёплый белый)
     --muted       #9a97a3   вторичный текст
     --line        rgba(234,231,226,.09)  тонкие разделители

   Шрифты:
     Display  — 'Bebas Neue'         (заголовки, навигация, имена артистов)
     Body     — 'Inter'              (текст, кнопки, интерфейс)
     Accent   — 'Cormorant Garamond' italic (вступительный текст, вопросы FAQ)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0d;
  --bg-panel: #12141c;
  --bg-panel-2: #0d1220;
  --maroon: #4a0f16;
  --maroon-2: #a02430;
  --maroon-glow: rgba(160, 36, 48, .35);
  --ink: #eae7e2;
  --muted: #9a97a3;
  --line: rgba(234, 231, 226, .09);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --container: 1180px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
  color: var(--ink);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon-2);
  margin-bottom: 14px;
  display: block;
}

.section-head {
  margin-bottom: 48px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-row .section-eyebrow,
.section-head-row .section-title { margin-bottom: 0; }
.section-head-row > div:first-child { margin-bottom: 8px; }

.mini-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 8px;
}
.mini-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.mini-switch-track {
  width: 38px; height: 22px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .2s ease, background .2s ease;
  flex-shrink: 0;
}
.mini-switch-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform .2s ease, background .2s ease;
}
.mini-switch input:checked + .mini-switch-track { border-color: var(--maroon-2); background: var(--maroon); }
.mini-switch input:checked + .mini-switch-track .mini-switch-thumb {
  transform: translateX(16px);
  background: var(--ink);
}
.mini-switch-label {
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

section { position: relative; }

/* =========================================================================
   ШАПКА / НАВИГАЦИЯ
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 10, 13, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo span { color: var(--maroon-2); }

.nav-list {
  display: flex;
  gap: 36px;
}

.nav-list a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--maroon-2);
  transition: width .3s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--ink);
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sibling-shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1.5px solid #ff3d81;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .04em;
  line-height: 1;
  color: #ff3d81;
  white-space: nowrap;
  transition: all .2s ease;
  flex-shrink: 0;
}
.sibling-shop-btn .sibling-label { color: #ff3d81; }
.sibling-shop-btn .sibling-label .dot { color: #ffffff; margin-left: 1px; }
.sibling-shop-btn svg { width: 15px; height: 15px; fill: #ff3d81; flex-shrink: 0; transition: fill .2s ease; }
.sibling-shop-btn:hover {
  background: #ff3d81;
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(255,61,129,.5);
}
.sibling-shop-btn:hover .sibling-label,
.sibling-shop-btn:hover .sibling-label .dot { color: var(--bg); }
.sibling-shop-btn:hover svg { fill: var(--bg); }

@media (max-width: 480px) {
  .sibling-shop-btn { padding: 0 10px; font-size: 12.5px; }
}

.sound-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  flex-shrink: 0;
}
.sound-toggle:hover { border-color: var(--maroon-2); color: var(--ink); }
.sound-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.sound-toggle .icon-on { display: none; }
.sound-toggle[aria-pressed="true"] { color: var(--maroon-2); border-color: var(--maroon-2); }
.sound-toggle[aria-pressed="true"] .icon-muted { display: none; }
.sound-toggle[aria-pressed="true"] .icon-on { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 26px;
}

/* =========================================================================
   HERO / ГЛАВНАЯ
   ========================================================================= */

.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: clamp(180px, 24vw, 260px) clamp(110px, 15vw, 160px);
  gap: 10px;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.7);
  filter: saturate(0.9) contrast(1.05);
}

/* верхний ряд: один широкий тайл + один квадратный справа */
.hero-collage .c1 { grid-column: 1 / 5; grid-row: 1 / 2; }
.hero-collage .c2 { grid-column: 5 / 7; grid-row: 1 / 2; }
/* нижний ряд: три равных тайла — оба ряда с явной высотой, ничего не "плывёт" */
.hero-collage .c3 { grid-column: 1 / 3; grid-row: 2 / 3; }
.hero-collage .c4 { grid-column: 3 / 5; grid-row: 2 / 3; }
.hero-collage .c5 { grid-column: 5 / 7; grid-row: 2 / 3; }

.hero-text-wrap { padding-left: 24px; }

.hero-title {
  font-size: clamp(48px, 7vw, 84px);
  line-height: .92;
  white-space: pre-line;
  margin-bottom: 28px;
}
.hero-title .accent-dot { color: var(--maroon-2); }

.hero-intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 46ch;
  border-left: 2px solid var(--maroon);
  padding-left: 20px;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-text-wrap { padding-left: 0; order: -1; }
  .hero-collage { grid-template-rows: clamp(160px, 48vw, 220px) clamp(90px, 26vw, 130px); }
}

/* =========================================================================
   АРТИСТЫ — карусель карточек
   ========================================================================= */

.artists-section {
  padding: 96px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artist-carousel-wrap {
  position: relative;
}

.artist-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--maroon) transparent;
}

.artist-carousel::-webkit-scrollbar { height: 6px; }
.artist-carousel::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 4px; }
.artist-carousel::-webkit-scrollbar-track { background: transparent; }

.artist-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--maroon-2);
  box-shadow: 0 24px 48px -24px var(--maroon-glow);
}

.artist-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-panel-2);
}
.artist-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.artist-card:hover .artist-card-image img { transform: scale(1.06); }

.artist-card-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 13, .55);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(234,231,226,.35);
  color: var(--ink);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
  cursor: pointer;
}
.artist-card:hover .artist-card-play-btn,
.artist-card-play-btn:focus-visible {
  opacity: 1;
}
.artist-card-play-btn:hover {
  border-color: var(--maroon-2);
  background: var(--maroon);
}
.artist-card-play-btn svg { width: 22px; height: 22px; fill: currentColor; }
.artist-card-play-btn .icon-pause { display: none; }
.artist-card-play-btn .icon-play { margin-left: 3px; } /* оптическая коррекция треугольника */

.artist-card.is-playing .artist-card-play-btn {
  opacity: 1;
  background: var(--maroon);
  border-color: var(--maroon-2);
}
.artist-card.is-playing .artist-card-play-btn .icon-play { display: none; }
.artist-card.is-playing .artist-card-play-btn .icon-pause { display: block; }

/* на тач-устройствах кнопка всегда видна — нет наведения, чтобы её показать */
@media (hover: none) {
  .artist-card-play-btn { opacity: .9; }
}

.artist-card-body { padding: 18px 20px 22px; }

.artist-card-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.artist-card-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
}

.artist-card-links {
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.artist-card-links a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: all .25s ease;
}
.artist-card-links a:hover {
  color: var(--ink);
  border-color: var(--maroon-2);
  background: var(--maroon);
}
.artist-card-links svg { width: 15px; height: 15px; fill: currentColor; }

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.carousel-btn:hover { border-color: var(--maroon-2); background: var(--maroon); }
.carousel-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* =========================================================================
   МЕРЧ — zoom-плитки
   ========================================================================= */

.merch-section { padding: 96px 0; }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.merch-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, z-index 0s;
  z-index: 1;
  touch-action: manipulation;
}

.merch-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

/* эффект увеличения только на устройствах с настоящим наведением (мышь) —
   на тач-экранах он мешает и вызывает визуальное "смещение" при тапе */
@media (hover: hover) and (pointer: fine) {
  .merch-tile:hover {
    transform: scale(2.35);
    z-index: 50;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.75);
    border-color: var(--maroon-2);
  }
}

.merch-tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 6px 8px;
  font-size: 10px;
  background: linear-gradient(to top, rgba(10,10,13,.9), transparent);
  color: var(--ink);
  opacity: 0;
  transition: opacity .25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.merch-tile:hover .merch-tile-label { opacity: 1; }

/* модалка мерча — фиксируется по центру экрана как открытое фото */
.merch-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, .88);
  backdrop-filter: blur(6px);
  padding: 32px;
  opacity: 0;
  transition: opacity .3s ease;
}
.merch-modal.is-open { display: flex; opacity: 1; }

.merch-modal-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: scale(.92);
  transition: transform .3s ease;
}
.merch-modal.is-open .merch-modal-card { transform: scale(1); }

.merch-modal-image { aspect-ratio: 1/1; background: var(--bg-panel-2); }
.merch-modal-image img { width: 100%; height: 100%; object-fit: cover; }

.merch-modal-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.merch-modal-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .03em;
}

.merch-modal-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  text-align: center;
  background: var(--maroon);
  border: 1px solid var(--maroon);
  color: var(--ink);
  transition: all .2s ease;
}
.merch-modal-buy:hover { background: var(--maroon-2); border-color: var(--maroon-2); }

.merch-modal-buy.is-disabled {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

.merch-modal-close {
  position: absolute;
  top: 28px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10,10,13,.4);
  color: var(--ink);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.merch-modal-close:hover { border-color: var(--maroon-2); }

/* =========================================================================
   АФИШИ — полноразмерные изображения подряд
   ========================================================================= */

.posters-section {
  padding: 96px 0 0;
  background: var(--bg-panel-2);
  border-top: 1px solid var(--line);
}
.posters-section .section-head { padding: 0 32px; }

.posters-stack {
  display: flex;
  flex-direction: column;
}

.posters-stack img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid var(--line);
}
.posters-stack li:first-child img { border-top: none; }

/* =========================================================================
   НОВОСТИ
   ========================================================================= */

.news-section { padding: 96px 0; }

.news-carousel-wrap { position: relative; }

.news-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--maroon) transparent;
}
.news-carousel::-webkit-scrollbar { height: 6px; }
.news-carousel::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 4px; }
.news-carousel::-webkit-scrollbar-track { background: transparent; }

.news-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--maroon-2);
  box-shadow: 0 24px 48px -24px var(--maroon-glow);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-panel-2);
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }

.news-card-date {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10,10,13,.7);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink);
}

.news-card-body { padding: 20px 22px 24px; }

.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.news-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-more {
  background: none;
  border: none;
  padding: 0;
  color: var(--maroon-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
}
.news-card-more:hover { color: var(--ink); }

/* модалка чтения новости целиком */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, .88);
  backdrop-filter: blur(6px);
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.news-modal.is-open { display: flex; opacity: 1; }

.news-modal-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(.94);
  transition: transform .3s ease;
}
.news-modal.is-open .news-modal-card { transform: scale(1); }

.news-modal-image { aspect-ratio: 16/9; background: var(--bg-panel-2); }
.news-modal-image img { width: 100%; height: 100%; object-fit: cover; }

.news-modal-body { padding: 26px 28px 32px; }
.news-modal-date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--maroon-2);
  margin-bottom: 12px;
}
.news-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.news-modal-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  white-space: pre-line;
}

.news-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10,10,13,.6);
  color: var(--ink);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.news-modal-close:hover { border-color: var(--maroon-2); }

/* =========================================================================
   СВЕДЕНИЕ / МАСТЕРИНГ
   ========================================================================= */

.mixing-section { padding: 40px 0 96px; }

.mixing-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mixing-panel-text { max-width: 56ch; }
.mixing-desc { color: var(--muted); font-size: 15px; line-height: 1.7; }

.mixing-cta-btn {
  flex-shrink: 0;
  padding: 18px 32px;
  border-radius: var(--radius);
  background: var(--maroon);
  border: 1px solid var(--maroon);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
}
.mixing-cta-btn:hover {
  background: var(--maroon-2);
  border-color: var(--maroon-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px var(--maroon-glow);
}

@media (max-width: 700px) {
  .mixing-panel { padding: 32px 24px; flex-direction: column; align-items: stretch; text-align: left; }
  .mixing-cta-btn { width: 100%; text-align: center; }
}

/* модалка Сведение/мастеринг */
.mixing-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, .88);
  backdrop-filter: blur(6px);
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.mixing-modal.is-open { display: flex; opacity: 1; }

.mixing-modal-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 32px 32px;
  transform: scale(.94);
  transition: transform .3s ease;
}
.mixing-modal.is-open .mixing-modal-card { transform: scale(1); }

.mixing-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.mixing-modal-close:hover { border-color: var(--maroon-2); }

.mixing-price {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: .03em;
  margin: 10px 0 24px;
}
.mixing-price span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.mixing-contacts { display: flex; flex-direction: column; gap: 10px; }
.mixing-contact-row { display: flex; gap: 10px; }

.mixing-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease;
}
.mixing-contact-btn svg { width: 16px; height: 16px; fill: currentColor; }
.mixing-contact-btn:hover { border-color: var(--maroon-2); }
.mixing-contact-btn-primary {
  background: var(--maroon);
  border-color: var(--maroon);
}
.mixing-contact-btn-primary:hover { background: var(--maroon-2); border-color: var(--maroon-2); }

.mixing-portfolio-title {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 12px;
}
.mixing-portfolio-list { display: flex; flex-direction: column; gap: 10px; }
.mixing-portfolio-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.mixing-portfolio-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--maroon-2);
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-section { padding: 96px 0; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color .25s ease, transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform .25s ease, background .25s ease;
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }

.faq-item.is-open .faq-icon { border-color: var(--maroon-2); transform: rotate(45deg); }
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--maroon-2); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

/* =========================================================================
   ПОДВАЛ — контакты
   ========================================================================= */

.site-footer {
  background: var(--bg-panel-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--maroon-2); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-contacts li { margin-bottom: 10px; font-size: 15px; }
.footer-contacts a:hover { color: var(--maroon-2); }

.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .25s ease;
}
.footer-socials a:hover { color: var(--ink); border-color: var(--maroon-2); background: var(--maroon); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* скрытая кнопка входа в админку — почти незаметная точка в подвале */
.admin-entry {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .18;
  transition: opacity .3s ease, background .3s ease, transform .3s ease;
}
.admin-entry:hover {
  opacity: .9;
  background: var(--maroon-2);
  transform: scale(1.3);
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* =========================================================================
   АДАПТИВ / НАВИГАЦИЯ МОБИЛЬНАЯ
   ========================================================================= */

@media (max-width: 780px) {
  .container { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .artists-section, .merch-section, .faq-section, .posters-section { padding: 64px 0; }
}

/* фокус для доступности с клавиатуры */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--maroon-2);
  outline-offset: 3px;
}
