/* ===== Fonts ===== */
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Classic_DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Classic_ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===== City themes ===== */
:root {
  --bg: #fec80b;
  --fg: #000;
  --white: #fff;
  --artist-keyvisual: url('../img/keyvisuals/msk_s.jpg');
  --mobile-red-overlay:
    linear-gradient(
      to bottom,
      rgba(250, 0, 46, 0) 0,
      rgba(250, 0, 46, 0) 40vh,
      rgba(250, 0, 46, 0.15) 130vh,
      rgba(250, 0, 46, 0.15) 100%
    );
  --mobile-event-overlay:
    linear-gradient(
      to bottom,
      rgba(250, 0, 46, 0) 0,
      rgba(250, 0, 46, 0) 16vh,
      rgba(250, 0, 46, 0.08) 30vh,
      rgba(250, 0, 46, 0.15) 92vh,
      rgba(250, 0, 46, 0.15) 100%
    );
  --artist-footer-overlap-mobile: 34px;
  --card-radius: 39px;
  --side-pad: 24px;
  /* Legacy UI sizes kept for current mobile overrides */
  --fs-xs: 16px;
  --fs-sm: 21px;
  --fs-md: 34px;
  --fs-lg: 55px;
  /* Desktop modular scale — base 18px, golden-ratio half-steps */
  --type-2xs: 11.125px;
  --type-xs: 14.156px;
  --type-sm: 18px;
  --type-md: 22.902px;
  --type-lg: 29.124px;
  --type-xl: 37.082px;
  --type-2xl: 47.125px;
  --type-3xl: 59.984px;
  --type-4xl: 76.249px;
  --type-5xl: 97.003px;
  --type-6xl: 123.374px;
  --type-body: var(--type-sm);
}
body[data-city='msk'] { --bg: #fec80b; --artist-keyvisual: url('../img/keyvisuals/msk_s.jpg'); }
body[data-city='spb'] { --bg: #ff8ccd; --artist-keyvisual: url('../img/keyvisuals/spb_s.jpg'); }
body[data-city='nn']  { --bg: #ff5912; --artist-keyvisual: url('../img/keyvisuals/nn.jpg'); }

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  min-height: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'TT Commons', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
video { display: block; max-width: 100%; }

/* ===== 1. City bar ===== */
.city-bar {
  position: relative;
  padding: 24px 20px 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  pointer-events: none;
}
.city-bar__link {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #000;
  white-space: nowrap;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 20px;
  background: transparent;
  transition: background .15s;
  pointer-events: auto;
}
.city-bar__link.is-active {
  background: #fff;
}
.city-bar__link:hover {
  background: #fff;
}

/* ===== Header ===== */
.site-header {
  position: relative;
  padding: var(--side-pad) var(--side-pad) 0;
  z-index: 2;
  min-height: 160px;
}
.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* 2. Nav — left side, larger font, top padding = side padding */
.site-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 5;
}
.site-nav__link {
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
  transition: opacity .15s;
}
.site-nav__link:hover { opacity: .65; }

/* 3. Center logo — 20% smaller, shifted down to match nav top */
.site-logo {
  position: absolute;
  left: 50%;
  top: var(--side-pad);
  transform: translateX(-50%);
}
.site-logo img {
  height: 115px;
  width: auto;
  display: block;
}

/* Partner logos — right */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: -4px;
}
.partner-logo {
  display: block;
}
.partner-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.partner-logo--ozon img { height: 39px; }
.partner-logo--tbank img { height: 62px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 0 var(--side-pad) 20px;
  overflow: visible;
  min-height: 200px;
  margin-top: 0;
}

/* 4. Keyvisual — raised 200px up, overlaps black bar */
.hero__keyvisual-shell {
  position: fixed;
  left: 20px;
  top: -50px;
  width: 612px;
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  box-shadow: inset 0 -120px 116px -58px var(--bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__keyvisual-shell::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -10%;
  height: 24%;
  background: var(--bg);
  filter: blur(30px);
  opacity: 0.88;
  pointer-events: none;
  z-index: 1;
}
.hero__keyvisual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  will-change: transform;
  opacity: 0;
  transition: opacity .55s ease;
}
.hero__keyvisual.is-ready {
  opacity: 1;
}

/* Date/venue — not bold, white, tighter */
.hero__info {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero__dates {
  font-weight: 800;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  color: #000;
  margin: 0;
  line-height: 1;
}
.hero__venue {
  font-weight: 800;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  color: #000;
  margin: 6px 0 0;
  line-height: 1;
}
.hero__city-logo {
  display: none;
}

/* ===== Artist grid ===== */
.lineup {
  position: relative;
  z-index: 1;
  padding: 5px var(--side-pad) 60px;
}
.lineup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* 6. Card — white outline, no red tint */
.artist-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: filter .2s;
  box-shadow: 0 0 0 5px #fff;
}
.artist-card::after { display: none; }
.artist-card:hover {
  filter: brightness(1.08);
}
.artist-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Date — white, not bold. Name — large */
.artist-card__date {
  position: absolute;
  top: 16px;
  left: 20px;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  color: #fff;
  z-index: 2;
}
.artist-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-weight: 800;
  font-size: 41px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: #fff;
  z-index: 2;
}

/* Placeholder for missing photos */
.artist-card__photo--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #222 0%, #555 100%);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 96px var(--side-pad) 64px;
  background: #000;
  color: #fff;
  border-radius: 48px 48px 0 0;
  overflow: hidden;
}
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}
.site-footer::before {
  top: -140px;
  left: -90px;
  width: 320px;
  height: 320px;
  background: var(--bg);
  opacity: 0.22;
}
.site-footer::after {
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: #ff2d78;
  opacity: 0.16;
}
.footer-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}
.footer-section__heading {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}
.footer-section {
  display: grid;
  gap: 18px;
}
.footer-section__eyebrow {
  display: none;
}
.footer-section__title {
  margin: 0;
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0c;
}

.footer-card--partners {
  padding: 22px;
}
.partners-banner {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}
.partners-banner__image {
  width: 100%;
  height: auto;
}

.venue-map {
  background: #090909;
}
.venue-map__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.venue-map__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px 24px;
  font-size: var(--fs-xs);
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.78);
}
.venue-map__caption strong {
  color: #fff;
  font-weight: 600;
}
.venue-map__placeholder {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 120, 0.42), transparent 34%),
    radial-gradient(circle at left center, rgba(255, 200, 1, 0.26), transparent 36%),
    linear-gradient(135deg, #121212 0%, #050505 100%);
}
.venue-map__city {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.venue-map__placeholder strong {
  display: block;
  max-width: 12ch;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
}
.venue-map__placeholder p {
  margin: 0;
  max-width: 34ch;
  font-size: var(--fs-xs);
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-marquee {
  display: grid;
  gap: 14px;
}
.gallery-row {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: #080808;
  padding: 14px 0;
  contain: layout paint;
}
.gallery-row::before,
.gallery-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.gallery-row::before {
  left: 0;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0) 100%);
}
.gallery-row::after {
  right: 0;
  background: linear-gradient(270deg, #080808 0%, rgba(8, 8, 8, 0) 100%);
}
.gallery-row__track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: 14px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: gallery-marquee var(--row-duration, 64s) linear infinite;
}
.gallery-row--reverse .gallery-row__track {
  animation-direction: reverse;
}
.gallery-row--slow .gallery-row__track {
  animation-duration: 84s;
}
.gallery-row:hover .gallery-row__track {
  animation-play-state: paused;
}
.gallery-slide {
  position: relative;
  flex: 0 0 clamp(220px, 28vw, 360px);
  aspect-ratio: 1.22 / 1;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #141414;
}
.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 200, 1, 0.14) 0%, rgba(255, 200, 1, 0.04) 38%, rgba(255, 89, 18, 0.22) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
  z-index: 1;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.footer-meta {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5c400;
}
.footer-meta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    "left center right"
    "company center right";
  gap: 24px 40px;
  align-items: start;
}
.footer-meta__left {
  grid-area: left;
  display: flex;
  align-items: flex-start;
}
.footer-meta__center {
  grid-area: center;
  display: flex;
  justify-content: center;
}
.footer-meta__brand {
  display: inline-flex;
  color: #f5c400;
}
.footer-meta__brand img {
  width: 152px;
  height: auto;
  display: block;
}
.footer-meta__right {
  grid-area: right;
  display: grid;
  justify-items: end;
  gap: 28px;
  text-align: right;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5c400;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, opacity .18s ease;
}
.footer-social:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-social--vk svg {
  width: 17px;
  height: 17px;
}
.footer-meta__company {
  grid-area: company;
  margin: 0;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(245, 196, 0, 0.68);
}
.footer-meta__links,
.footer-meta__legals {
  display: grid;
  gap: 6px;
}
.footer-meta__link {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  color: #f5c400;
}
.footer-meta__link--email {
  text-transform: none;
}
.footer-meta__phone {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-meta__legal {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
  color: rgba(245, 196, 0, 0.68);
  text-transform: uppercase;
}

.scroll-top {
  display: none;
}

/* ===== Event / Artist page ===== */
.page-artist {
  position: relative;
}
.page-artist::before,
.page-artist::after {
  content: '';
  position: fixed;
  pointer-events: none;
}
.page-artist::before {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120vw 105vh at 100% 100%, rgba(214, 34, 28, 0.28) 0%, rgba(214, 34, 28, 0.18) 18%, rgba(214, 34, 28, 0.1) 34%, rgba(214, 34, 28, 0.045) 50%, rgba(214, 34, 28, 0) 72%);
  mix-blend-mode: multiply;
}
.page-artist::after {
  z-index: 0;
  top: 156px;
  left: 50%;
  right: auto;
  width: min(92vw, 1040px);
  height: min(92vw, 1040px);
  background: center/cover no-repeat;
  background-image: var(--artist-keyvisual);
  opacity: 0.18;
  transform: translate(-50%, -10%);
}
.event {
  position: relative;
  z-index: 2;
  padding: 34px var(--side-pad) 44px;
  max-width: 1360px;
  margin: 0 auto;
}
.event::after {
  content: none;
}
.event__back {
  display: none;
}
.event__hero {
  position: relative;
  display: grid;
  grid-template-areas:
    "content visual"
    "description visual";
  grid-template-columns: minmax(340px, 0.86fr) minmax(440px, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: 32px;
}
.event__hero::before {
  display: none;
}
.event__hero::after {
  content: none;
}
.event__content {
  grid-area: content;
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding-top: 36px;
}
.event__dates {
  display: block;
  margin-bottom: 2px;
}
.event__date {
  font-weight: 800;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #000;
}
.event__venue-inline {
  display: block;
  font-weight: 600;
  margin: 0 0 28px;
  font-size: clamp(20px, 1.8vw, 31px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 0, 0.86);
}
.event__age {
  display: none;
}
.event__name {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: clamp(84px, 8.8vw, 132px);
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: -0.035em;
  color: #000;
}
.event__description {
  grid-area: description;
  max-width: 46ch;
  margin: 0;
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.38;
  color: rgba(0, 0, 0, 0.82);
}
.event__description--lead {
  max-width: 46ch;
}
.event__description p {
  margin: 0;
}
.event__description p + p {
  margin-top: 1em;
}
.event__description p:last-child {
  margin-bottom: 0;
}
.event__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 0 26px;
}
.event__buttons--single {
  justify-content: flex-start;
}
.event__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 208px;
  width: 208px;
  min-height: 55px;
  padding: 0 18px;
  border-radius: 14px;
  border: 0;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  text-transform: none;
  text-decoration: none;
  line-height: 1.08;
  transition: transform .18s, opacity .18s, background-color .18s, color .18s, border-color .18s;
  white-space: normal;
  text-align: center;
}
.event__btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}
.event__btn[href="#"] {
  cursor: default;
}
.event__btn--cashback {
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.event__btn--ticket {
  background: #333;
  color: #fff;
}
.event__btn-artwork {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
.event__tour-preview {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.event__tour-title {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.event__tour-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: stretch;
}
.event__tour-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
.event__tour-pill--spb {
  background: #f298e7;
}
.event__tour-pill--nn {
  background: #ff5b14;
}
.event__visual {
  grid-area: visual;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.event__visual::before {
  content: none;
}
.event__visual::after {
  display: none;
}
.event__photo-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 0 0 auto;
  padding: 0;
  border-radius: 36px;
  background: transparent;
  overflow: hidden;
  isolation: auto;
}
.event__photo-wrap::after {
  content: none;
}
.event__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 36px;
  position: relative;
  z-index: 1;
}
.event__details {
  display: none;
}
.event__sidebar {
  display: grid;
  gap: 24px;
}
.event__sidebar[hidden],
.event__panel[hidden] {
  display: none;
}
.event__panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px 30px;
  background: #080808;
  color: #fff;
}
.event__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 120, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
  pointer-events: none;
}
.event__panel > * {
  position: relative;
  z-index: 1;
}
.event__panel-title {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.event__tour {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.event__tour li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.event__tour li:last-child {
  border-bottom: 0;
}
.event__tour span {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
}
.event__tour strong {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

/* ===== Info / FAQ page ===== */
.page-static {
  position: relative;
}
.info-page {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px var(--side-pad) 44px;
}
.page-faq .info-page {
  padding-top: 84px;
}
.page-info .info-page {
  padding-top: 84px;
}
.page-about .site-header {
  min-height: 150px;
}
.about-page {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px var(--side-pad) 56px;
  display: grid;
  gap: 18px;
}
.about-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.about-hero {
  display: grid;
  gap: 18px;
}
.about-hero__panel {
  padding: 34px 38px 30px;
  border-radius: 34px;
  background: #000;
  color: #fff;
}
.about-hero__eyebrow {
  margin: 0 0 16px;
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.about-hero__title {
  margin: 0;
  max-width: 720px;
  font-weight: 800;
  font-size: clamp(54px, 7vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--bg);
}
.about-hero__lead {
  margin: 22px 0 0;
  max-width: 780px;
  font-size: var(--type-md);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.9);
}
.about-video {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.about-video::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.about-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-video__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.about-video__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}
.about-video__caption strong {
  max-width: 560px;
  font-size: var(--type-md);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-video__caption span {
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-fact {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-fact__value {
  display: block;
  margin: 0 0 8px;
  font-size: var(--type-lg);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #000;
}
.about-fact__label {
  margin: 0;
  font-size: var(--type-xs);
  line-height: 1.32;
  color: rgba(0, 0, 0, 0.72);
}
.about-cities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-city {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-city--msk {
  background: rgba(255, 255, 255, 0.92);
}
.about-city--spb {
  background: #cdbce8;
}
.about-city--nn {
  background: #ff8d48;
}
.about-city__name {
  margin: 0 0 14px;
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.74);
}
.about-city__dates {
  margin: 0 0 10px;
  font-size: var(--type-lg);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #000;
}
.about-city__venue {
  margin: 0;
  font-size: var(--type-sm);
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.78);
}
.about-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
}
.about-quote {
  padding: 30px 32px;
  border-radius: 28px;
  background: #0c0c0c;
  color: #fff;
}
.about-quote__label {
  display: block;
  margin-bottom: 14px;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.about-quote blockquote {
  margin: 0;
  font-size: var(--type-xl);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.about-copy {
  padding: 30px 32px;
  border-radius: 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-copy p {
  margin: 0 0 18px;
  font-size: var(--type-sm);
  line-height: 1.42;
  color: rgba(0, 0, 0, 0.82);
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.about-card {
  padding: 32px 34px;
  border-radius: 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-card__label {
  display: block;
  margin-bottom: 14px;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.64);
}
.about-card__title {
  margin: 0 0 14px;
  font-size: var(--type-lg);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #000;
}
.about-card p {
  margin: 0 0 16px;
  font-size: var(--type-sm);
  line-height: 1.42;
  color: rgba(0, 0, 0, 0.82);
}
.about-card p:last-child {
  margin-bottom: 0;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #000;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.about-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-shot {
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  background: #000;
}
.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-shot--tall {
  min-height: 100%;
  grid-row: span 2;
}
.about-shot--wide {
  min-height: 320px;
}
.about-partner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  align-items: stretch;
}
.about-partner__panel,
.about-partner__copy {
  padding: 32px 34px;
  border-radius: 28px;
}
.about-partner__panel {
  background: #0c0c0c;
  color: #fff;
}
.about-partner__copy {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-partner__label {
  display: block;
  margin-bottom: 14px;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-partner__panel .about-partner__label {
  color: rgba(255, 255, 255, 0.6);
}
.about-partner__copy .about-partner__label {
  color: rgba(0, 0, 0, 0.64);
}
.about-partner__panel strong {
  display: block;
  font-size: var(--type-lg);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.about-partner__copy p {
  margin: 0;
  font-size: var(--type-sm);
  line-height: 1.42;
  color: rgba(0, 0, 0, 0.82);
}
.about-partner__logos {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}
.about-partner__logos img {
  display: block;
  height: 34px;
  width: auto;
}
.about-partner__logos img:last-child {
  height: 40px;
}
.page-info .info-page__hero {
  max-width: 760px;
  margin-bottom: 32px;
}
.page-info .info-page__title {
  font-size: var(--type-xl);
  line-height: 1;
  letter-spacing: -0.03em;
}
.info-page__hero {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 38px;
}
.info-page__title {
  margin: 0;
  font-weight: 800;
  font-size: var(--type-2xl);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
}
.faq-layout {
  display: block;
}
.faq-content {
  display: grid;
  gap: 54px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-section {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 0;
}
.faq-section__title {
  margin: 0;
  font-weight: 800;
  font-size: var(--type-xl);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #000;
}
.faq-section__intro {
  display: none;
}
.faq-card-stack {
  width: 100%;
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.74) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.12);
}
.faq-item > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 72px 24px 24px;
  font-weight: 700;
  font-size: clamp(var(--type-sm), 1.7vw, var(--type-md));
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #000;
  background: transparent;
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item > summary::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border-radius: 50%;
  background:
    linear-gradient(#000, #000) center / 20px 2px no-repeat,
    linear-gradient(#000, #000) center / 2px 20px no-repeat,
    rgba(0, 0, 0, 0.06);
  transition: background .18s ease, transform .18s ease;
}
.faq-item[open] > summary::before {
  background:
    linear-gradient(#000, #000) center / 20px 2px no-repeat,
    rgba(0, 0, 0, 0.08);
}
.faq-answer {
  padding: 0 24px 24px;
  max-width: none;
  font-size: var(--type-sm);
  line-height: 1.48;
  color: rgba(0, 0, 0, 0.84);
  background: transparent;
}
.faq-answer > *:first-child {
  margin-top: 0;
}
.faq-answer > *:last-child {
  margin-bottom: 0;
}
.faq-answer p,
.faq-answer ul {
  margin: 0 0 16px;
}
.faq-answer ul {
  padding-left: 24px;
}
.faq-answer li + li {
  margin-top: 10px;
}
.faq-answer strong {
  color: #000;
}
.faq-answer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}
.info-content {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.info-block {
  border-radius: 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 32px 34px;
}
.info-block__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: var(--type-xs);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}
.info-block p,
.info-block ul {
  margin: 0 0 18px;
  font-size: var(--type-sm);
  line-height: 1.42;
  color: rgba(0, 0, 0, 0.82);
}
.info-block p:last-child,
.info-block ul:last-child {
  margin-bottom: 0;
}
.info-block strong {
  color: #000;
  font-weight: 800;
}
.info-block a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}
.info-block--accent {
  background: #0c0c0c;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.info-block--accent p {
  color: rgba(255, 255, 255, 0.88);
}
.info-block--accent .info-block__title {
  color: rgba(255, 255, 255, 0.92);
}
.info-block--accent strong,
.info-block--accent a {
  color: #fff;
}
.info-note {
  margin: 8px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: var(--type-sm);
  font-weight: 800;
  line-height: 1.34;
  color: #000;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-card {
  border-radius: 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 28px 30px;
  display: grid;
  gap: 20px;
}
.contact-card__title {
  margin: 0;
  font-weight: 800;
  font-size: var(--type-xs);
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}
.contact-card__body {
  display: grid;
  gap: 12px;
}
.contact-card__body a,
.contact-card__body p {
  margin: 0;
  font-size: var(--type-sm);
  line-height: 1.36;
  color: rgba(0, 0, 0, 0.82);
}
.contact-card__body a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

/* ===== Festival About ===== */
.page-about {
  background:
    linear-gradient(180deg, #fec80b 0 36%, #f6f0e2 36% 100%);
}
.page-about--next {
  --about-next-flow-gap: 56px;
  --about-next-display-size: clamp(var(--type-lg), 3vw, var(--type-xl));
  background: #fec80b;
}
.festival-about {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px var(--side-pad) 96px;
  display: grid;
  gap: 48px;
}
.festival-about__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.festival-about__hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  min-height: 680px;
}
.festival-about__hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}
.festival-about__hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}
.festival-about__hero-overlay {
  position: absolute;
  inset: 38px 36px 36px;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  text-align: center;
}
.festival-about__eyebrow {
  margin: 0;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.festival-about__hero-title {
  margin: 0;
  max-width: 900px;
  font-weight: 800;
  font-size: clamp(72px, 8.8vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #fec80b;
}
.festival-about__geo {
  padding-top: 8px;
}
.festival-about__section-title {
  margin: 0 0 28px;
  text-align: center;
  font-weight: 800;
  font-size: var(--type-md);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #000;
}
.festival-about__city-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}
.festival-city {
  min-height: 248px;
  padding: 34px 28px 26px;
  display: grid;
  align-content: start;
  gap: 12px;
  color: #000;
  text-decoration: none;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}
.festival-city--spb {
  grid-column: auto;
  background: #ff8ccd;
  margin-top: 28px;
}
.festival-city--msk {
  grid-column: auto;
  background: #fec80b;
}
.festival-city--nn {
  grid-column: auto;
  background: #ff5912;
  margin-top: 52px;
}
.festival-city__name {
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
}
.festival-city__place {
  font-size: var(--type-sm);
  line-height: 1.2;
}
.festival-city__dates {
  font-size: var(--type-lg);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.festival-city__cta {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #000;
  font-size: var(--type-2xs);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.festival-about__intro {
  margin: 34px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: var(--type-md);
  line-height: 1.46;
  color: #000;
}
.festival-about__statement-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 32px;
  min-height: 620px;
  background: #000;
}
.festival-about__statement-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.festival-about__statement-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
}
.festival-about__statement-media figcaption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.festival-about__manifest {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 84px;
  align-items: start;
  padding: 8px 12px 72px;
}
.festival-about__manifest-copy p,
.festival-about__manifest-quote p {
  margin: 0;
}
.festival-about__manifest-copy {
  max-width: 500px;
  font-size: var(--type-md);
  line-height: 1.48;
  color: #000;
}
.festival-about__manifest-quote {
  max-width: 470px;
  justify-self: end;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #000;
}
.festival-about__quality {
  display: grid;
  gap: 34px;
}
.festival-about__lineup {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px 0 88px;
  background: #f6f0e2;
}
.festival-about__quality {
  padding-top: 28px;
  padding-bottom: 12px;
}
.festival-about__lineup-shell {
  display: grid;
  gap: 34px;
}
.festival-about__text-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.festival-about__text-block--narrow {
  max-width: 840px;
}
.festival-about__headline {
  margin: 0 0 22px;
  font-weight: 800;
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
}
.festival-about__text-block p {
  margin: 0 auto;
  font-size: var(--type-md);
  line-height: 1.48;
  color: #000;
}
.festival-about__text-block p + p {
  margin-top: 18px;
}
.festival-about__lineup-media {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}
.festival-about__shot {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #000;
}
.festival-about__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.festival-about__shot--wide {
  min-height: 430px;
}
.festival-about__shot--tall {
  min-height: 430px;
  grid-row: span 2;
}
.festival-about__quality-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 10px;
}
.festival-about__reasons {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.festival-about__reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.festival-about__reason-card {
  min-height: 164px;
  padding: 24px 24px 22px;
  display: grid;
  gap: 14px;
  align-content: start;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.festival-about__reason-card:nth-child(4n + 1) {
  background: #fff0a6;
}
.festival-about__reason-card:nth-child(4n + 2) {
  background: #ffd6eb;
}
.festival-about__reason-card:nth-child(4n + 3) {
  background: #ffe3cc;
}
.festival-about__reason-card:nth-child(4n + 4) {
  background: #f7f0df;
}
.festival-about__reason-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #000;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.festival-about__reason-card p {
  margin: 0;
  font-size: var(--type-sm);
  line-height: 1.42;
  color: #000;
}
.festival-about__shot--landscape {
  min-height: 340px;
}
.festival-about__shot--offset {
  transform: translateY(36px);
}
.page-about--next .festival-about {
  gap: var(--about-next-flow-gap);
}
.page-about--next .festival-about__hero {
  margin-top: 20px;
}
.page-about--next .festival-about__geo {
  display: grid;
  gap: var(--about-next-flow-gap);
  padding-top: 0;
}
.page-about--next .festival-about__section-title {
  margin: 0;
  margin-bottom: 0;
  font-size: var(--about-next-display-size);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 980px;
  margin-inline: auto;
}
.page-about--next .festival-about__city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.page-about--next .festival-city {
  display: grid;
  grid-template-rows: clamp(192px, 18vw, 236px) 1fr;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  gap: 0;
  margin-top: 0;
  overflow: hidden;
  border: none;
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}
.page-about--next .festival-city__media {
  display: block;
  min-height: 0;
}
.page-about--next .festival-city__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about--next .festival-city__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 24px 24px 22px;
  gap: 10px;
}
.page-about--next .festival-city--spb .festival-city__body {
  background: #ffa2d7;
}
.page-about--next .festival-city--msk .festival-city__body {
  background: #fec80b;
}
.page-about--next .festival-city--nn .festival-city__body {
  background: #ff7a2f;
}
.page-about--next .festival-city__name {
  font-size: clamp(var(--type-lg), 2.5vw, var(--type-xl));
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: none;
  color: #000;
}
.page-about--next .festival-city__place {
  font-size: var(--type-sm);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0, 0, 0, 0.72);
}
.page-about--next .festival-city__dates {
  margin-top: auto;
  font-size: var(--type-md);
  line-height: 1;
  letter-spacing: -0.03em;
}
.page-about--next .festival-city__cta {
  margin-top: 12px;
  min-height: 42px;
  padding: 0 24px;
  font-size: var(--type-xs);
  letter-spacing: 0.08em;
  transition: background-color .18s ease, color .18s ease;
}
@media (hover: hover) {
  .page-about--next .festival-city:hover .festival-city__cta {
    background: #fff;
    color: #000;
  }
}
.page-about--next .festival-city:focus-visible .festival-city__cta {
  background: #fff;
  color: #000;
}
.page-about--next .festival-about__article {
  display: grid;
  gap: var(--about-next-flow-gap);
}
.page-about--next .festival-about__article-head {
  width: min(760px, 100%);
  margin: 0 auto;
}
.page-about--next .festival-about__lead {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #000;
}
.page-about--next .festival-about__article-body {
  width: min(900px, 100%);
  margin: 0 auto;
  column-count: 1;
  column-gap: 0;
}
.page-about--next .festival-about__article-body--wide {
  width: min(900px, 100%);
}
.page-about--next .festival-about__article-body p {
  break-inside: avoid;
  margin: 0 0 20px;
  font-size: var(--type-sm);
  line-height: 1.44;
  color: #000;
}
.page-about--next .festival-about__article-body p:last-child {
  margin-bottom: 0;
}
.page-about--next .festival-about__statement-media figcaption {
  top: 50%;
  left: 24px;
  right: 24px;
  bottom: auto;
  transform: translateY(-50%);
  max-width: none;
  text-align: center;
  font-weight: 800;
  font-size: clamp(var(--type-2xl), 5vw, var(--type-4xl));
  line-height: 0.9;
}
.page-about--next .festival-about__statement-shell {
  position: relative;
  z-index: 0;
}
.page-about--next .festival-about__statement-shell::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: calc(-1 * var(--about-next-flow-gap));
  width: 100vw;
  transform: translateX(-50%);
  background: #f6f0e2;
  z-index: -1;
}
.page-about--next .festival-about__chapter-head {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}
.page-about--next .festival-about__chapter-head .festival-about__headline {
  margin: 0;
  font-size: var(--about-next-display-size);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: none;
}
.page-about--next .festival-about__lineup {
  padding: var(--about-next-flow-gap) 0;
  background: linear-gradient(180deg, #f6f0e2 0 44%, #fec80b 44% 100%);
}
.page-about--next .festival-about__lineup-shell {
  gap: var(--about-next-flow-gap);
}
.page-about--next .festival-about__artist-callout {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-about--next .festival-about__artist-callout p {
  margin: 0;
  font-size: var(--about-next-display-size);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #000;
  text-align: center;
}
.page-about--next .festival-about__lineup-media {
  margin: 0;
  margin-top: 0;
}
.page-about--next .festival-about__loop-video {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}
.page-about--next .festival-about__statement-media,
.page-about--next .festival-about__artist-callout,
.page-about--next .festival-about__loop-video {
  margin-top: 0;
  margin-bottom: 0;
}
.page-about--next .festival-about__loop-shell {
  position: relative;
  left: auto;
  top: auto;
  width: min(612px, calc(100vw - (2 * var(--side-pad))));
  margin: 0 auto;
  transform: none !important;
  aspect-ratio: 1 / 1;
  box-shadow:
    inset 0 108px 96px -58px var(--bg),
    inset 0 -120px 116px -58px var(--bg);
}
.page-about--next .festival-about__loop-shell::before {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: -10%;
  height: 24%;
  background: var(--bg);
  filter: blur(30px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.page-about--next .site-footer {
  margin-top: 0;
}
@keyframes gallery-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-row__track {
    animation: none;
    transform: none !important;
  }
}

/* Mobile city (hidden on desktop) */
.mobile-city {
  display: none;
}

/* ===== Hamburger (hidden on desktop) ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 12px;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: transform .3s, opacity .2s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 5px; }
.hamburger span:nth-child(3) { top: 10px; }
.hamburger.is-open span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* ===== Tablet ===== */
@media (max-width: 900px) {
  .lineup__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__keyvisual-shell {
    width: 400px;
    left: -30px;
    top: -100px;
  }
  .artist-card__name { font-size: var(--fs-sm); }
  .site-footer {
    padding-top: 72px;
  }
  .page-about--next .festival-about__city-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 560px;
    margin-inline: auto;
  }
  .page-about--next .festival-city--msk {
    order: 1;
  }
  .page-about--next .festival-city--spb {
    order: 2;
  }
  .page-about--next .festival-city--nn {
    order: 3;
  }
  .page-about--next .festival-city {
    width: 100%;
  }
  .page-about--next .festival-about__lineup {
    width: calc(100% + (var(--side-pad) * 2));
    margin-left: calc(var(--side-pad) * -1);
    padding: var(--about-next-flow-gap) var(--side-pad);
  }
  .page-about--next .festival-about__loop-video {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .city-bar {
    padding: 20px 18px 14px;
    gap: 8px;
  }

  .city-bar__link {
    padding: 7px 12px;
    font-size: var(--type-xs);
  }

  .site-header {
    min-height: 136px;
  }

  .site-logo {
    top: calc(var(--side-pad) + 8px);
  }

  .site-logo img {
    height: 96px;
  }

  .site-nav {
    top: -14px;
    gap: 4px;
  }

  .site-nav__link {
    font-size: var(--type-xs);
    line-height: 1.1;
  }

  .partner-logos {
    top: -14px;
    gap: 18px;
  }

  .partner-logo--ozon img,
  .partner-logo--tbank img {
    height: 30px;
  }

  .page-artist .event__content {
    max-width: 620px;
  }

  .page-artist .event__description,
  .page-artist .event__description--lead {
    max-width: 50ch;
  }

  .hero__keyvisual-shell {
    width: 520px;
    left: 0;
    top: -36px;
  }

  .hero__info {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .lineup__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .artist-card__date {
    top: 14px;
    left: 16px;
  }

  .artist-card__name {
    padding: 16px;
    font-size: clamp(28px, 3vw, 36px);
  }

  .footer-meta__grid {
    gap: 20px;
  }
}

@media (min-width: 601px) {
  .site-logo {
    top: calc(var(--side-pad) + 20px);
  }

  .site-nav {
    position: relative;
    top: -74px;
  }

  .partner-logos {
    align-items: flex-start;
    position: relative;
    top: -74px;
    margin-top: 0;
    gap: 48px;
  }

  .partner-logo {
    display: flex;
    align-items: flex-start;
  }

  .partner-logo--ozon img,
  .partner-logo--tbank img {
    height: 39px;
  }

  .page-artist .event__photo-wrap {
    transform: translateY(20px);
  }

  body {
    font-size: var(--type-body);
    line-height: 1.35;
  }

  .city-bar__link,
  .site-nav__link,
  .hero__dates,
  .hero__venue,
  .artist-card__date,
  .footer-section__title,
  .event__btn,
  .event__tour-pill,
  .footer-meta__phone {
    font-size: var(--type-body);
  }

  .site-nav__link {
    line-height: 1.1;
  }

  .artist-card__date {
    font-size: var(--type-md);
  }

  .artist-card__name {
    font-size: var(--type-2xl);
  }

  .venue-map__caption,
  .venue-map__placeholder p {
    font-size: var(--type-body);
  }

  .venue-map__city,
  .event__panel-title,
  .footer-meta__company,
  .footer-meta__link,
  .footer-meta__legal {
    font-size: var(--type-xs);
  }

  .venue-map__placeholder strong {
    font-size: clamp(var(--type-xl), 4vw, var(--type-3xl));
  }

  .event__date {
    font-size: clamp(var(--type-2xl), 4.8vw, var(--type-4xl));
  }

  .event__venue-inline {
    font-size: clamp(var(--type-md), 1.8vw, var(--type-lg));
  }

  .event__name {
    font-size: clamp(var(--type-4xl), 8.8vw, var(--type-6xl));
  }

  .event__description {
    max-width: 42ch;
    font-size: var(--type-body);
    line-height: 1.42;
  }

  .event__tour-title {
    font-size: var(--type-md);
  }

  .event__tour span,
  .event__tour strong {
    font-size: clamp(var(--type-body), 1.45vw, var(--type-md));
  }
}

@media (min-width: 901px) {
  .partner-logo--tbank {
    margin-left: 12px;
  }
}

@media (max-width: 820px) and (min-width: 601px) {
  .city-bar {
    padding: 18px 16px 12px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .city-bar__link {
    padding: 8px 12px;
    font-size: var(--type-xs);
  }

  .site-header {
    padding: 16px var(--side-pad) 0;
    min-height: auto;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 16px;
    row-gap: 18px;
  }

  .site-nav {
    position: static;
    top: auto;
    gap: 4px;
  }

  .site-nav__link {
    font-size: var(--type-xs);
    line-height: 1.12;
  }

  .partner-logos {
    position: static;
    top: auto;
    margin-top: 0;
    gap: 14px;
    justify-self: end;
  }

  .partner-logo--ozon img,
  .partner-logo--tbank img {
    height: 28px;
  }

  .site-logo {
    position: static;
    grid-column: 1 / -1;
    justify-self: center;
    top: auto;
    left: auto;
    transform: none;
  }

  .site-logo img {
    height: 98px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero__keyvisual-shell {
    width: min(56vw, 430px);
    left: 16px;
    top: -26px;
  }

  .hero__info {
    padding-top: 54px;
    padding-bottom: 32px;
  }

  .hero__dates,
  .hero__venue {
    font-size: var(--type-sm);
  }

  .site-footer {
    border-radius: 36px 36px 0 0;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .site-nav {
    top: -62px;
  }

  .partner-logos {
    top: -62px;
  }

  .page-artist .event__hero {
    column-gap: 76px;
    row-gap: 42px;
  }

  .page-artist .event__hero {
    grid-template-columns: minmax(440px, 1fr) minmax(500px, 0.94fr);
  }

  .page-artist .event__content {
    max-width: 680px;
  }

  .page-artist .event__description,
  .page-artist .event__description--lead {
    max-width: 56ch;
  }
}

@media (max-width: 1799px) and (min-width: 1201px) {
  .site-nav {
    top: -64px;
  }

  .partner-logos {
    top: -64px;
  }

  .page-artist .event__hero {
    row-gap: 42px;
  }

  .page-artist .event__content {
    max-width: 660px;
  }

  .page-artist .event__description,
  .page-artist .event__description--lead {
    max-width: 54ch;
  }
}

@media (min-width: 901px) {
  .hero__city-logo {
    --hero-city-logo-width: clamp(134px, 10.67vw, 167px);
    display: block;
    position: absolute;
    top: 44px;
    right: calc(var(--side-pad) + 245px - var(--hero-city-logo-width));
    z-index: 1;
    width: var(--hero-city-logo-width);
    pointer-events: none;
  }

  .hero__city-logo img {
    width: 100%;
    height: auto;
  }

  body[data-city='nn'] .hero__city-logo {
    --hero-city-logo-width: clamp(118px, 9vw, 146px);
    top: 44px;
    left: calc(50% + 108px);
    right: auto;
  }
}

@media (min-width: 1800px) {
  :root {
    --side-pad: 34px;
    --card-radius: 42px;
  }

  .city-bar {
    padding: 26px 28px 18px;
    gap: 16px;
  }

  .city-bar__link {
    padding: 9px 18px;
    font-size: var(--type-body);
  }

  .site-header {
    min-height: 178px;
    padding-top: 30px;
  }

  .site-logo {
    top: 26px;
  }

  .site-logo img {
    height: 132px;
  }

  .site-nav {
    top: -84px;
    gap: 6px;
  }

  .site-nav__link {
    font-size: var(--type-sm);
  }

  .partner-logos {
    top: -84px;
    gap: 24px;
  }

  .partner-logo--ozon img,
  .partner-logo--tbank img {
    height: 44px;
  }

  .hero {
    padding-bottom: 28px;
    min-height: 260px;
  }

  .hero__keyvisual-shell {
    left: 34px;
    top: -64px;
    width: 760px;
  }

  .hero__keyvisual-shell {
    box-shadow: inset 0 -134px 126px -60px var(--bg);
  }

  .hero__keyvisual-shell::after {
    bottom: -12%;
    height: 28%;
    filter: blur(36px);
  }

  .hero__keyvisual {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 92px, #000 calc(100% - 92px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 92px, #000 calc(100% - 92px), transparent 100%);
  }

  .hero__info {
    padding-top: 74px;
    padding-bottom: 62px;
  }

  .hero__dates,
  .hero__venue {
    font-size: var(--type-md);
  }

  .lineup {
    max-width: 1760px;
    margin: 0 auto;
    padding-bottom: 76px;
  }

  .lineup__grid {
    gap: 20px;
  }

  .artist-card__date {
    top: 18px;
    left: 22px;
    font-size: var(--type-lg);
  }

  .artist-card__name {
    padding: 24px;
    font-size: clamp(42px, 2.6vw, 54px);
  }

  .site-footer {
    margin-top: 34px;
    padding: 112px var(--side-pad) 76px;
    border-radius: 56px 56px 0 0;
  }

  .footer-stack,
  .footer-meta__grid {
    max-width: 1760px;
    margin: 0 auto;
  }

  .gallery-slide {
    flex-basis: clamp(280px, 20vw, 420px);
  }

  .page-artist::after {
    top: 132px;
    width: min(84vw, 1280px);
    height: min(84vw, 1280px);
    opacity: 0.2;
  }

  .event {
    max-width: 1560px;
    padding: 46px var(--side-pad) 58px;
  }

  .event__hero {
    grid-template-columns: minmax(420px, 0.92fr) minmax(620px, 1fr);
    gap: 120px;
  }

  .event__content {
    max-width: 680px;
    padding-top: 44px;
  }

  .event__date {
    font-size: clamp(64px, 4vw, 88px);
  }

  .event__venue-inline {
    margin-bottom: 32px;
    font-size: clamp(24px, 1.7vw, 36px);
  }

  .event__name {
    font-size: clamp(104px, 8vw, 156px);
  }

  .event__description,
  .event__description--lead {
    max-width: 52ch;
    font-size: clamp(19px, 1.1vw, 24px);
  }

  .event__buttons {
    gap: 16px;
  }

  .event__btn {
    flex-basis: 220px;
    width: 220px;
    min-height: 60px;
    font-size: 19px;
  }

  .event__photo-wrap {
    width: min(100%, 740px);
    border-radius: 42px;
  }

  .event__photo {
    border-radius: 42px;
  }

  .info-page {
    max-width: 1520px;
  }

  .about-page {
    max-width: 1500px;
    gap: 22px;
  }

  .about-shell {
    max-width: 1320px;
  }

  .about-hero__title {
    max-width: 860px;
    font-size: clamp(68px, 6.5vw, 118px);
  }

  .about-hero__lead {
    max-width: 860px;
  }

  .festival-about {
    max-width: 1520px;
    padding: 36px var(--side-pad) 112px;
  }

  .festival-about__shell {
    width: min(1360px, 100%);
  }

  .festival-about__hero-title {
    max-width: 1040px;
    font-size: clamp(92px, 7.4vw, 148px);
  }

  .festival-about__headline {
    font-size: clamp(50px, 4vw, 84px);
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .page-artist .event {
    padding: 8px var(--side-pad) 64px;
  }

  .page-artist .event__hero {
    grid-template-areas:
      "content"
      "visual"
      "description";
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .page-artist .event__content,
  .page-artist .event__description {
    max-width: none;
  }

  .page-artist .event__content {
    padding-top: 0;
  }

  .page-artist .event__name {
    font-size: clamp(68px, 9.5vw, 96px);
  }

  .page-artist .event__venue-inline {
    margin-bottom: 20px;
  }

  .page-artist .event__visual {
    justify-content: center;
  }

  .page-artist .event__photo-wrap {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .page-artist .event__photo-wrap::before {
    left: -3%;
    right: -3%;
    top: -8%;
    height: 20%;
    filter: blur(24px);
  }

  .page-artist .event__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page-artist .event__buttons--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-artist .event__btn {
    flex: initial;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  :root {
    --adaptive-mobile-pad: clamp(16px, 2.4vw, 24px);
    --m-type-2xs: 11.13px;
    --m-type-xs: 14.16px;
    --m-type-sm: 18px;
    --m-type-md: 22.9px;
    --m-type-lg: 29.12px;
    --m-type-xl: 37.08px;
    --m-type-2xl: 47.13px;
    --m-type-3xl: 59.98px;
    --m-type-4xl: 76.25px;
    --m-type-body: var(--m-type-sm);
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 10000;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 8px;
  }

  .city-bar {
    display: none;
  }

  .mobile-city {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 9999;
    position: relative;
    height: 30px;
  }

  .mobile-city__pill {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
  }

  .mobile-city .city-bar__current {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: var(--m-type-sm);
    text-transform: none;
    letter-spacing: 0;
  }

  .mobile-city .city-bar__current::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    flex-shrink: 0;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
  }

  .mobile-city .city-bar__dropdown {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding-top: 6px;
    position: static;
    background: none;
    max-height: none;
    overflow: visible;
  }

  .mobile-city .city-bar__dropdown a {
    padding: 4px 0;
    font-weight: 600;
    font-size: var(--m-type-sm);
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
  }

  .mobile-city.is-open .city-bar__dropdown {
    display: flex;
  }

  .mobile-city.is-open .mobile-city__pill {
    padding-bottom: 10px;
  }

  .site-header {
    position: relative;
    padding: 16px var(--adaptive-mobile-pad) 0;
    min-height: auto;
    z-index: 100;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    position: relative;
    column-gap: 12px;
    row-gap: 0;
  }

  .partner-logos {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    z-index: 1;
    margin-top: 38px;
    margin-bottom: 0;
    gap: 0;
    padding: 0;
    position: static;
  }

  .partner-logo {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .partner-logo--ozon {
    grid-column: 2;
  }

  .partner-logo--tbank {
    grid-column: 4;
  }

  .partner-logo img,
  .partner-logo--ozon img,
  .partner-logo--tbank img {
    display: block;
    width: auto;
    max-width: none;
    height: clamp(24px, 3vw, 28px);
  }

  .site-logo {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    transform: none;
    width: auto;
    z-index: 1;
    margin-top: 52px;
    margin-bottom: 52px;
  }

  .site-logo img {
    height: clamp(72px, 10vw, 88px);
    width: auto;
    max-width: none;
  }

  .site-nav {
    display: none;
    position: absolute !important;
    top: -16px !important;
    left: calc(-1 * var(--adaptive-mobile-pad)) !important;
    right: calc(-1 * var(--adaptive-mobile-pad)) !important;
    width: auto !important;
    padding: 64px var(--adaptive-mobile-pad) 20px !important;
    gap: 8px;
    z-index: 9998 !important;
    background: #000 !important;
    border-radius: 0 !important;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    white-space: nowrap;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    font-size: var(--m-type-sm);
    color: var(--bg);
    line-height: 1.1;
  }

  .hero__dates,
  .hero__venue {
    font-size: var(--m-type-md);
  }

  .artist-card__date {
    font-size: var(--m-type-sm);
  }

  .artist-card__name {
    font-size: clamp(32px, 4.8vw, var(--m-type-2xl));
    line-height: 0.92;
  }

  .footer-section__title {
    font-size: var(--m-type-sm);
    letter-spacing: 0.14em;
  }

  .event__date {
    font-size: clamp(var(--m-type-lg), 5vw, var(--m-type-xl));
    line-height: 0.9;
  }

  .event__venue-inline,
  .event__age {
    font-size: var(--m-type-body);
    letter-spacing: -0.02em;
  }

  .event__name {
    font-size: clamp(var(--m-type-2xl), 7vw, var(--m-type-3xl));
    line-height: 0.84;
  }

  .event__tour-title {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .about-hero__title {
    font-size: clamp(42px, 10vw, 68px);
  }

  .about-video__caption strong {
    font-size: var(--m-type-md);
    line-height: 1.08;
  }

  .about-quote blockquote,
  .about-card__title,
  .about-partner__panel strong {
    font-size: var(--m-type-xl);
    line-height: 1;
  }

  .about-city__dates {
    font-size: var(--m-type-lg);
  }

  .page-info .info-page__title {
    font-size: var(--m-type-lg);
    line-height: 1;
  }

  .info-page__title {
    font-size: var(--m-type-2xl);
  }

  .faq-section__title {
    font-size: var(--m-type-xl);
  }

  .festival-about__hero-title {
    font-size: clamp(42px, 11vw, 78px);
    line-height: 0.86;
  }

  .festival-about__section-title {
    font-size: var(--m-type-md);
  }

  .festival-about__headline {
    font-size: var(--m-type-xl);
    line-height: 1;
  }

  .festival-city__dates {
    font-size: var(--m-type-lg);
  }
}

@media (max-width: 1023px) and (min-width: 601px) {
  .hero {
    min-height: auto;
    padding: 0 0 24px;
    overflow: hidden;
  }

  .hero__keyvisual-shell {
    position: relative;
    left: 50%;
    top: auto;
    width: min(58vw, 520px);
    max-width: none;
    margin-top: 72px;
    transform: translateX(-50%) !important;
    box-shadow: inset 0 -106px 112px -54px var(--bg);
  }

  .hero__keyvisual-shell::after {
    bottom: -10%;
    height: 26%;
    filter: blur(30px);
  }

  .hero__keyvisual {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%);
  }

  .hero__info {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    padding: 0 var(--adaptive-mobile-pad);
    text-align: center;
  }

  body[data-city='nn'] .hero__city-logo {
    display: block;
    position: absolute;
    top: 88px;
    left: 50%;
    z-index: 2;
    width: min(24vw, 150px);
    transform: translateX(-50%);
    pointer-events: none;
  }

  body[data-city='nn'] .hero__city-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .page-artist .event {
    padding: 8px var(--adaptive-mobile-pad) 64px;
  }

  .page-artist .event__hero {
    grid-template-areas:
      "content"
      "visual"
      "description";
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
  }

  .page-artist .event__content,
  .page-artist .event__visual,
  .page-artist .event__description {
    width: 100%;
    max-width: 560px;
    justify-self: center;
  }

  .page-artist .event__content {
    padding-top: 0;
  }

  .page-artist .event__dates {
    margin-bottom: 6px;
  }

  .page-artist .event__date {
    font-size: clamp(42px, 7vw, 58px);
  }

  .page-artist .event__venue-inline {
    margin-bottom: 18px;
    font-size: var(--m-type-sm);
  }

  .page-artist .event__name {
    margin-bottom: 10px;
    font-size: clamp(54px, 9vw, 76px);
  }

  .page-artist .event__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 0;
  }

  .page-artist .event__buttons--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-artist .event__btn {
    flex: initial;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 14px;
  }

  .page-artist .event__btn--cashback {
    padding: 0 16px;
    background: #333;
  }

  .page-artist .event__btn-artwork {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
  }

  .page-artist .event__tour-preview {
    gap: 12px;
    margin-top: 18px;
  }

  .page-artist .event__tour-pills {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-artist .event__tour-pill {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: 16px;
  }

  .page-artist .event__visual {
    justify-content: center;
    align-items: flex-start;
  }

  .page-artist .event__photo-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform: none;
    border-radius: 30px;
  }
  .page-artist .event__photo {
    border-radius: 30px;
  }

  .page-artist .event__description {
    margin: 0 auto;
    font-size: var(--m-type-sm);
    line-height: 1.42;
  }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  :root {
    --side-pad: 16px;
    --card-radius: 20px;
    --mobile-top-to-partners-gap: calc(48px * 0.8);
    --mobile-header-stack-gap: calc(48px * 1.2);
    --m-type-2xs: 11.13px;
    --m-type-xs: 14.16px;
    --m-type-sm: 18px;
    --m-type-md: 22.9px;
    --m-type-lg: 29.12px;
    --m-type-xl: 37.08px;
    --m-type-2xl: 47.13px;
    --m-type-3xl: 59.98px;
    --m-type-4xl: 76.25px;
    --m-type-body: var(--m-type-sm);
  }

  .page-artist::before,
  .page-artist::after {
    content: none;
  }

  .hamburger { display: block; }
  .city-bar { display: none; }

  /* Header: 2 rows — [city-pill | hamburger] then [empty | ozon | empty | tbank | empty], logo below */
  .site-header {
    position: relative;
    padding: 16px var(--side-pad) 0;
    min-height: auto;
    z-index: 100;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    position: relative;
    row-gap: 0;
    column-gap: 12px;
  }

  /* City — top-left, single white pill for all cities */
  .mobile-city {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 9999;
    position: relative;
    height: 30px;
  }
  .mobile-city__pill {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 10001;
  }
  .mobile-city .city-bar__current {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--m-type-sm);
    gap: 10px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .mobile-city .city-bar__current::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin-top: -4px;
    flex-shrink: 0;
  }
  .mobile-city .city-bar__dropdown {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
    position: static;
    left: auto;
    transform: none;
    background: none;
    max-height: none;
    overflow: visible;
    width: auto;
  }
  .mobile-city .city-bar__dropdown a {
    font-weight: 600;
    font-size: var(--m-type-sm);
    text-transform: none;
    letter-spacing: 0;
    padding: 4px 0;
    text-align: left;
    white-space: nowrap;
  }
  .mobile-city.is-open .city-bar__dropdown {
    display: flex;
  }
  .mobile-city.is-open .mobile-city__pill {
    padding-bottom: 10px;
  }

  /* Partner logos — 5 equal clusters: empty / ozon / empty / tbank / empty */
  .partner-logos {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    z-index: 1;
    margin-top: var(--mobile-top-to-partners-gap);
    margin-bottom: 0;
    gap: 0;
    padding: 0;
  }
  .partner-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    min-width: 0;
    box-sizing: border-box;
  }
  .partner-logo--ozon {
    grid-column: 2;
  }
  .partner-logo--tbank {
    grid-column: 4;
  }
  .partner-logo img {
    display: block;
    width: auto;
    height: 28px;
    max-width: none;
  }
  .partner-logo--ozon img {
    height: 28px;
  }
  .partner-logo--tbank img {
    height: 28px;
  }

  /* Hamburger — right, row 1 */
  .hamburger {
    position: relative;
    z-index: 10000;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 8px;
  }
  .hamburger.is-open span {
    background: var(--bg);
  }

  /* Festival logo — centered below partner row with equal top/bottom spacing */
  .site-logo {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    transform: none;
    width: auto;
    z-index: 1;
    margin-top: var(--mobile-header-stack-gap);
    margin-bottom: var(--mobile-header-stack-gap);
  }
  .site-logo img {
    height: 88px;
    width: auto;
    max-width: none;
  }

  .site-header {
    padding-bottom: 0;
  }

  /* Nav dropdown — black bar, yellow text */
  .site-nav {
    display: none;
    position: absolute !important;
    top: -16px !important;
    left: calc(-1 * var(--side-pad)) !important;
    right: calc(-1 * var(--side-pad)) !important;
    width: auto !important;
    background: #000 !important;
    padding: 64px var(--side-pad) 20px !important;
    gap: 8px;
    z-index: 9998 !important;
    flex-direction: column;
    align-items: flex-end;
    border-radius: 0 !important;
    text-align: right;
    white-space: nowrap;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__link {
    font-size: var(--m-type-sm);
    color: var(--bg);
  }

  .info-page {
    padding: 8px var(--side-pad) 36px;
  }
  .page-faq .info-page,
  .page-info .info-page {
    padding-top: 8px;
  }
  .about-page {
    padding: 8px var(--side-pad) 36px;
    gap: 12px;
  }
  .about-hero,
  .about-facts,
  .about-cities,
  .about-statement,
  .about-split,
  .about-partner {
    grid-template-columns: 1fr;
  }
  .about-hero__panel,
  .about-quote,
  .about-copy,
  .about-card,
  .about-partner__panel,
  .about-partner__copy {
    padding: 24px 18px;
    border-radius: 24px;
  }
  .about-video {
    border-radius: 24px;
  }
  .about-video__media {
    aspect-ratio: 4 / 5;
  }
  .about-video__label {
    top: 14px;
    left: 14px;
    min-height: 34px;
    padding: 0 12px;
    font-size: var(--m-type-2xs);
  }
  .about-video__caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    gap: 8px;
  }
  .about-video__caption strong {
    max-width: none;
    font-size: var(--m-type-md);
    line-height: 1.08;
  }
  .about-video__caption span {
    font-size: var(--m-type-2xs);
    letter-spacing: 0.12em;
  }
  .about-hero__eyebrow,
  .about-card__label,
  .about-quote__label,
  .about-partner__label,
  .about-city__name {
    font-size: var(--m-type-2xs);
  }
  .about-hero__title {
    max-width: none;
    font-size: clamp(42px, 16vw, 68px);
  }
  .about-hero__lead {
    margin-top: 18px;
    font-size: var(--m-type-sm);
    line-height: 1.34;
  }
  .about-fact {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }
  .about-fact__value {
    font-size: var(--m-type-xl);
  }
  .about-fact__label {
    font-size: var(--m-type-xs);
  }
  .about-city {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }
  .about-city__dates {
    font-size: var(--m-type-lg);
  }
  .about-city__venue {
    font-size: var(--m-type-sm);
    line-height: 1.3;
  }
  .about-quote blockquote,
  .about-card__title,
  .about-partner__panel strong {
    font-size: var(--m-type-xl);
    line-height: 1;
  }
  .about-copy p,
  .about-card p,
  .about-partner__copy p {
    font-size: var(--m-type-sm);
    line-height: 1.36;
  }
  .about-tags {
    gap: 6px;
    margin-top: 16px;
  }
  .about-tag {
    min-height: 30px;
    padding: 0 12px;
    font-size: var(--m-type-2xs);
  }
  .about-media-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-shot,
  .about-shot--wide,
  .about-shot--tall {
    min-height: 170px;
    border-radius: 20px;
  }
  .about-shot--tall {
    grid-row: auto;
  }
  .about-partner__logos {
    margin-top: 18px;
    gap: 16px;
  }
  .about-partner__logos img {
    height: 28px;
  }
  .about-partner__logos img:last-child {
    height: 34px;
  }
  .page-info .info-page__hero {
    margin-bottom: 24px;
  }
  .page-info .info-page__title {
    font-size: var(--m-type-lg);
    line-height: 1;
  }
  .info-page__hero {
    margin-bottom: 28px;
  }
  .info-page__title {
    font-size: var(--m-type-2xl);
  }
  .faq-section__title {
    font-size: var(--m-type-xl);
  }
  .faq-item > summary {
    padding: 18px 58px 18px 18px;
    font-size: clamp(var(--m-type-sm), 5vw, var(--m-type-md));
    line-height: 1.16;
  }
  .faq-item > summary::before {
    width: 32px;
    height: 32px;
    right: 12px;
    margin-top: -16px;
    background:
      linear-gradient(#000, #000) center / 18px 2px no-repeat,
      linear-gradient(#000, #000) center / 2px 18px no-repeat,
      rgba(0, 0, 0, 0.06);
  }
  .faq-item[open] > summary::before {
    background:
      linear-gradient(#000, #000) center / 18px 2px no-repeat,
      rgba(0, 0, 0, 0.08);
  }
  .faq-answer {
    padding: 0 18px 20px;
    font-size: var(--m-type-sm);
    line-height: 1.46;
  }
  .info-content {
    gap: 12px;
  }
  .info-block,
  .contact-card {
    border-radius: 24px;
    padding: 22px 18px;
  }
  .info-block__title,
  .contact-card__title {
    margin-bottom: 12px;
    font-size: var(--m-type-xs);
    letter-spacing: 0.07em;
  }
  .info-block p,
  .contact-card__body a,
  .contact-card__body p {
    font-size: var(--m-type-sm);
    line-height: 1.34;
  }
  .info-note {
    font-size: var(--m-type-sm);
    line-height: 1.32;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  /* Hero — keyvisual static, date/venue on top */
  .hero {
    position: relative;
    min-height: auto;
    padding: 0 0 16px;
    margin-top: 0;
    overflow: hidden;
  }
  .hero__keyvisual-shell {
    position: relative;
    left: 50%;
    top: auto;
    width: 139%;
    aspect-ratio: 1 / 1;
    max-width: none;
    margin-top: -18px;
    transform: translateX(-50%) !important;
    box-shadow:
      inset 0 92px 88px -46px var(--bg),
      inset 0 -78px 92px -42px var(--bg);
  }

  .hero__keyvisual-shell::before {
    content: '';
    position: absolute;
    left: -6%;
    right: -6%;
    top: -12%;
    height: 26%;
    background: var(--bg);
    filter: blur(28px);
    opacity: 0.94;
    pointer-events: none;
    z-index: 1;
  }

  .hero__keyvisual-shell::after {
    bottom: -8%;
    height: 22%;
    filter: blur(22px);
  }

  .hero__keyvisual {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }
  .hero__info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    text-align: center;
  }
  .hero__dates,
  .hero__venue {
    font-size: var(--m-type-md);
  }
  body[data-city='nn'] .hero__city-logo {
    display: block;
    position: absolute;
    top: 64px;
    left: 50%;
    z-index: 2;
    width: min(36vw, 148px);
    transform: translateX(-50%);
    pointer-events: none;
  }
  body[data-city='nn'] .hero__city-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Lineup — no card outlines on mobile, red tint overlay instead */
  body {
    position: relative;
  }
  body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mobile-red-overlay);
    pointer-events: none;
    z-index: 10;
  }
  .page-faq::before,
  .page-info::before,
  .page-about::before {
    content: none;
  }
  .festival-about {
    padding: 12px var(--side-pad) 48px;
    gap: 26px;
  }
  .festival-about__hero-media {
    min-height: 460px;
    border-radius: 22px;
  }
  .festival-about__hero-video {
    min-height: 460px;
  }
  .festival-about__hero-overlay {
    inset: 18px;
    gap: 10px;
  }
  .festival-about__hero-title {
    max-width: 300px;
    font-size: clamp(42px, 18vw, 78px);
    line-height: 0.86;
  }
  .festival-about__section-title {
    margin-bottom: 18px;
    font-size: var(--m-type-md);
  }
  .festival-about__city-grid,
  .festival-about__manifest,
  .festival-about__lineup-media,
  .festival-about__quality-media {
    grid-template-columns: 1fr;
  }
  .festival-about__city-grid {
    gap: 12px;
  }
  .festival-city {
    min-height: auto;
    padding: 20px 16px 16px;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  }
  .festival-city--spb,
  .festival-city--nn {
    margin-top: 0;
  }
  .festival-city--msk {
    background: linear-gradient(180deg, #ffe06b 0%, #ffd24a 100%);
    box-shadow:
      inset 0 0 0 1px rgba(0, 0, 0, 0.1),
      0 14px 30px rgba(0, 0, 0, 0.08);
  }
  .festival-city__name {
    font-size: var(--m-type-2xs);
  }
  .festival-city__place {
    font-size: var(--m-type-sm);
  }
  .festival-city__dates {
    font-size: var(--m-type-lg);
  }
  .festival-city__cta {
    min-height: 36px;
    padding: 0 16px;
    font-size: var(--m-type-2xs);
  }
  .festival-about__intro,
  .festival-about__text-block p,
  .festival-about__manifest-copy,
  .festival-about__manifest-quote {
    font-size: var(--m-type-sm);
    line-height: 1.4;
  }
  .festival-about__statement-media {
    min-height: 380px;
    border-radius: 22px;
  }
  .festival-about__statement-media img {
    min-height: 380px;
  }
  .festival-about__statement-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: var(--m-type-lg);
    line-height: 1;
  }
  .festival-about__manifest {
    gap: 20px;
    width: calc(100% + (var(--side-pad) * 2));
    margin-left: calc(var(--side-pad) * -1);
    padding: 0 var(--side-pad) 34px;
    background: #fec80b;
  }
  .festival-about__manifest-quote {
    max-width: none;
    justify-self: stretch;
  }
  .festival-about__headline {
    font-size: var(--m-type-xl);
    line-height: 1;
    margin-bottom: 14px;
  }
  .festival-about__lineup-shell,
  .festival-about__quality {
    gap: 20px;
  }
  .festival-about__reasons {
    gap: 18px;
  }
  .festival-about__reasons-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .festival-about__reason-card {
    min-height: auto;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
  .festival-about__reason-index {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .festival-about__reason-card p {
    font-size: var(--m-type-sm);
    line-height: 1.4;
  }
  .festival-about__lineup {
    width: calc(100% + (var(--side-pad) * 2));
    margin-left: calc(var(--side-pad) * -1);
    padding: 28px var(--side-pad) 36px;
  }
  .festival-about__quality {
    padding-top: 8px;
    padding-bottom: 0;
  }
  .festival-about__shot,
  .festival-about__shot--wide,
  .festival-about__shot--tall,
  .festival-about__shot--landscape {
    min-height: 210px;
    border-radius: 18px;
  }
  .festival-about__shot--offset {
    transform: none;
  }
  .page-about--next .festival-about {
    --about-next-flow-gap: 40px;
    gap: var(--about-next-flow-gap);
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-about--next .festival-about__hero {
    margin-top: 0;
  }
  .page-about--next .festival-about__geo {
    gap: var(--about-next-flow-gap);
  }
  .page-about--next .festival-about__city-grid {
    gap: 14px;
  }
  .page-about--next .festival-about__section-title {
    font-size: var(--m-type-md);
    line-height: 0.98;
  }
  .page-about--next .festival-city {
    min-height: auto;
    padding: 0;
    grid-template-rows: auto 1fr;
  }
  .page-about--next .festival-city__media {
    aspect-ratio: 1.12 / 1;
  }
  .page-about--next .festival-city__body {
    min-height: auto;
    padding: 18px 16px 16px;
    gap: 8px;
  }
  .page-about--next .festival-city__name {
    font-size: var(--m-type-lg);
    letter-spacing: -0.03em;
    text-transform: none;
    color: #000;
  }
  .page-about--next .festival-city__place {
    font-size: var(--m-type-sm);
    line-height: 1.22;
  }
  .page-about--next .festival-city__dates {
    font-size: var(--m-type-md);
    line-height: 1;
  }
  .page-about--next .festival-city__cta {
    margin-top: 10px;
  }
  .page-about--next .festival-about__article {
    gap: var(--about-next-flow-gap);
  }
  .page-about--next .festival-about__article-head,
  .page-about--next .festival-about__article-body,
  .page-about--next .festival-about__article-body--wide,
  .page-about--next .festival-about__chapter-head,
  .page-about--next .festival-about__artist-callout {
    width: 100%;
  }
  .page-about--next .festival-about__lead {
    font-size: 22px;
    line-height: 1.02;
  }
  .page-about--next .festival-about__article-body,
  .page-about--next .festival-about__article-body--wide {
    width: 100%;
    column-count: 1;
    column-gap: 0;
  }
  .page-about--next .festival-about__article-body p,
  .page-about--next .festival-about__artist-callout p {
    font-size: var(--m-type-sm);
    line-height: 1.42;
  }
  .page-about--next .festival-about__statement-media figcaption {
    top: 50%;
    left: 18px;
    right: 18px;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    font-size: var(--m-type-2xl);
    line-height: 0.92;
  }
  .page-about--next .festival-about__chapter-head .festival-about__headline {
    font-size: var(--m-type-md);
    line-height: 1;
    margin: 0;
  }
  .page-about--next .festival-about__lineup {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: var(--about-next-flow-gap) 20px;
    background: linear-gradient(180deg, #f6f0e2 0 48%, #fec80b 48% 100%);
  }
  .page-about--next .festival-about__lineup-media {
    gap: 14px;
  }
  .page-about--next .festival-about__artist-callout {
    padding: 0;
    border-radius: 0;
  }
  .page-about--next .festival-about__artist-callout p {
    font-size: var(--m-type-md);
    line-height: 1.14;
  }
  .page-about--next .festival-about__loop-shell {
    width: min(100%, 420px);
  }
  .page-about--next .festival-about__loop-shell::before {
    top: -12%;
    height: 28%;
  }
  .lineup {
    padding: 5px var(--side-pad) 40px;
    margin-top: -40px;
    position: relative;
    z-index: 20;
    background: transparent;
    border-radius: 0;
  }
  .lineup__grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .artist-card {
    border-radius: 36px;
    box-shadow: none;
  }
  .artist-card::after { display: none; }
  .artist-card__name {
    font-size: var(--m-type-2xl);
    padding: 20px;
  }
  .artist-card__date {
    font-size: var(--m-type-sm);
    top: 14px;
    left: 18px;
  }

  .site-footer {
    margin-top: 8px;
    padding: 56px var(--side-pad) 40px;
    border-radius: 28px 28px 0 0;
    z-index: 20;
    background: #000;
  }
  .page-artist .site-footer {
    margin-top: calc(-1 * var(--artist-footer-overlap-mobile));
    padding-top: calc(56px + var(--artist-footer-overlap-mobile));
    border-radius: 28px 28px 0 0;
  }
  .site-footer::before,
  .site-footer::after {
    content: none;
  }
  .footer-stack {
    gap: 24px;
  }
  .footer-section {
    gap: 14px;
  }
  .footer-section__title {
    font-size: var(--m-type-sm);
    letter-spacing: 0.14em;
  }
  .footer-card {
    border-radius: 22px;
  }
  .footer-card--partners {
    padding: 14px;
  }
  .partners-banner {
    border-radius: 14px;
  }
  .venue-map__caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px 18px;
  }
  .venue-map__placeholder {
    min-height: 240px;
    padding: 22px 20px;
    gap: 18px;
  }
  .gallery-marquee {
    gap: 10px;
  }
  .gallery-row--slow {
    display: block;
  }
  .gallery-row__track {
    animation-duration: calc(var(--row-duration, 64s) * 0.65);
  }
  .gallery-row {
    border-radius: 20px;
    padding: 10px 0;
  }
  .gallery-row::before,
  .gallery-row::after {
    width: 42px;
  }
  .gallery-row__track {
    gap: 10px;
    padding-inline: 10px;
  }
  .gallery-slide {
    flex-basis: 220px;
    border-radius: 16px;
  }
  /* Event page mobile */
  .page-artist::before,
  .page-artist::after {
    display: none;
  }
  .page-artist .site-header {
    min-height: auto;
  }
  .page-artist .site-logo img {
    height: 88px;
  }
  .event {
    padding: 0 var(--side-pad) 56px;
    position: relative;
    z-index: 1;
  }
  .event::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(-1 * var(--side-pad));
    bottom: 0;
    left: calc(-1 * var(--side-pad));
    background: var(--mobile-event-overlay);
    pointer-events: none;
    z-index: 0;
  }
  .event::after {
    content: none;
  }
  .event__back--top {
    display: none;
  }
  .event__hero {
    grid-template-areas:
      "content"
      "visual"
      "description";
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .event__hero::before {
    display: none;
  }
  .event__content {
    padding-top: 0;
    max-width: none;
    position: relative;
    z-index: 1;
  }
  .event__dates {
    margin-bottom: 4px;
  }
  .event__date {
    font-size: var(--m-type-xl);
    line-height: 0.9;
  }
  .event__venue-inline,
  .event__age {
    font-size: var(--m-type-body);
    letter-spacing: -0.02em;
  }
  .event__venue-inline {
    width: auto;
    margin-bottom: 18px;
  }
  .event__name {
    font-size: var(--m-type-3xl);
    line-height: 0.84;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .event__description {
    max-width: none;
    margin-top: -2px;
    font-size: var(--m-type-body);
    line-height: 1.42;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .event__description p {
    text-wrap: pretty;
  }
  .event__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    justify-items: stretch;
    margin-bottom: 0;
  }
  .event__buttons--single {
    grid-template-columns: auto;
    justify-content: flex-start;
    justify-items: start;
  }
  .event__buttons--single .event__btn {
    width: min(100%, 208px);
  }
  .event__btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: var(--m-type-body);
    border-radius: 14px;
    border-width: 0;
    box-sizing: border-box;
  }
  .event__btn--cashback {
    padding: 0;
    background: transparent;
  }
  .event__btn--ticket {
    background: #333;
    color: #fff;
  }
  .event__btn-artwork {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .event__buttons--single .event__btn-artwork {
    max-width: 208px;
  }
  .event__tour-preview {
    gap: 12px;
    margin-top: 26px;
  }
  .event__tour-title {
    font-size: 15px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.88);
  }
  .event__tour-pills {
    width: 100%;
  }
  .event__tour-pill {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: 16px;
  }
  .event__visual {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  .event__visual::before {
    display: none;
  }
  .event__visual::after {
    display: none;
  }
  .event__photo-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 30px;
    position: relative;
    z-index: 1;
  }
  .event__photo-wrap::after {
    content: none;
  }
  .event__photo {
    border-radius: 22px;
  }

  .footer-meta {
    margin-top: 40px;
    padding-top: 32px;
  }
  .footer-meta__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right"
      "company";
    gap: 26px;
  }
  .footer-meta__center {
    justify-content: flex-start;
  }
  .footer-meta__brand img {
    width: 127px;
  }
  .footer-meta__left {
  }
  .footer-meta__right {
    justify-items: start;
    text-align: left;
    gap: 22px;
  }
  .footer-socials {
    gap: 12px;
  }
  .footer-social {
    width: 48px;
    height: 48px;
  }
  .footer-social svg {
    width: 22px;
    height: 22px;
  }
  .footer-social--vk svg {
    width: 21px;
    height: 21px;
  }
  .footer-meta__links,
  .footer-meta__legals {
    gap: 8px;
  }
  .footer-meta__link,
  .footer-meta__legal {
    font-size: 15px;
  }
  .footer-meta__company {
    font-size: 14px;
    line-height: 1.4;
  }
  .footer-meta__phone {
    font-size: 18px;
  }

  /* Scroll-to-top button */
  .scroll-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s;
  }
  .scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
.scroll-top svg {
  width: 18px;
  height: 18px;
  display: block;
}
}

body.footer-modal-open {
  overflow: hidden;
}

.footer-modal[hidden] {
  display: none;
}

.footer-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.footer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.footer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(100%, 840px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(254, 200, 11, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #090909;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.22s ease;
}

.footer-modal.is-open .footer-modal__panel {
  transform: translateY(0) scale(1);
}

.footer-modal__header {
  padding: 28px 32px 0;
}

.footer-modal__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-modal__title {
  margin: 0;
  padding-right: 56px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--bg);
}

.footer-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.footer-modal__close span {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.footer-modal__close span:first-child {
  transform: rotate(45deg);
}

.footer-modal__close span:last-child {
  transform: rotate(-45deg);
}

.footer-modal__close:focus-visible {
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

.footer-modal__content {
  overflow: auto;
  padding: 22px 32px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.footer-modal__content p,
.footer-modal__content li {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.footer-modal__content p {
  margin: 0 0 16px;
}

.footer-modal__content strong {
  color: #fff;
}

.footer-modal__content a {
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 200, 11, 0.45);
}

.footer-modal__section-title {
  margin-top: 26px !important;
  margin-bottom: 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg) !important;
}

.footer-modal__list {
  margin: 0 0 18px;
  padding-left: 24px;
}

.footer-modal__list li {
  margin-bottom: 10px;
}

.footer-modal__note {
  margin-top: 20px !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .footer-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .footer-modal__panel {
    width: 100%;
    max-height: min(100%, 88vh);
    border-radius: 28px 28px 24px 24px;
  }

  .footer-modal__header {
    padding: 22px 20px 0;
  }

  .footer-modal__title {
    padding-right: 42px;
    font-size: 32px;
  }

  .footer-modal__content {
    padding: 18px 20px 24px;
  }

  .footer-modal__content p,
  .footer-modal__content li {
    font-size: 16px;
    line-height: 1.5;
  }
}

.event__body {
  grid-area: description;
  display: grid;
  gap: 26px;
  align-content: start;
  min-width: 0;
}

.event-schedule {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.event-schedule-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "date buttons"
    "meta buttons";
  gap: 10px 20px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.event-schedule-card__date {
  grid-area: date;
  margin: 0;
  font-weight: 800;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #000;
}

.event-schedule-card__meta {
  grid-area: meta;
  margin: 0;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.7);
}

.event-schedule .event__buttons--schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 12px;
  width: auto;
  margin: 0;
  justify-content: flex-end;
  align-items: stretch;
}

.event-schedule-card > .event__buttons--schedule {
  grid-area: buttons;
  align-self: start;
  justify-self: end;
}

.event-schedule .event__buttons--schedule.event__buttons--single {
  grid-template-columns: minmax(0, 180px);
}

.event-schedule .event__btn--schedule {
  width: 100%;
  min-height: 0;
  aspect-ratio: 676 / 177.5901;
  padding: 0 14px;
  border-radius: 14px;
  background: #333;
  color: #fff;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 600;
  gap: 10px;
  white-space: nowrap;
}

.event-schedule .event__btn--schedule-cashback {
  padding: 0;
  background: #333;
  overflow: hidden;
}

.event-schedule .event__btn-artwork--schedule {
  display: block;
  width: 100%;
  height: auto;
}

.event-schedule + .event__description,
.event-schedule + .event__description--lead {
  max-width: none;
  width: 100%;
}

@media (min-width: 901px) {
  .page-artist .event__hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(560px, 0.92fr);
    column-gap: clamp(36px, 3.8vw, 64px);
    row-gap: 18px;
  }

  .page-artist .event__content,
  .page-artist .event__body,
  .page-artist .event__description,
  .page-artist .event__description--lead {
    max-width: none;
  }

  .page-artist .event__photo-wrap {
    width: min(100%, 700px);
  }

  .page-artist .event__venue-inline {
    margin-bottom: 12px;
  }

  .event-schedule .event__buttons--schedule {
    grid-template-columns: repeat(2, minmax(0, 212px));
    gap: 14px;
    width: auto;
    max-width: none;
    justify-content: end;
    justify-self: end;
  }

  .event-schedule .event__buttons--schedule.event__buttons--single {
    grid-template-columns: minmax(0, 212px);
    justify-self: end;
  }

  .event-schedule .event__btn--schedule {
    border-radius: 14px;
  }
}

@media (max-width: 900px) {
  .event__body {
    gap: 18px;
  }

  .event-schedule-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "meta"
      "buttons";
    gap: 10px;
    padding: 18px 18px 16px;
    border-radius: 22px;
  }

  .event-schedule-card__date {
    font-size: clamp(28px, 8vw, 36px);
  }

  .event-schedule-card__meta {
    font-size: 16px;
  }

  .event-schedule .event__buttons--schedule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    justify-content: stretch;
    justify-self: stretch;
  }

  .event-schedule .event__buttons--schedule.event__buttons--single {
    grid-template-columns: minmax(0, 154px);
    width: auto;
  }

  .event-schedule .event__btn--schedule {
    width: 100%;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.08;
  }
}

@media (max-width: 420px) {
  .event-schedule-card {
    padding: 16px 16px 14px;
  }

  .event-schedule-card__date {
    font-size: 30px;
  }

  .event-schedule .event__buttons--schedule {
    gap: 8px;
  }

  .event-schedule .event__buttons--schedule.event__buttons--single {
    grid-template-columns: minmax(0, 148px);
  }

  .event-schedule .event__btn--schedule {
    padding: 0 6px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .event-schedule {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    gap: 8px;
  }

  .event-schedule-card {
    gap: 12px;
    padding: 16px 12px 14px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .event-schedule .event__buttons--schedule {
    gap: 8px;
  }

  .event-schedule .event__btn--schedule {
    padding: 0 6px;
    border-radius: 12px;
  }
}
