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

/* ── TOKENS ── */
:root {
  --bg:          #0B0B0C;
  --bg-alt:      #111113;
  --bg-card:     #161618;
  --gold:        #C6A36B;
  --gold-lt:     #E4CFA0;
  --gold-dk:     #96784A;
  --text:        #F2F2F2;
  --muted:       #8A8A8A;
  --border:      rgba(198, 163, 107, 0.14);

  /* Театральная палитра */
  --wine:        #7A2E3F;   /* глубокий винный — декоративный */
  --cream:       #F0EAE0;   /* молочно-кремовый — светлые блоки */
  --cream-text:  #1C1916;   /* тёмный текст на кремовом */
  --cream-muted: #6B6560;   /* приглушённый текст на кремовом */
  --cream-border: rgba(122, 46, 63, 0.18); /* граница на кремовом */

  /* Серифный шрифт */
  --serif: 'Playfair Display', Georgia, serif;

  --r:        18px;
  --r-lg:     28px;
  --max:      1280px;
  --nav-h:    72px;
  --cd:       0.48s;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── UTILITY ── */
.gold { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-54px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(54px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.91) translateY(20px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.vis  { opacity: 1; transform: translateX(0); }
.reveal-right.vis { opacity: 1; transform: translateX(0); }
.reveal-scale.vis { opacity: 1; transform: scale(1) translateY(0); }

/* ── SCROLL PROGRESS BAR ── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 60%, var(--gold-lt) 100%);
  z-index: 1002;
  pointer-events: none;
  transition: width .08s linear;
}

/* ── SECTION DIVIDER ── */
.sec-divider {
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.sec-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sec-divider.vis::after { transform: translateX(120%); }

/* ── STAGGER DELAYS ── */
.stories-list .story-card:nth-child(2) { transition-delay: calc(var(--cd) + 80ms); }
.stories-list .story-card:nth-child(3) { transition-delay: calc(var(--cd) + 160ms); }
.stories-list .story-card:nth-child(4) { transition-delay: calc(var(--cd) + 240ms); }
.stories-list .story-card:nth-child(5) { transition-delay: calc(var(--cd) + 320ms); }

.formats-list .format-card:nth-child(2) { transition-delay: calc(var(--cd) + 80ms); }
.formats-list .format-card:nth-child(3) { transition-delay: calc(var(--cd) + 160ms); }

.reviews-grid .review-card:nth-child(2) { transition-delay: calc(var(--cd) + 65ms); }
.reviews-grid .review-card:nth-child(3) { transition-delay: calc(var(--cd) + 130ms); }
.reviews-grid .review-card:nth-child(4) { transition-delay: calc(var(--cd) + 195ms); }
.reviews-grid .review-card:nth-child(5) { transition-delay: calc(var(--cd) + 260ms); }
.reviews-grid .review-card:nth-child(6) { transition-delay: calc(var(--cd) + 325ms); }

.faq-list .faq-item:nth-child(2) { transition-delay: calc(var(--cd) + 65ms); }
.faq-list .faq-item:nth-child(3) { transition-delay: calc(var(--cd) + 130ms); }
.faq-list .faq-item:nth-child(4) { transition-delay: calc(var(--cd) + 195ms); }
.faq-list .faq-item:nth-child(5) { transition-delay: calc(var(--cd) + 260ms); }
.faq-list .faq-item:nth-child(6) { transition-delay: calc(var(--cd) + 325ms); }

/* ── STAT COUNTER ── */
.stat-n { display: block; }
@keyframes stat-flash {
  0%   { opacity: 0.2; transform: translateY(6px); }
  100% { opacity: 1;   transform: translateY(0); }
}
.stat-n.counting { animation: stat-flash .5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(11, 11, 12, .90);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-color: var(--border);
}
#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Rubik Mono One', monospace;
  font-size: 1.05rem;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  flex-shrink: 0;
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: #080808;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 100px;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* mobile menu */
#mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, .97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
#mob-menu.open { display: flex; }
#mob-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  transition: color .2s;
}
#mob-menu a:hover { color: var(--gold); }
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.mob-close:hover { color: var(--text); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/7G6A1318.jpg');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.06);
  transition: transform 18s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, .15) 0%,
    rgba(11, 11, 12, .08) 25%,
    rgba(11, 11, 12, .60) 65%,
    rgba(11, 11, 12, .97) 100%
  );
}

#hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.75rem;
}
.hero-line { width: 36px; height: 1px; background: var(--gold); }
.hero-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.25rem, 11vw, 9rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.hero-role {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

/* вспомогательная фраза — тихая, мелкая */
.hero-desc {
  font-size: clamp(.875rem, 1.25vw, 1rem);
  font-weight: 300;
  color: rgba(242, 242, 242, .5);
  margin-bottom: .375rem;
  line-height: 1.5;
  letter-spacing: .01em;
}

/* слоган — главный акцент после имени */
.hero-phrase {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.375rem, 2.75vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-tagline {
  font-size: clamp(.7rem, 1.1vw, .8rem);
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: .75rem;
}

.hero-disclaimer {
  font-size: .82rem;
  color: var(--muted);
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-left: .25rem;
}
.hero-disclaimer em { font-style: italic; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.25rem;
  background: var(--gold);
  color: #090909;
  font-weight: 800;
  font-size: .9375rem;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ── БЛОК 2: ПОЧЕМУ СОБЫТИЯ ОЩУЩАЮТСЯ ИНАЧЕ ── */
#why-events {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--cream);
}

.text-section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.text-section-left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  align-self: stretch;
}

.text-section-h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}

.why-events-img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

.text-section-body p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(242, 242, 242, .7);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.text-bq {
  font-family: var(--serif);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 1.75rem;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

/* ── STATS (Блок 3) ── */
#stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
#stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-n {
  font-family: 'Rubik Mono One', monospace;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1;
  color: var(--gold);
  display: block;
}
.stat-n.stat-plus {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-n.stat-plus > sup:first-child {
  font-family: 'Manrope', sans-serif;
  font-size: .26em;
  line-height: 1.4;
  visibility: hidden;
}
.stat-n.stat-plus sup:last-child {
  font-family: 'Manrope', sans-serif;
  font-size: .45em;
  font-weight: 800;
  vertical-align: baseline;
  position: relative;
  top: -.55em;
  line-height: 0;
  color: var(--gold-dk);
}
.stat-n.stat-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-n.stat-top sup {
  font-family: 'Manrope', sans-serif;
  font-size: .26em;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--gold-dk);
  text-transform: uppercase;
  vertical-align: baseline;
  line-height: 1.4;
}
.stat-l {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
  display: block;
}
.stat-desc {
  display: block;
  font-size: .8rem;
  color: rgba(138, 138, 138, .6);
  line-height: 1.55;
  margin-top: .5rem;
  max-width: 200px;
  margin-inline: auto;
}

/* ── ABOUT (Блок 4) ── */
#about {
  padding: clamp(5rem, 11vw, 9rem) 0;
}
#about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.about-txt h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.about-txt p {
  color: rgba(242, 242, 242, .7);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1.0625rem;
}
.about-highlight {
  display: block;
  font-family: var(--serif);
  border-left: 3px solid var(--gold);
  padding: .75rem 0 .75rem 1.5rem;
  margin: 1.5rem 0;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

/* ── SEC-HEAD ── */
.sec-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.sec-head p {
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── БЛОК 5: ЛЮДИ ── */
#people {
  padding: clamp(4.5rem, 9vw, 8rem) 0 0;
  background: var(--bg);
  overflow: hidden;
}
#people .sec-head { margin-bottom: 3rem; }

/* ── GALLERY ── */
.gallery-track-wrap {
  overflow: hidden;
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}
.gallery-track {
  display: flex;
  gap: 1.125rem;
  width: max-content;
  will-change: transform;
  animation: marquee 44s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.g-item {
  width: 300px;
  height: 225px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.07); }

/* ── VIDEO ── */
.vid-sec {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.vid-sec.alt { background: var(--bg-alt); }
.vid-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 880px;
  margin-inline: auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .65);
  border: 1px solid var(--border);
}
.vid-wrap video { width: 100%; display: block; }

/* ── БЛОК 7: АТМОСФЕРА ── */
#atmosphere {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--cream);
}

/* ── БЛОК 8: ИСТОРИИ СОБЫТИЙ ── */
#stories {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--bg);
}
.stories-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 2fr 3fr;
  transition: border-color .3s;
  overflow: hidden;
}
.story-card:hover { border-color: rgba(198, 163, 107, .35); }
.story-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  align-self: stretch;
}
.story-img[src=""] { display: none; }
.story-body {
  padding: 2.25rem 2.5rem;
}
.story-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.story-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story-col h4 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .625rem;
}
.story-col p {
  font-size: .9375rem;
  color: rgba(242, 242, 242, .65);
  line-height: 1.7;
}

/* ── БЛОК 9: ФОРМАТЫ ── */
#services {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--bg-alt);
}
.formats-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 920px;
  margin-inline: auto;
}
.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  position: relative;
  transition: border-color .3s;
}
.format-card:hover { border-color: rgba(198, 163, 107, .35); }
.format-card.format-featured {
  border-color: rgba(198, 163, 107, .4);
}
.format-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #090909;
  background: var(--gold);
  border-radius: 100px;
  padding: .3rem 1rem;
  margin-bottom: 1.25rem;
}
.format-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.format-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.format-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.format-desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.format-includes { margin-bottom: 1.5rem; }
.format-includes h4,
.format-result h4 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .875rem;
}
.format-includes ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.format-includes li {
  font-size: .9375rem;
  color: rgba(242, 242, 242, .65);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.format-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.format-note {
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: .875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.format-result {
  border-top: 1px solid var(--border);
  padding-top: 1.375rem;
  margin-top: 1.375rem;
}
.format-result p {
  font-size: .9375rem;
  color: rgba(242, 242, 242, .7);
  line-height: 1.7;
}

/* ── БЛОК 10: ОТЗЫВЫ ── */
#reviews {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s;
}
.review-card:hover { border-color: rgba(198, 163, 107, .35); }
.review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-avatar-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}
.review-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.review-meta-video {
  margin-top: 1rem;
}
.review-name {
  font-size: .9375rem;
  font-weight: 700;
}
.review-stars {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.review-event {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
}
.review-text {
  font-size: .9rem;
  color: rgba(242, 242, 242, .6);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-card-video { padding: 0; overflow: hidden; }
.review-video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.review-card-video .review-meta {
  padding: 1.25rem 1.75rem 1.75rem;
}

/* ── ЦИТАТЫ ── */
.quotes-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.quotes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.quote-pull {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}
.quote-pull::before {
  content: '\201C';
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .5rem;
  font-style: normal;
}

/* ── FAQ ── */
#faq {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--bg);
}
#faq .container { max-width: 800px; }
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(198, 163, 107, .4); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-ico {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: transform .3s, border-color .3s, color .3s;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: rgba(242, 242, 242, .65);
  font-size: .9375rem;
  line-height: 1.8;
}

/* ── CONTACT ── */
#contact {
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/7G6A1324.jpg');
  background-size: cover;
  background-position: center top;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 11, 12, .78) 0%,
    rgba(11, 11, 12, .60) 30%,
    rgba(11, 11, 12, .25) 52%,
    rgba(11, 11, 12, .08) 68%,
    transparent 80%
  );
  pointer-events: none;
}
#contact .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
#contact h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
  max-width: 600px;
}
#contact > .container > p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 0 3rem;
  line-height: 1.75;
}
#contact .c-btns {
  justify-content: flex-start;
}
.c-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .9rem 1.75rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9375rem;
  transition: transform .2s, box-shadow .2s;
}
.c-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0, 0, 0, .45); }
.c-btn .socicon { font-size: 1rem; }
.c-vk  { background: #0077FF; color: #fff; }
.c-tg  { background: #229ED9; color: #fff; }
.c-tel {
  background: var(--bg-card);
  color: var(--gold);
  border: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-logo {
  font-family: 'Rubik Mono One', monospace;
  font-size: 1rem;
  letter-spacing: .06em;
}
.f-logo em { color: var(--gold); font-style: normal; }
footer p { color: var(--muted); font-size: .8125rem; }

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lb-overlay img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .8);
  cursor: default;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  border: none;
  background: none;
  padding: .25rem .5rem;
  transition: color .2s;
}
.lb-close:hover { color: #fff; }

/* ── CREAM SECTION OVERRIDES (#why-events, #atmosphere) ── */
#why-events,
#atmosphere {
  color: var(--cream-text);
}
/* curtain must match section bg */
#why-events::before,
#atmosphere::before {
  background: var(--cream);
}
#why-events .text-section-h,
#atmosphere .text-section-h {
  color: var(--cream-text);
}
#why-events .text-section-body p,
#atmosphere .text-section-body p {
  color: var(--cream-muted);
}
/* gold accent becomes wine on light background */
#why-events .gold,
#atmosphere .gold {
  color: var(--wine);
}
#why-events .text-bq,
#atmosphere .text-bq {
  font-family: var(--serif);
  border-left-color: var(--wine);
  color: var(--cream-text);
}

/* ── CURTAIN EFFECT ── */
#why-events,
#about,
#atmosphere,
#stories,
#services,
#reviews,
#faq,
#contact {
  position: relative;
}

#why-events::before,
#about::before,
#atmosphere::before,
#stories::before,
#services::before,
#reviews::before,
#faq::before,
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  pointer-events: none;
  z-index: 30;
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

#why-events.snap-in::before,
#about.snap-in::before,
#atmosphere.snap-in::before,
#stories.snap-in::before,
#services.snap-in::before,
#reviews.snap-in::before,
#faq.snap-in::before,
#contact.snap-in::before {
  transform: scaleY(0);
}

#why-events .reveal, #why-events .reveal-left, #why-events .reveal-right, #why-events .reveal-scale,
#about      .reveal, #about      .reveal-left, #about      .reveal-right, #about      .reveal-scale,
#atmosphere .reveal, #atmosphere .reveal-left, #atmosphere .reveal-right, #atmosphere .reveal-scale,
#stories    .reveal, #stories    .reveal-scale,
#services   .reveal, #services   .reveal-scale,
#reviews    .reveal, #reviews    .reveal-scale,
#faq        .reveal,
#contact    .reveal, #contact    .reveal-scale {
  transition-delay: var(--cd);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  #stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-desc { display: none; }

  #about .container { grid-template-columns: 1fr; }

  .text-section-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .text-section-left { position: static; align-self: auto; }

  .story-card { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 16 / 9; }
  .story-cols { grid-template-columns: 1fr; gap: 1.25rem; }

  .format-card { padding: 1.75rem; }
  .format-head { flex-direction: column; gap: .5rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .quotes-row { grid-template-columns: 1fr 1fr; }

  #contact h2 { font-size: clamp(2rem, 9vw, 3.5rem); }
  #contact { text-align: center; }
  #contact h2, #contact > .container > p { max-width: 100%; }
  #contact > .container > p { margin: 0 auto 2.5rem; }
  #contact .c-btns { justify-content: center; }
  .contact-overlay {
    background: linear-gradient(
      to bottom,
      rgba(11, 11, 12, .15) 0%,
      rgba(11, 11, 12, .60) 55%,
      rgba(11, 11, 12, .97) 85%
    );
  }
}

@media (max-width: 480px) {
  #stats .container { grid-template-columns: repeat(2, 1fr); }
  .quotes-row { grid-template-columns: 1fr; gap: 1.5rem; }
}
