/* =========================================
   КЭТИ — Promoter / Moscow
   v2 — asymmetric editorial layout
   ========================================= */

:root {
  /* ── PALETTE ── Landing-Kate inspired: gold / wine / cream
     Базовая премиум-винная гамма + magenta для CTA-вспышек. */
  --bg:           #0a0608;          /* near-black с винным оттенком */
  --bg-2:         #14090a;          /* warm dark, gold подкладка */
  --bg-3:         #1f1418;          /* smoke, под cards */
  --fg:           #f0e3d0;          /* cream вместо чистого white */
  --ink:          #f0e3d0;          /* alias */
  --muted:        #8a7a76;          /* тёплый серый */

  --accent:       #d4a849;          /* gold — главный акцент */
  --accent-light: #f0d080;          /* gold-light для hover/highlight */
  --accent-2:     #6a1820;          /* wine — глубокий бордо */
  --accent-deep:  #3a0e14;          /* wine-deep для теней */
  --accent-bright:#a02434;          /* wine-bright для индикаторов */
  --accent-red:   #b73649;          /* red-wine, под warnings */

  /* Magenta-вспышки — только для CTA / live / countdown цифр */
  --neon:         #ff2e8a;
  --neon-glow:    rgba(255, 46, 138, 0.55);

  --line:        rgba(212,168,73,0.08);    /* gold-тинт линии */
  --line-strong: rgba(212,168,73,0.32);

  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body:    "Montserrat", system-ui, sans-serif;
  --font-mono:    "Space Mono", "Courier New", monospace;

  --pad: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  min-height: 100%;
}

/* Винно-золотая фоновая композиция — едва заметные радиалы */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 20%, rgba(106,24,32,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 80%, rgba(212,168,73,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(160,36,52,0.13) 0%, transparent 65%),
    linear-gradient(180deg, #0a0608 0%, #14090a 50%, #0a0608 100%);
  z-index: -1;
  pointer-events: none;
}

body {
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- GRAIN ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  min-height: 64px;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(10,6,8,0.97) 0%, rgba(10,6,8,0.92) 65%, rgba(10,6,8,0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,168,73,0.12);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.dot { color: var(--accent); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
  transition: all .25s;
}
.nav__cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 3px rgba(212,168,73,0.18);
}

/* Right group (burger + CTA) */
.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Burger button — hidden on desktop */
.nav__burger {
  display: none;
  width: 36px; height: 26px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--fg);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .2s;
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 12px; }
.nav__burger span:nth-child(3) { top: 22px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); background: var(--accent); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); background: var(--accent); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav { padding: 14px var(--pad); min-height: 58px; }
  .nav__logo { font-size: 26px; }
  .nav__cta { padding: 8px 12px; font-size: 10px; letter-spacing: 1.5px; }
  .nav__burger { display: block; }
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.navmenu {
  position: fixed;
  inset: 0;
  background: rgba(10,6,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 180;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 100px var(--pad) 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.2,.8,.2,1);
}
.navmenu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.navmenu__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.navmenu__links a {
  font-family: var(--font-display);
  font-size: clamp(40px, 11vw, 64px);
  color: var(--fg);
  letter-spacing: 2px;
  line-height: 1;
  transition: color .2s, transform .25s;
  display: inline-block;
}
.navmenu__links a:hover,
.navmenu__links a:active { color: var(--accent); transform: translateX(8px); }

.navmenu__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.navmenu__contacts a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.navmenu__contacts a:hover { color: var(--accent); }

.navmenu__tag {
  position: absolute;
  bottom: 30px; right: var(--pad);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ---------- STATUS BAR (where I am tonight) ---------- */
.statusbar {
  position: fixed;
  top: var(--nav-h, 64px);
  left: 0; right: 0;
  z-index: 150;
  background:
    linear-gradient(90deg, rgba(106,24,32,0.18) 0%, rgba(212,168,73,0.10) 50%, rgba(106,24,32,0.18) 100%);
  border-top: 1px solid rgba(212,168,73,0.35);
  border-bottom: 1px solid rgba(212,168,73,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.statusbar__link {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 10px var(--pad);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap .2s, background .2s, color .2s;
}
.statusbar__link:hover {
  gap: 22px;
  background: rgba(212,168,73,0.12);
  color: var(--accent-light);
}
.statusbar__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow), 0 0 14px rgba(255,46,138,0.35);
  flex-shrink: 0;
  animation: bpm-pulse 0.469s infinite ease-in-out;
}
.statusbar__dot.is-off {
  background: transparent;
  border: 1px solid var(--muted);
  box-shadow: none;
  animation: none;
}
.statusbar__text { color: var(--fg); }
.statusbar__arrow { color: var(--accent); font-size: 14px; }

@media (max-width: 600px) {
  .statusbar__link { font-size: 9px; letter-spacing: 0.18em; gap: 8px; padding: 8px var(--pad); }
}

/* ---------- TICKER MARQUEE ---------- */
.ticker {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-2) 100%);
  white-space: nowrap;
  border-top: 1px solid rgba(10,6,8,0.4);
  border-bottom: 1px solid rgba(10,6,8,0.4);
}
/* Боковые fade-маски — текст «исчезает» в винные края */
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 1;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--accent-2), transparent);
}
.ticker__track {
  display: inline-block;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}
.ticker__track > span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--bg);
  padding: 0 22px;
  vertical-align: middle;
  text-transform: uppercase;
}
.ticker__dot {
  color: rgba(10,6,8,0.55) !important;
  font-size: 8px !important;
  letter-spacing: 0 !important;
  padding: 0 4px !important;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover {
  background: var(--fg); color: var(--accent-2);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--fg); background: rgba(240,227,208,0.05); }
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
/* ---------- HERO (Landing-Kate gold-aesthetic) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h, 70px) + var(--statusbar-h, 36px) + 60px);
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Огромный stroked-gold wordmark за всем */
.hero-wordmark {
  position: absolute;
  top: 48%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 28vw, 380px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,73,0.16);
  white-space: nowrap;
  user-select: none;
  z-index: 0;
  pointer-events: none;
}

/* Floating gold particles — медленный подъём вверх */
.particle {
  position: absolute;
  top: 100%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 14px var(--accent-light);
  opacity: 0;
  pointer-events: none;
  animation: drift linear infinite;
  z-index: 1;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translate(var(--drift, 0), -110vh) scale(1.2); opacity: 0; }
}

/* Clock badge — top-right corner, gold-tinted, magenta live-dot */
.clock-badge {
  position: absolute;
  top: calc(var(--nav-h, 70px) + var(--statusbar-h, 36px) + 18px);
  right: var(--pad);
  z-index: 5;
  padding: 14px 18px;
  border: 1px solid rgba(212,168,73,0.32);
  background: rgba(10,6,8,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: right;
  min-width: 220px;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.6);
}
.clock-badge__row {
  display: flex; gap: 10px; justify-content: flex-end; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.clock-badge__dot {
  color: var(--neon);
  font-size: 9px;
  filter: drop-shadow(0 0 6px var(--neon-glow));
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.clock-badge .live { color: var(--neon); letter-spacing: 0.25em; }
.clock-badge__time {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.clock-badge__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Двухколоночная сетка hero — фото слева, текст справа (desktop) */
.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 0 var(--pad);
}

/* Фото-карточка слева */
.hero__photo {
  position: relative;
  opacity: 0;
  animation: fadeUp .9s .1s forwards;
}
.hero__photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(212,168,73,0.28);
  box-shadow:
    0 30px 70px -28px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(212,168,73,0.05);
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.04) saturate(0.92) brightness(0.96);
  mask-image: linear-gradient(to bottom, black 65%, rgba(0,0,0,0.7) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0,0,0,0.7) 88%, transparent 100%);
}
.hero__photo-tag {
  position: absolute;
  left: 0; bottom: 0;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  background: linear-gradient(180deg, transparent 0%, rgba(10,6,8,0.85) 60%);
  width: 100%;
}

/* Текстовый блок справа */
.hero__content {
  position: relative;
  max-width: 720px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp .8s .25s forwards;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
  text-shadow: 0 2px 18px rgba(10,6,8,0.7);
}
.hero__title .line { display: block; }
.hero__title .line--gold {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent-light);
}
.hero__divider {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 6px 0 22px;
  opacity: 0;
  animation: fadeUp .8s .55s forwards;
}
.hero__sub {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(240,227,208,0.78);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .85s forwards;
}

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

/* Bottom scrim — page fades into next section */
.hero-scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  z-index: 2;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(10,6,8,0.4) 40%,
    rgba(10,6,8,0.85) 80%,
    rgba(10,6,8,0.98) 100%);
  pointer-events: none;
}

.hero__cue {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.7;
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 6px); opacity: 0.95; }
}

/* Tablet: стек, фото сверху */
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .hero__photo {
    width: 78%;
    max-width: 320px;
  }
  .hero__photo-frame {
    aspect-ratio: 4 / 5;
  }
  .hero__content {
    text-align: center;
  }
  .hero__divider { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
}

@media (max-width: 540px) {
  .clock-badge {
    top: calc(var(--nav-h, 64px) + var(--statusbar-h, 36px) + 10px);
    right: 12px;
    min-width: 0;
    padding: 9px 11px;
  }
  .clock-badge__time { font-size: 22px; letter-spacing: 1px; }
  .clock-badge__sub { display: none; }
  .hero { padding-top: calc(var(--nav-h, 64px) + var(--statusbar-h, 36px) + 130px); }
}

/* ---------- SECTION HEADS ---------- */
/* Унифицированный Landing-Kate-style tag для всех секций:
   `// 00X — Название` Space Mono gold с тонким нижним gold-штрихом */
.section__num,
.nextdrop__kicker,
.manifesto__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212,168,73,0.25);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg);
}
.section__head {
  padding: 0 var(--pad);
  max-width: 1400px;
  margin: 0 auto 50px;
}
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.accent { color: var(--accent); }

/* ---------- NEXT DROP — COUNTDOWN ---------- */
.nextdrop {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: clamp(40px, 6vw, 70px) var(--pad);
  overflow: hidden;
}
.nextdrop::before,
.nextdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.nextdrop::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(160,36,52,0.28), transparent 65%);
}
.nextdrop::after {
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 60px,
    rgba(240,227,208,0.025) 60px 61px
  );
}
.nextdrop__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 30px);
}
.nextdrop__kicker {
  /* spacing override — countdown секция чуть просторнее */
  margin-bottom: 4px;
}
.nextdrop__clock {
  display: flex;
  align-items: flex-end;
  gap: clamp(8px, 1.6vw, 24px);
  flex-wrap: nowrap;
}
.nextdrop__unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nextdrop__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 180px);
  color: var(--accent);
  line-height: 0.85;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  min-width: 1.4em;
  text-align: center;
}
.nextdrop__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
  align-self: center;
}
.nextdrop__sep {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 140px);
  color: rgba(240,227,208,0.25);
  line-height: 0.85;
  align-self: flex-start;
  margin-top: 0.05em;
  animation: bpm-pulse 0.938s infinite ease-in-out; /* half BPM */
}
.nextdrop__live {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: 2px;
  color: var(--accent);
  line-height: 0.85;
}
.nextdrop__live-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow), 0 0 22px rgba(255,46,138,0.35);
  animation: bpm-pulse 0.469s infinite ease-in-out;
}
.nextdrop__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(240,227,208,0.08);
}
.nextdrop__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.nextdrop__where {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .nextdrop__clock { gap: 4px; }
  .nextdrop__num { font-size: clamp(40px, 14vw, 64px); min-width: 1.3em; }
  .nextdrop__sep { font-size: clamp(28px, 10vw, 48px); }
  .nextdrop__lbl { font-size: 9px; letter-spacing: 2px; }
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad);
  overflow: hidden;
}
/* Stats row — 2 cells с count-up при scroll-in */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  margin-top: clamp(32px, 5vw, 56px);
}
.stat-box {
  position: relative;
  padding: clamp(16px, 2.5vw, 26px) clamp(14px, 2vw, 22px);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212,168,73,0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(20,9,10,0.65) 0%, rgba(31,20,24,0.45) 100%);
  border: 1px solid rgba(212,168,73,0.22);
  border-top: 1px solid rgba(212,168,73,0.45);
  text-align: left;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--accent-light);
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; gap: 10px; }
  .stat-num { font-size: 38px; }
}

/* ---------- PERK BANNER ----------
   Акцентный блок «★ Главное преимущество» — gold-border + wine gradient
   + shimmer radial-glow. Используется как финал контентной секции. */
.perk-banner {
  position: relative;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(18px, 2.4vw, 26px) clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(135deg, rgba(160,36,52,0.30) 0%, rgba(106,24,32,0.18) 55%, rgba(212,168,73,0.10) 100%);
  border: 1px solid rgba(212,168,73,0.45);
  border-left: 3px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(106,24,32,0.55);
}
/* Медленный radial shimmer — gold пятно ползает по диагонали */
.perk-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(240,208,128,0.16) 0%, transparent 40%);
  animation: perk-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes perk-shimmer {
  0%, 100% { transform: translate(-30%, -30%); }
  50%      { transform: translate(0%, 0%); }
}
@media (prefers-reduced-motion: reduce) {
  .perk-banner::before { animation: none; }
}

.perk-banner__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 9px;
  font-weight: 700;
  margin-bottom: 12px;
}
.perk-banner__headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.perk-banner__headline em {
  font-style: normal;
  color: var(--fg);
}
.perk-banner__sub {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: rgba(240,227,208,0.82);
  text-transform: none;
}
.perk-banner__sub strong {
  color: var(--accent-light);
  font-weight: 700;
}

/* ---------- SHARE FAB ----------
   Плавающая кнопка bottom-right. navigator.share для мобилок,
   copy-link fallback для десктопа. Tooltip всплывает слева на hover/click. */
.share-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 250;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid rgba(212,168,73,0.7);
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    0 10px 24px -8px rgba(0,0,0,0.6),
    0 0 0 6px rgba(212,168,73,0.10);
  transition: transform .2s, box-shadow .25s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.share-fab:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px -8px rgba(0,0,0,0.7),
    0 0 0 8px rgba(212,168,73,0.16);
}
.share-fab:active {
  transform: translateY(0) scale(0.96);
}
.share-fab svg {
  width: 22px;
  height: 22px;
}

.share-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 8px 12px;
  background: var(--bg-2);
  color: var(--fg);
  border: 1px solid rgba(212,168,73,0.32);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .25s;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.6);
}
.share-fab:hover .share-fab__tooltip,
.share-fab.show-tooltip .share-fab__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .share-fab { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .share-fab svg { width: 20px; height: 20px; }
  .share-fab__tooltip {
    right: 50%;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(50%) translateY(8px);
  }
  .share-fab:hover .share-fab__tooltip,
  .share-fab.show-tooltip .share-fab__tooltip {
    transform: translateX(50%) translateY(0);
  }
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 80px;
  bottom: 14px;
  z-index: 240;
  padding: 14px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212,168,73,0.7);
  box-shadow:
    0 14px 30px -10px rgba(0,0,0,0.7),
    0 0 0 4px rgba(212,168,73,0.10);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:active {
  transform: translateY(0) scale(0.98);
}
.sticky-cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sticky-cta__text {
  font-weight: 700;
}
.sticky-cta__arrow {
  margin-left: 2px;
  font-family: var(--font-mono);
  font-size: 15px;
}

/* Показываем только на мобиле */
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}
.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.about__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.about__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.about__photo-frame::before {
  content: "K / 01";
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  z-index: 2;
}
.about__photo-frame::after {
  content: "MOSCOW";
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(240,227,208,0.5);
  letter-spacing: 2px;
  z-index: 2;
}
.about__text p { margin-bottom: 16px; color: rgba(240,227,208,0.82); max-width: 620px; }
.about__list {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.about__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(240,227,208,0.85);
  position: relative;
  padding-left: 24px;
}
.about__list li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
}
/* Мягкая сноска про другие площадки — отделить визуально от основных услуг */
.about__list li.about__list-soft {
  color: var(--muted);
  font-size: 11px;
  padding-top: 18px;
  letter-spacing: 0.5px;
  font-style: italic;
}
.about__list li.about__list-soft::before {
  content: "+";
  color: var(--muted);
}
.about__text .section__num { margin-top: 0; }
.about__text .section__title { margin-bottom: 20px; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(160,36,52,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(106,24,32,0.22) 0%, transparent 70%),
    var(--bg);
  padding: clamp(100px, 14vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "MANIFESTO";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 480px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,73,0.08);
  letter-spacing: -8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto__kicker {
  /* spacing override — манифест с большим воздухом до тела */
  margin-bottom: 40px;
}
.manifesto__hero {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: var(--fg);
}
.manifesto__nots,
.manifesto__do {
  list-style: none;
  margin-bottom: 50px;
  border-left: 2px solid var(--line);
  padding-left: 24px;
}
.manifesto__nots { border-left-color: var(--accent); }
.manifesto__nots li,
.manifesto__do li {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(240,227,208,0.85);
  padding: 8px 0;
}
.manifesto__nots li { color: #fff; }
.manifesto__do li::before {
  content: "→ ";
  color: var(--accent);
  font-weight: 700;
}
.manifesto__sign {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 1px;
  color: var(--accent);
  margin-top: 40px;
}
.manifesto__sign span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 8px;
}

/* ---------- UPCOMING — filmstrip как Archive ---------- */
.upcoming {
  padding: clamp(80px, 10vw, 120px) 0;
}
.upcoming__cta {
  max-width: 1280px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 var(--pad);
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.upcoming__cta-btn {
  padding: 18px 30px;
  font-size: 13px;
  letter-spacing: 0.18em;
  min-width: 240px;
  justify-content: center;
}
@media (max-width: 540px) {
  .upcoming__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .upcoming__cta-btn { min-width: 0; padding: 16px 22px; }
}

/* ---------- ARCHIVE — DRAG FILMSTRIP ---------- */
.archive {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-2);
  overflow: hidden;
}
.archive__sidelabel {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 1;
  pointer-events: none;
  display: flex; flex-direction: column; gap: 4px;
}
.archive__bignum {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,227,208,0.15);
  letter-spacing: -2px;
}
.archive__bigtxt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 8px;
}
.archive__head {
  padding: 0 var(--pad) 0 calc(var(--pad) + 80px);
  max-width: 1400px;
  margin: 0 auto 40px;
}
/* у #upcoming нет бокового лейбла — убираем лишний отступ слева под него */
.upcoming .archive__head {
  padding-left: var(--pad);
}
.archive__head .section__num { display: table; }
.archive__head .section__title { display: inline-block; margin-right: 24px; }
.archive__hint {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  vertical-align: middle;
}

.filmstrip {
  display: flex;
  gap: 16px;
  padding: 20px var(--pad);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.filmstrip.is-dragging { cursor: grabbing; }
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--accent); }
.filmstrip::-webkit-scrollbar-track { background: rgba(240,227,208,0.05); }

.frame {
  flex: 0 0 clamp(280px, 32vw, 420px);
  scroll-snap-align: start;
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.frame:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.frame__num {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 5px 9px;
}
.frame__photo {
  aspect-ratio: 4/5;
  background: var(--tint, linear-gradient(135deg, var(--accent-deep), var(--bg)));
  background-size: cover;
  background-position: center;
  position: relative;
}
.frame__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
}
/* текстовые карточки архива (без фото) */
.frame__photo--text {
  display: flex; align-items: center; justify-content: center;
}
.frame__poster {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 2px;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  color: rgba(244,236,224,0.94);
  padding: 0 18px;
}
.frame--draft .frame__poster { color: rgba(244,236,224,0.45); }
.frame--draft .frame__tag { color: var(--muted); }
.frame__caption {
  padding: 18px 20px 22px;
}
.frame__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.frame__caption h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.frame__caption p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}
.frame--end {
  background: transparent;
  border: 1px dashed var(--line-strong);
  align-items: center; justify-content: center;
  text-align: center;
}
.frame__caption--end {
  display: flex; flex-direction: column; gap: 12px;
  padding: 30px;
}
.frame__caption--end p {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--muted);
}
.frame__caption--end a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.frame__end-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.frame__caption--end .frame__end-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bg);
  background: var(--accent);
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 14px 16px;
  min-height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.frame__caption--end .frame__end-ico {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.frame__caption--end .frame__end-btn:hover {
  background: var(--fg);
  color: var(--accent-2);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}

@media (max-width: 760px) {
  .archive__sidelabel { display: none; }
  .archive__head { padding: 0 var(--pad); }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.modal__content {
  position: relative;
  max-width: 1200px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  padding: 40px;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 24px;
  line-height: 1;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }
.modal__title {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.modal__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(240,227,208,0.85);
  margin-bottom: 24px;
  max-width: 720px;
  white-space: pre-line;
}
.modal__desc[hidden] { display: none; }
.modal__cta {
  margin-top: 24px;
  width: fit-content;
}
.modal__cta[hidden] { display: none; }
.modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
/* Если в галерее одна большая афиша — пусть занимает всю ширину контейнера */
.modal__gallery:has(.photo--real:only-child) {
  grid-template-columns: 1fr;
  max-width: 540px;
  margin: 0 auto;
}
.modal__gallery .photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-3), #2a0015);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  border: 1px solid var(--line);
}
.modal__gallery .photo--real {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s;
  background: var(--bg-3);
}
.modal__gallery .photo--real:hover {
  transform: scale(1.015);
  border-color: var(--accent);
}

/* ---------- VENUE — KULTURA на Кудринской ---------- */
.venue {
  padding: clamp(80px, 10vw, 120px) 0;
}
.venue__card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  border: 1px solid rgba(212,168,73,0.22);
  border-top: 1px solid rgba(212,168,73,0.45);
  background: var(--bg-2);
  overflow: hidden;
}
.venue__map {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85);
}
.venue__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,73,0.08), transparent 60%),
    var(--bg-2);
  border-left: 1px solid rgba(212,168,73,0.18);
}
.venue__name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--accent-light);
  text-transform: uppercase;
}
.venue__address {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: rgba(240,227,208,0.82);
  text-transform: uppercase;
}
.venue__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240,227,208,0.82);
  padding-top: 14px;
  border-top: 1px solid rgba(212,168,73,0.16);
}
.venue__artists {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(240,227,208,0.72);
}
.venue__artists-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.venue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.venue__btn {
  flex: 1 1 auto;
  text-align: center;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .2s, color .2s, box-shadow .2s;
}
.venue__btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 3px rgba(212,168,73,0.18);
}

/* Card → стек на узких экранах */
@media (max-width: 860px) {
  .venue__card {
    grid-template-columns: 1fr;
  }
  .venue__map { min-height: 280px; }
  .venue__body { border-left: none; border-top: 1px solid rgba(212,168,73,0.18); }
}

/* ---------- FAQ — условия входа ---------- */
.faq {
  padding: clamp(70px, 9vw, 110px) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(160,36,52,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(106,24,32,0.18) 0%, transparent 70%),
    var(--accent-deep);
}
/* На wine-фоне cards чуть прозрачнее, чтобы wine читался */
.faq .faq__card {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212,168,73,0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(20,9,10,0.55) 0%, rgba(31,20,24,0.38) 100%);
}
.faq__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
}
.faq__card {
  position: relative;
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212,168,73,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(20,9,10,0.7) 0%, rgba(31,20,24,0.5) 100%);
  border: 1px solid rgba(212,168,73,0.22);
  border-top: 1px solid rgba(212,168,73,0.45);
}
.faq__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.faq__value {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.faq__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: rgba(240,227,208,0.78);
}

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ---------- TEAM — набор промоутеров ---------- */
.team {
  padding: clamp(70px, 9vw, 110px) 0 clamp(60px, 8vw, 90px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(160,36,52,0.18) 0%, transparent 60%),
    transparent;
}
.team__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.team__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(240,227,208,0.85);
  max-width: 720px;
  margin: 18px 0 36px;
}
.team__card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(135deg, rgba(160,36,52,0.32) 0%, rgba(106,24,32,0.18) 55%, rgba(212,168,73,0.12) 100%);
  border: 1px solid rgba(212,168,73,0.45);
  border-left: 3px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(106,24,32,0.6);
}
.team__card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(240,208,128,0.14) 0%, transparent 40%);
  animation: perk-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
.team__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  font-weight: 700;
  margin-bottom: 14px;
}
.team__headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team__sub {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: rgba(240,227,208,0.82);
  margin-bottom: 22px;
}
.team__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
}
.team__note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- REVIEWS — POLAROID BOARD ---------- */
.reviews {
  padding: clamp(80px, 10vw, 120px) 0 clamp(120px, 16vw, 200px);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.polaroid-board {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
  min-height: 520px;
}
.polaroid {
  position: absolute;
  left: var(--x);
  top: calc(var(--y) + 40px);
  transform: rotate(var(--r));
  width: clamp(220px, 22vw, 280px);
  background: #fafafa;
  color: #111;
  padding: 14px 14px 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), z-index 0s;
  cursor: pointer;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.05);
  z-index: 10;
}
.polaroid__photo {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(106,24,32,0.55), rgba(10,6,8,0.4)),
    repeating-linear-gradient(45deg, rgba(240,227,208,0.05) 0 2px, transparent 2px 6px);
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  position: relative;
}
.polaroid__photo::after {
  content: "PHOTO";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(240,227,208,0.6);
}
.polaroid__photo[style*="background-image"]::after { display: none; }
.polaroid figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  color: #222;
}
.polaroid cite {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: #777;
  letter-spacing: 1px;
  font-style: normal;
}

@media (max-width: 880px) {
  .polaroid-board { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .polaroid { position: static; transform: rotate(var(--r)); width: auto; }
}
@media (max-width: 520px) {
  .polaroid-board { grid-template-columns: 1fr; gap: 12px; }
  /* «Стопка» вместо списка: чётные сдвигаем влево + наверх, нечётные вправо */
  .polaroid:nth-child(odd)  { margin-left: 10%; }
  .polaroid:nth-child(even) { margin-right: 10%; margin-top: -32px; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(80px, 10vw, 120px) var(--pad);
}
.contact__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact__inner .section__num {
  margin-left: auto;
  margin-right: auto;
}
.contact__inner .section__title {
  margin-bottom: 22px;
}
.contact__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(240,227,208,0.82);
  max-width: 620px;
  margin: 0 auto 32px;
}
.contact__cta-btn {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: 0.18em;
}
.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.contact__channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(212,168,73,0.22);
  background: rgba(20,9,10,0.45);
  text-align: left;
  transition: border-color .25s, background .25s, transform .2s;
}
.contact__channel:hover {
  border-color: var(--accent);
  background: rgba(20,9,10,0.7);
  transform: translateY(-2px);
}
.contact__channel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__channel-value {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

@media (max-width: 540px) {
  .contact__channels { grid-template-columns: 1fr; }
  .contact__cta-btn { padding: 16px 22px; font-size: 13px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212,168,73,0.06) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(212,168,73,0.22);
  padding: clamp(36px, 5vw, 56px) var(--pad) clamp(20px, 3vw, 28px);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(212,168,73,0.12);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}
.footer__links a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color .2s, transform .2s;
}
.footer__links a:hover { transform: translateX(-4px); }
.footer__link-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__link-handle {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: color .2s;
}
.footer__links a:hover .footer__link-handle { color: var(--accent-light); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: clamp(16px, 2vw, 22px);
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer__links {
    align-items: flex-start;
    text-align: left;
  }
  .footer__links a:hover { transform: translateX(4px); }
}

/* ==========================================================
   ANIMATIONS (phase 2)
   ========================================================== */

/* ---------- BPM PULSE (128 BPM = 0.469s) ---------- */
@keyframes bpm-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.55; }
}
.clock-badge__dot {
  display: inline-block;
  animation: bpm-pulse 0.469s infinite ease-in-out;
}
.footer-term__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-term__status::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00ff80;
  animation: bpm-pulse 0.469s infinite ease-in-out;
}

/* ==========================================================
   MOBILE FIXES — багфикс-пачка для узких экранов
   ========================================================== */

/* (1) Share FAB поднимаем выше на мобиле, чтобы не сталкивался со sticky CTA */
@media (max-width: 720px) {
  .share-fab { bottom: 80px; }
}

/* (2) Burger overlay должен скроллиться на коротких экранах (iPhone SE и landscape) */
.navmenu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-height: 700px), (max-width: 480px) {
  .navmenu { gap: 24px; padding: 90px var(--pad) 80px; }
  .navmenu__links { gap: 6px; }
  .navmenu__links a { font-size: clamp(28px, 8vw, 44px); }
  .navmenu__contacts { padding-top: 18px; gap: 10px; }
}

/* (3) Hero title — на очень узких экранах снизить min, иначе AFTER MIDNIGHT обрезается */
@media (max-width: 420px) {
  .hero__title { font-size: clamp(40px, 11vw, 64px); letter-spacing: -0.01em; }
}

/* (4) Section titles — снизить min на узких */
@media (max-width: 420px) {
  .section__title { font-size: clamp(34px, 9vw, 56px); }
}

/* (5) Manifesto giant bg-text — на мобиле уменьшить, иначе клочок без слова */
@media (max-width: 600px) {
  .manifesto::before {
    font-size: clamp(90px, 26vw, 200px);
    letter-spacing: -3px;
  }
  .manifesto { padding: clamp(60px, 10vw, 100px) var(--pad); }
  .manifesto__kicker { margin-bottom: 22px; }
  .manifesto__hero { font-size: clamp(28px, 7vw, 52px); margin-bottom: 36px; }
}

/* (6) Hero scrim — на мобиле сократить высоту, иначе наезжает на CTA */
@media (max-width: 720px) {
  .hero-scrim {
    height: 25%;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(10,6,8,0.6) 60%,
      rgba(10,6,8,0.95) 100%);
  }
}

/* (7) Stats-row — в 1-col gap должен быть заметнее */
@media (max-width: 600px) {
  .stats-row { gap: 14px; }
}

/* (8) Statusbar — повысить читаемость с 9px до 10px на мобиле */
@media (max-width: 600px) {
  .statusbar__link { font-size: 10px; letter-spacing: 0.16em; }
}

/* ---------- NEW REVEAL SYSTEM ---------- */
.r-left,
.r-up,
.r-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1),
              transform 0.8s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.r-left  { transform: translateX(-50px); }
.r-right { transform: translateX( 50px); }
.r-up    { transform: translateY( 40px); }
.r-left.is-visible,
.r-right.is-visible,
.r-up.is-visible {
  opacity: 1;
  transform: none;
}

/* Polaroids — reveal preserves rotation */
.polaroid {
  opacity: 0;
  transform: rotate(var(--r)) translateY(60px) scale(0.92);
  transition: opacity 0.6s ease, transform 0.9s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.polaroid.is-visible {
  opacity: 1;
  transform: rotate(var(--r)) translateY(0) scale(1);
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.05) !important;
  z-index: 10;
  transition-delay: 0s !important;
}
