/* ═══════════════════════════════════════════════════════
   МАКХОЛЛ — Танцевальный ресторан
   Дизайн-система: фиолетовый #8B2FC9, чёрный #08060F, белый #F0EDF7
   Шрифты: Unbounded (дисплей) + Manrope (тело)
═══════════════════════════════════════════════════════ */

/* ── ТОКЕНЫ ──────────────────────────────────────────── */
:root {
  --bg:          #08060F;
  --panel:       #0E0A1C;
  --panel-2:     #150F28;
  --purple:      #8B2FC9;
  --purple-l:    #A855F7;
  --purple-d:    #6B21A8;
  --purple-dim:  rgba(139, 47, 201, 0.12);
  --purple-glow: rgba(139, 47, 201, 0.38);
  --light:       #F0EDF7;
  --light-dim:   rgba(240, 237, 247, 0.82);
  --light-muted: rgba(240, 237, 247, 0.55);
  --border:      rgba(139, 47, 201, 0.22);
  --border-l:    rgba(139, 47, 201, 0.45);
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-lg:   0 16px 64px rgba(0, 0, 0, 0.7);
  --radius:      6px;
  --radius-lg:   12px;
  --nav-h:       72px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--light);
  line-height: 1.1;
  margin-top: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--light-dim);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.75;
}

.body-text {
  font-size: 15px;
  color: var(--light-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.accent { color: var(--purple); }

/* ── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--purple);
  flex-shrink: 0;
}

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}

.section {
  padding-block: 96px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc {
  margin-inline: auto;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--outline {
  border-color: var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn--outline:hover {
  background: var(--purple);
  color: var(--bg);
  box-shadow: 0 0 24px var(--purple-glow);
}

.btn--fill {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--light);
}
.btn--fill:hover {
  background: var(--purple-l);
  border-color: var(--purple-l);
  box-shadow: 0 0 28px var(--purple-glow);
}

.btn--ghost {
  border-color: rgba(240, 237, 247, 0.3);
  color: var(--light-dim);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.btn--sm {
  font-size: 12px;
  padding: 10px 22px;
}

/* ── DIVIDER ─────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: 48px;
  opacity: 0.5;
}
.section-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay.is-visible    { transition-delay: 0.12s; }
.reveal--delay-2.is-visible  { transition-delay: 0.24s; }
.reveal--delay-3.is-visible  { transition-delay: 0.36s; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 6, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar__inner {
  height: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__logo { flex-shrink: 0; }
.navbar__logo img { height: 48px; width: auto; object-fit: contain; }
.navbar__logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.1em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: auto;
}

.navbar__links > li > a,
.dropdown-trigger {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--light-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.navbar__links > li > a:hover,
.dropdown-trigger:hover { color: var(--light); background: var(--purple-dim); }

.chevron {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* dropdown */
.has-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0E0A1C;
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--light-dim);
  transition: color 0.15s, background 0.15s;
}
.dropdown a:hover { color: var(--purple); background: var(--purple-dim); }

/* right side */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__phone {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--light-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar__phone:hover { color: var(--purple); }

/* burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 900;
  background: rgba(8, 6, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu li a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--light-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu li a:hover { color: var(--purple); padding-left: 6px; }

.mob-group__title {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 20px 0 8px;
}
.mob-group a {
  font-size: 14px !important;
  padding: 8px 0 8px 12px !important;
  border-bottom: 1px solid rgba(139,47,201,0.1) !important;
}

.mob-cta { margin-top: 20px; width: 100%; }
.mob-phone {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--light-dim);
  text-align: center;
  letter-spacing: 0.03em;
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0,0,0,0.6);
}
.mobile-menu__overlay.is-open { display: block; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

/* Световые пятна сцены */
.hero__lights { position: absolute; inset: 0; pointer-events: none; }

.hero__light {
  position: absolute;
  border-radius: 50%;
}

.hero__light--1 {
  width: 800px;
  height: 800px;
  left: -200px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(139,47,201,0.3) 0%, transparent 60%);
  animation: lightPulse1 10s ease-in-out infinite alternate;
}

.hero__light--2 {
  width: 600px;
  height: 600px;
  right: -100px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(100,20,180,0.22) 0%, transparent 55%);
  animation: lightPulse2 13s ease-in-out infinite alternate;
}

.hero__light--3 {
  width: 500px;
  height: 500px;
  right: 25%;
  top: 5%;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 55%);
  animation: lightPulse3 8s ease-in-out infinite alternate;
}

.hero__light--4 {
  width: 350px;
  height: 350px;
  left: 30%;
  top: -80px;
  background: radial-gradient(circle, rgba(139,47,201,0.1) 0%, transparent 60%);
  animation: lightPulse3 12s ease-in-out 2s infinite alternate;
}

@keyframes lightPulse1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(80px, -60px) scale(1.15); opacity: 1; }
}
@keyframes lightPulse2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-60px, -40px) scale(1.2); opacity: 0.85; }
}
@keyframes lightPulse3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.35; }
  100% { transform: translate(40px, 60px) scale(1.3); opacity: 0.75; }
}

/* Сетка-текстура */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,47,201,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,47,201,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Частицы */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  left: var(--x, 50%);
  bottom: -10px;
  width: var(--size, 2px);
  height: var(--size, 2px);
  background: var(--purple-l);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise var(--dur, 8s) var(--delay, 0s) ease-in infinite;
  box-shadow: 0 0 4px var(--purple);
}

@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  5%   { opacity: 0.9; }
  50%  { opacity: 0.6; transform: translateY(-40vh) translateX(20px); }
  95%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-90vh) translateX(-10px); }
}

/* Тёмный градиент снизу */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 0;
}

/* Контент */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  will-change: transform;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--purple);
  opacity: 0.5;
  flex-shrink: 0;
}

.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1;
  width: 100%;
  text-align: center;
  animation: fadeUp 1.1s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.hero__title .accent {
  color: var(--purple);
  text-shadow: 0 0 60px rgba(139,47,201,0.65), 0 0 120px rgba(139,47,201,0.3);
}

.hero__sub {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(12px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-top: 20px;
  animation: fadeUp 1.1s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__desc {
  font-size: 15px;
  color: var(--light-muted);
  margin-top: 22px;
  line-height: 1.8;
  animation: fadeUp 1s 0.65s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__work-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--light-muted);
  text-transform: uppercase;
  animation: fadeUp 1s 1s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__work-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Скролл-индикатор */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeIn 1s 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--purple), transparent);
  display: block;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
  50%      { opacity: 1;   transform: scaleY(1.1) translateY(4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--purple); }
  50%      { opacity: 0.5; box-shadow: 0 0 3px var(--purple); }
}

/* ══════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════ */
.ticker {
  background: var(--purple);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker__item {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.ticker__sep {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--panel);
  border-block: 1px solid var(--border);
  padding-block: 36px;
  flex-wrap: wrap;
  position: relative;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,47,201,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-inline: 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat strong {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  font-weight: 500;
  color: var(--light-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}
.feature:hover { border-color: var(--border-l); transform: translateY(-2px); }

.feature__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(139,47,201,0.15);
  border-radius: 50%;
}

.feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 3px;
}
.feature span {
  font-size: 12px;
  color: var(--light-muted);
  line-height: 1.4;
}

/* About visual */
.about__img-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  transition: transform 0.5s ease;
}
.about__img-wrap:hover .about__photo { transform: scale(1.02); }

/* About carousel */
.about__carousel {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__slides {
  position: absolute;
  inset: 0;
}
.about__photo--slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.about__photo--slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.about__dot {
  width: 22px;
  height: 4px;
  background: rgba(240,237,247,0.35);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.about__dot:hover { background: rgba(240,237,247,0.6); }
.about__dot.is-active {
  background: var(--purple);
  width: 32px;
  box-shadow: 0 0 12px rgba(139,47,201,0.6);
}

.about__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,6,15,0.6);
  backdrop-filter: blur(8px);
  color: var(--light);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  z-index: 3;
}
.about__carousel:hover .about__nav { opacity: 1; }
.about__nav:hover {
  background: var(--purple);
  border-color: var(--purple);
}
.about__nav--prev { left: 14px; }
.about__nav--next { right: 14px; }

@media (max-width: 768px) {
  .about__nav { opacity: 1; width: 36px; height: 36px; }
  .about__nav--prev { left: 8px; }
  .about__nav--next { right: 8px; }
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.about__img-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139,47,201,0.25) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}
.about__img-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(240,237,247,0.15);
  position: relative;
  z-index: 1;
}

.about__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--purple);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 0 36px rgba(139,47,201,0.55);
  z-index: 2;
}
.about__badge strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.about__badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.about__photo-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(8,6,15,0.6);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.about__photo-link:hover { color: var(--purple); background: rgba(8,6,15,0.85); }

.about__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about__plan-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
  transition: color 0.2s;
}
.about__plan-link:hover { color: var(--purple); }

.about__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.about__social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--light-dim);
  background: var(--purple-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.about__social-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(139,47,201,0.18);
  transform: translateY(-2px);
}

/* Booking widget */
.booking-slot__widget {
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  min-height: 560px;
}
.booking-slot__widget iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  background: var(--bg);
}
.booking-slot__fallback {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--light-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.booking-slot__fallback:hover { color: var(--purple); }

/* ══════════════════════════════════════════════════════
   SHOW / PROGRAM
══════════════════════════════════════════════════════ */
.show { background: var(--panel); }

/* Сетка постерных карточек 2×2 */
.show__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Постерная карточка */
.poster-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  cursor: pointer;
}
.poster-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 48px rgba(139,47,201,0.22), 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-8px);
}

.poster-card__img {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--panel-2);
}
.poster-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  display: block;
}
.poster-card:hover .poster-card__img img { transform: scale(1.08); }

.poster-card__img-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--panel-2);
}

.poster-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,6,15,0.85) 100%);
}

.poster-card__day-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--purple);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(139,47,201,0.5);
}
.poster-card__day-badge--sat {
  background: #4C1D95;
}

.poster-card__new-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(8,6,15,0.7);
  backdrop-filter: blur(4px);
  color: var(--light-dim);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
  border: 1px solid var(--border);
}

.poster-card__info {
  padding: 20px 22px 24px;
}

.poster-card__date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.poster-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 8px;
}

.poster-card__desc {
  font-size: 12px;
  color: var(--light-muted);
  line-height: 1.6;
}

.poster-card__time {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.poster-card__time span {
  font-size: 10px;
  color: var(--light-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.poster-card__time strong {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
}

/* Show footer VK promo */
.show__footer {
  margin-top: 12px;
}
.show__vk-promo {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.show__vk-icon {
  color: #4C82C4;
  flex-shrink: 0;
}
.show__vk-promo > div {
  flex: 1;
}
.show__vk-promo strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 4px;
}
.show__vk-promo span {
  font-size: 13px;
  color: var(--light-muted);
}

/* ══════════════════════════════════════════════════════
   ПЛАН СТОЛОВ (главная)
══════════════════════════════════════════════════════ */
.plan { background: var(--panel); }

.plan__wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.plan__wrap:hover {
  border-color: var(--purple);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 32px rgba(139,47,201,0.15);
}

.plan__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: brightness(0.95) contrast(1.05);
}

.plan__zoom {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(139,47,201,0.55);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}
.plan__wrap:hover .plan__zoom { opacity: 1; transform: scale(1); }

.plan__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .plan__wrap { padding: 12px; }
  .plan__zoom { top: 22px; right: 22px; }
}

/* ══════════════════════════════════════════════════════
   COMING SOON (главная — заглушка афиши)
══════════════════════════════════════════════════════ */
.coming-soon {
  position: relative;
  padding: 64px 32px;
  background: linear-gradient(160deg, var(--panel-2) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.coming-soon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.coming-soon__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.coming-soon__visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.coming-soon__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(139,47,201,0.32) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.coming-soon__icon {
  position: relative;
  z-index: 1;
}
.coming-soon__pulse {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--purple);
  border-radius: 50%;
  opacity: 0.4;
  animation: comingPulse 2.2s ease-out infinite;
}
@keyframes comingPulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.coming-soon__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}

.coming-soon__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 18px;
}

.coming-soon__desc {
  font-size: 15px;
  color: var(--light-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.coming-soon__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.coming-soon__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  flex-wrap: wrap;
}
.coming-soon__item {
  padding-inline: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.coming-soon__item strong {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.coming-soon__item span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-muted);
}
.coming-soon__sep {
  width: 1px;
  height: 38px;
  background: var(--border);
}

@media (max-width: 768px) {
  .coming-soon { padding: 48px 24px; }
  .coming-soon__row { gap: 20px; }
  .coming-soon__item { padding-inline: 0; min-width: 90px; }
  .coming-soon__sep { display: none; }
  .coming-soon__actions { flex-direction: column; align-items: stretch; }
  .coming-soon__actions .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════════ */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.menu-card:hover {
  border-color: var(--border-l);
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 32px rgba(139,47,201,0.1);
}
.menu-card:hover::before { opacity: 1; }

.menu-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dim);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}
.menu-card:hover .menu-card__icon { background: rgba(139,47,201,0.2); }

.menu-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
  line-height: 1.3;
}
.menu-card p {
  font-size: 13px;
  color: var(--light-dim);
  line-height: 1.7;
  flex: 1;
}

.menu-card__dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.menu-card__dishes span {
  font-size: 11px;
  font-weight: 500;
  color: var(--light-muted);
  background: rgba(139,47,201,0.08);
  border: 1px solid rgba(139,47,201,0.15);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

.menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════════
   BANQUET
══════════════════════════════════════════════════════ */
.banquet {
  background: var(--panel);
  overflow: hidden;
}

.banquet__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.banquet__light {
  position: absolute;
  border-radius: 50%;
}
.banquet__light--1 {
  width: 550px;
  height: 550px;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(139,47,201,0.16) 0%, transparent 65%);
}
.banquet__light--2 {
  width: 420px;
  height: 420px;
  right: 5%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(100,20,180,0.1) 0%, transparent 60%);
}

.banquet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banquet__usp {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.usp-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.usp-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 2px;
}
.usp-item span {
  font-size: 12px;
  color: var(--light-muted);
}

.banquet__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.banquet__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--light-dim);
  transition: color 0.2s;
}
.banquet__phone:hover { color: var(--purple); }

.banquet__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--light-muted);
  letter-spacing: 0.02em;
}

/* event type list */
.banquet__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding-left 0.3s, border-color 0.3s;
}
.event-type:hover { padding-left: 10px; border-color: var(--border-l); }
.event-type:hover .event-type__line { background: var(--purple); width: 48px; }

.event-type__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  opacity: 0.5;
  width: 24px;
  flex-shrink: 0;
}
.event-type__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--light);
  flex: 1;
}
.event-type__line {
  width: 32px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s, width 0.3s;
}

/* ══════════════════════════════════════════════════════
   CONTACTS
══════════════════════════════════════════════════════ */
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-item__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}
.contact-item__val {
  font-size: 15px;
  font-weight: 500;
  color: var(--light);
}
.contact-item__link {
  transition: color 0.2s;
}
.contact-item__link:hover { color: var(--purple); }

.contacts__social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--light-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-dim);
}
.social-btn--sm {
  padding: 8px;
  font-size: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  justify-content: center;
}

/* Booking slot */
.booking-slot {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.booking-slot__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.booking-slot__placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.booking-slot__placeholder p {
  font-size: 13px;
  color: var(--light-muted);
}

/* Map */
.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 500px;
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.25) invert(0.08);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__logo { margin-bottom: 14px; }
.footer__logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.footer__tagline {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer__addr {
  font-size: 13px;
  color: var(--light-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer__social { display: flex; gap: 10px; }

.footer__nav h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 13px;
  color: var(--light-muted);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer__nav a:hover { color: var(--light); }
.footer__nav small {
  font-size: 11px;
  color: rgba(240,237,247,0.2);
  display: block;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--light-muted);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 12px;
  color: var(--light-muted);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--light); }

/* ══════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════ */
.reviews { background: var(--bg); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  color: var(--purple);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--border-l);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 28px rgba(139,47,201,0.1);
}

.review-card__stars {
  font-size: 18px;
  color: #F59E0B;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card__star--empty {
  opacity: 0.25;
}

.review-card__text {
  font-size: 14px;
  color: var(--light-dim);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--light);
}

.review-card__source {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.7;
}

.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════
   POPUP — БАНКЕТ-МЕНЕДЖЕР
══════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 1200;
  width: 340px;
  background: var(--panel);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(139,47,201,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1),
              transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--light-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.popup__close:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

.popup__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.popup__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.popup__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--light);
  line-height: 1.35;
}

.popup__desc {
  font-size: 12px;
  color: var(--light-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.popup__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popup__contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.popup__contact--vk {
  background: rgba(76, 130, 196, 0.12);
  border-color: rgba(76, 130, 196, 0.3);
  color: #7BAAE0;
}
.popup__contact--vk:hover { background: rgba(76, 130, 196, 0.22); border-color: rgba(76, 130, 196, 0.55); }

.popup__contact--tg {
  background: rgba(36, 161, 222, 0.1);
  border-color: rgba(36, 161, 222, 0.3);
  color: #5BB8DF;
}
.popup__contact--tg:hover { background: rgba(36, 161, 222, 0.2); border-color: rgba(36, 161, 222, 0.5); }

.popup__contact--phone {
  background: var(--purple-dim);
  border-color: var(--border);
  color: var(--light-dim);
}
.popup__contact--phone:hover { background: rgba(139,47,201,0.2); border-color: var(--purple); color: var(--light); }

/* Плавающая кнопка-триггер */
.popup-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(139,47,201,0.55), 0 8px 40px rgba(0,0,0,0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  white-space: nowrap;
}
.popup-trigger:hover {
  background: var(--purple-l);
  box-shadow: 0 6px 32px rgba(139,47,201,0.7), 0 12px 48px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.popup-trigger__dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: dotPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1280px
══════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .show__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stat { padding-inline: 36px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding-inline: 32px; }
  .navbar__inner { padding-inline: 32px; }
  .section-divider { padding-inline: 32px; }

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

  .about__inner { gap: 48px; }
  .banquet__inner { gap: 48px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container     { padding-inline: 20px; }
  .navbar__inner { padding-inline: 20px; }
  .section-divider { padding-inline: 20px; }
  .section       { padding-block: 64px; }

  .navbar__links,
  .navbar__phone { display: none; }
  .navbar__burger { display: flex; }

  .hero__title { font-size: clamp(42px, 13vw, 80px); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }

  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat { padding: 24px 16px; }
  .stat-sep { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .about__photo { aspect-ratio: 16/9; }
  .about__img-placeholder { aspect-ratio: 16/9; }
  .about__badge { bottom: -12px; right: 12px; }
  .about__features { grid-template-columns: 1fr; }

  .show__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .show__vk-promo { flex-direction: column; align-items: flex-start; gap: 16px; }

  .menu__grid { grid-template-columns: 1fr 1fr; }
  .menu__cta { flex-direction: column; }

  .banquet__inner { grid-template-columns: 1fr; gap: 48px; }

  .contacts__inner { grid-template-columns: 1fr; }
  .contacts__map { height: 300px; }

  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews__footer { flex-direction: column; align-items: center; }

  .popup { width: calc(100vw - 32px); right: 16px; bottom: 88px; }
  .popup-trigger__label { display: none; }
  .popup-trigger { padding: 14px; border-radius: 50%; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(28px, 8vw, 48px); letter-spacing: 0.04em; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { padding: 20px 16px; }

  .show__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .poster-card__info { padding: 14px 14px 18px; }
  .poster-card__title { font-size: 13px; }
  .poster-card__desc { display: none; }

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

  .banquet__actions { flex-direction: column; align-items: flex-start; }
  .banquet__actions .btn { width: 100%; }

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

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