   Стендап в Корее — main.css
   Тёмная сцена, прожектор, плакатная типографика
:root {
  /* Палитра */
  --bg: #0A0A0A;
  --bg-elevated: #131313;
  --bg-overlay: rgba(10, 10, 10, 0.85);
  --fg: #F5F2ED;
  --fg-muted: #9B9690;
  --fg-faint: #5C5852;
  --accent: #E63946;        /* красный прожектора */
  --accent-warm: #F4A261;   /* тёплый жёлтый */
  --accent-cool: #7FB069;   /* приглушённый зелёный */
  --line: rgba(245, 242, 237, 0.08);
  --line-strong: rgba(245, 242, 237, 0.18);

  /* Тени */
  --shadow-spot: 0 0 120px rgba(230, 57, 70, 0.3);
  --shadow-card: 0 30px 60px rgba(0, 0, 0, 0.5);

  /* Типографика */
  --font-heading: 'Bebas Neue', 'Anton', 'Impact', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-kr: 'Noto Sans KR', 'Manrope', sans-serif;

  /* Анимации */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 76px;
  --section-gap: 140px;
  --radius: 4px;
  --radius-lg: 12px;
}

/ Reset
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: none;
  padding: 0;
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/ Typography helpers
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
}

h1 { font-size: clamp(56px, 9vw, 144px); }
h2 { font-size: clamp(40px, 6vw, 88px); }
h3 { font-size: clamp(28px, 3.5vw, 48px); }
h4 { font-size: clamp(22px, 2.5vw, 32px); }

p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }

.kr {
  font-family: var(--font-kr);
  font-weight: 500;
}

/ Зернистая текстура
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/ Кастомный курсор
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: var(--fg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  top: 0;
  left: 0;
}

.cursor.is-hover {
  width: 48px;
  height: 48px;
}

@media (hover: none), (max-width: 768px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/ Контейнер
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 60px;
}

/ Header
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.logo__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { white-space: nowrap; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 6px 0;
  transition: color 0.3s var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/ Main / Section
.main {
  min-height: 100vh;
}

.section {
  padding-block: var(--section-gap);
  position: relative;
}

.section--tight { padding-block: calc(var(--section-gap) * 0.5); }

.section__lead {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--fg-muted);
  max-width: 60ch;
  line-height: 1.5;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
}

/ Кнопки
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { transform: translateY(-2px); background: #d62836; }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--fg); }

.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--accent);
}
.btn--outline:hover { background: var(--accent); }

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

.btn--disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/ Reveal-on-scroll
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--right { transform: translateX(40px); }
.reveal--right.is-visible { transform: translateX(0); }

.reveal--scale { transform: scale(0.94); }
.reveal--scale.is-visible { transform: scale(1); }

/ Hero (главная)
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__spotlight {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.45) 0%, rgba(230, 57, 70, 0.15) 30%, transparent 65%);
  transform: translateY(-50%);
  filter: blur(40px);
  pointer-events: none;
  animation: spotlightPulse 6s ease-in-out infinite;
}
@keyframes spotlightPulse {
  0%, 100% { opacity: 0.85; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.hero__title {
  font-size: clamp(64px, 10vw, 180px);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title .accent { color: var(--accent); }
.hero__title .word {
  display: inline-block;
  overflow: hidden;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroWordIn 1.1s var(--ease-out) forwards;
}
@keyframes heroWordIn {
  to { transform: translateY(0); }
}
.hero__title .word:nth-child(2) > span { animation-delay: 0.15s; }
.hero__title .word:nth-child(3) > span { animation-delay: 0.3s; }

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--fg-muted);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.hero__meta-value {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.hero__ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  height: 560px;
  display: grid;
  place-items: center;
}

.hero__canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#micCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__mic-fallback {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  color: var(--fg);
}
.hero__mic-fallback svg {
  width: 60%;
  max-width: 320px;
  filter: drop-shadow(0 0 60px rgba(230, 57, 70, 0.5));
}

/ About artist
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.about__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--fg-faint);
}
.about__placeholder svg { width: 35%; opacity: 0.4; }

.about__name {
  font-size: clamp(48px, 5vw, 88px);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about__bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 60ch;
  margin-bottom: 32px;
}

.about__bio p { margin-bottom: 1em; }

.about__socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about__social {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--fg);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.about__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.about__social svg { width: 20px; height: 20px; }

/ Marquee (бегущая строка фото)
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marqueeScroll 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.marquee__item {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.marquee__item:hover img {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.05);
}

/ Gallery
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: none;
  position: relative;
  background: #1a1a1a;
}
@media (hover: none) {
  .gallery__item { cursor: pointer; }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }

/ Concerts list (страница /concerts)
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.concert-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  isolation: isolate;
}
.concert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(230, 57, 70, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.concert-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.concert-card:hover::before { opacity: 1; }

.concert-card__poster {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0e0e0e;
  position: relative;
  overflow: hidden;
}
.concert-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
}
.concert-card:hover .concert-card__poster img { transform: scale(1.05); }
.concert-card__poster--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  color: var(--fg-faint);
}
.concert-card__poster--placeholder svg { width: 30%; opacity: 0.35; }

.concert-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--fg);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius);
}

.concert-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.concert-card__city {
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.concert-card__city-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--fg-faint);
  font-weight: 500;
}
.concert-card__date {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.concert-card__date strong { color: var(--accent); font-weight: 600; }
.concert-card__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 600;
}
.concert-card__cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.concert-card:hover .concert-card__cta::after { transform: translateX(6px); }

/ Concert detail
.concert-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.concert-hero__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.concert-hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concert-hero__poster--placeholder {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(230, 57, 70, 0.3), transparent 70%), linear-gradient(160deg, #1a1a1a, #0a0a0a);
}
.concert-hero__poster--placeholder svg {
  width: 25%;
  max-width: 220px;
  color: var(--fg);
  opacity: 0.5;
}

.concert-hero__city {
  font-size: clamp(72px, 11vw, 200px);
  text-transform: uppercase;
  line-height: 0.85;
}
.concert-hero__city .kr {
  display: block;
  font-family: var(--font-kr);
  font-size: 0.22em;
  font-weight: 500;
  color: var(--fg-faint);
  letter-spacing: 0;
  margin-top: 16px;
}

.concert-hero__meta {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.concert-hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.concert-hero__meta-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.concert-hero__meta-value {
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.concert-hero__meta-value--accent { color: var(--accent); }

.concert-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-block: 100px;
  border-bottom: 1px solid var(--line);
}
.concert-section__label {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.concert-description {
  font-size: 18px;
  line-height: 1.7;
}
.concert-description.rich-text h2,
.concert-description.rich-text h3 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.concert-venue__name {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.concert-venue__address {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.concert-venue__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line);
  filter: grayscale(0.3) brightness(0.85);
}
.concert-venue__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.concert-venue__map-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.concert-hall img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: invert(0.92) hue-rotate(180deg);
}

.concert-tickets__price {
  font-family: var(--font-heading);
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1;
}
.concert-tickets__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 12px;
  font-weight: 500;
}
.concert-tickets__buy {
  margin-top: 32px;
  font-size: 16px;
  padding: 22px 40px;
}

.concert-tickets__notice {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

/ Tickets / FAQ / Contacts (rich text страницы)
.page-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero__spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}
.page-hero__title {
  position: relative;
  text-transform: uppercase;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.9;
}

.page-hero__subtitle {
  position: relative;
  margin-top: 20px;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--fg-muted);
  max-width: 60ch;
}

.rich-text {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
}
.rich-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin: 2em 0 0.5em;
  text-transform: uppercase;
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 1.6em 0 0.4em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.rich-text p { color: var(--fg-muted); margin-bottom: 1em; }
.rich-text ul, .rich-text ol { color: var(--fg-muted); padding-left: 24px; margin-bottom: 1em; }
.rich-text li { margin-bottom: 0.4em; }
.rich-text a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease-out);
}
.rich-text a:hover { color: var(--accent-warm); }
.rich-text strong { color: var(--fg); }

/ FAQ accordion
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg);
  gap: 24px;
  transition: color 0.3s var(--ease-out);
}
.faq-item__btn:hover { color: var(--accent); }

.faq-item__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
}
.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); border-color: var(--accent); }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-item__answer-inner {
  padding-bottom: 36px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 75ch;
}
.faq-item__answer-inner p { margin-bottom: 1em; }
.faq-item__answer-inner p:last-child { margin-bottom: 0; }

/ Contacts
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-row {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.contact-row__label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
}
.contact-row__value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.03em;
}
.contact-row__value a {
  color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.contact-row__value a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/ Footer
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-top: 100px;
  padding-bottom: 48px;
  margin-top: 120px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col--brand { gap: 16px; }

.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--fg-muted);
  max-width: 30ch;
  margin: 0;
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 12px;
}

.footer-col a,
.footer-col__btn {
  font-size: 15px;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease-out);
  text-align: left;
}
.footer-col a:hover,
.footer-col__btn:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}
.footer-credits { font-style: italic; }

/ Modal (privacy + lightbox)
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.modal[open],
.modal.is-open { pointer-events: auto; opacity: 1; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 60px 50px 50px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal.is-open .modal__panel { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.modal__close:hover { color: var(--accent); transform: rotate(90deg); }
.modal__close svg { width: 20px; height: 20px; }

.modal__body { color: var(--fg-muted); }

/* Lightbox */
.lightbox .modal__panel {
  background: transparent;
  border: 0;
  padding: 0;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--fg);
  transition: background 0.3s var(--ease-out);
  z-index: 1;
}
.lightbox__nav:hover { background: var(--accent); }
.lightbox__prev { left: -80px; }
.lightbox__next { right: -80px; }
@media (max-width: 1100px) {
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}

/ Age gate (18+)
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(12px);
}
.age-gate__panel {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 70px 50px 50px;
  max-width: 500px;
  text-align: center;
  overflow: hidden;
}
.age-gate__spotlight {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 110%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.4) 0%, transparent 65%);
  transform: translateX(-50%);
  filter: blur(40px);
  pointer-events: none;
}
.age-gate__title {
  position: relative;
  font-size: 120px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.age-gate__text {
  position: relative;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.age-gate__buttons {
  position: relative;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.age-gate__buttons .btn { width: 100%; }

/ Cookie banner
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 1500;
  box-shadow: var(--shadow-card);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 8px;
}

/ 404 page
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.error-page__spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}
.error-page__inner { position: relative; max-width: 700px; }
.error-page__mic {
  width: 140px;
  height: 220px;
  margin: 0 auto 40px;
  color: var(--fg);
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(96px, 18vw, 240px);
  line-height: 0.85;
  color: var(--accent);
  margin-bottom: 20px;
}
.error-page__title {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.error-page__text {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

/ Адаптив
@media (max-width: 1024px) {
  :root { --section-gap: 100px; }
  .container { padding: 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { height: 420px; }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .concerts-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .concert-section { grid-template-columns: 1fr; gap: 30px; }
  .concert-section__label { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; --header-height: 64px; }
  .container { padding: 0 20px; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 24px; }
  .burger { display: flex; }

  .hero__visual { height: 320px; }
  .hero__meta { gap: 24px; }
  .hero__meta-value { font-size: 22px; }

  .marquee__item { width: 240px; height: 160px; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .concert-hero__meta { gap: 36px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .modal__panel { padding: 50px 24px 30px; }
  .age-gate__panel { padding: 50px 24px 30px; }
  .age-gate__title { font-size: 88px; }
}

@media (max-width: 480px) {
  :root { --section-gap: 60px; }
  .hero__visual { height: 260px; }
  .hero__meta { gap: 18px; }
  .marquee__item { width: 200px; height: 130px; }
  .hero__ctas .btn { flex: 1 1 100%; }
}

/* Печать (на всякий случай) */
@media print {
  .grain, .cursor, .age-gate, .cookie-banner, .modal { display: none !important; }
}
