/* KOSTYUK PROJECT — единая система внутренних страниц авторских шоу */

:root {
  --show-accent: #d6ac45;
  --show-accent-soft: rgba(214, 172, 69, .16);
  --show-accent-glow: rgba(214, 172, 69, .28);
  --show-cream: #f5f0e5;
  --show-muted: rgba(245, 240, 229, .66);
  --show-line: rgba(214, 172, 69, .22);
  --show-panel: rgba(10, 10, 11, .82);
  --show-ease: cubic-bezier(.22, 1, .36, 1);
}

body.show-page--huligan {
  --show-accent: #ff6e00;
  --show-accent-soft: rgba(255, 110, 0, .15);
  --show-accent-glow: rgba(255, 110, 0, .28);
}

body.show-page--matvey {
  --show-accent: #b997ef;
  --show-accent-soft: rgba(151, 111, 217, .14);
  --show-accent-glow: rgba(151, 111, 217, .26);
}

html { scroll-padding-top: 96px; }

body.show-page {
  background: #030303;
  color: var(--show-cream);
}

body.show-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 62% at 14% -12%, var(--show-accent-soft), transparent 72%),
    radial-gradient(ellipse 38% 56% at 88% 18%, rgba(214, 172, 69, .07), transparent 74%),
    linear-gradient(180deg, #050505, #030303 48%, #060606);
}

body.show-page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.show-page .cosmos,
body.show-page .bg,
body.show-page .q-mark,
body.show-page .magic-sparks-overlay,
body.show-page .flashlight-overlay,
body.show-page .flashlight-glow { display: none !important; }

body.show-page #magicCanvas,
body.show-page .strobe-canvas { opacity: .24; }

body.show-page main,
body.show-page .show-ecosystem-quick,
body.show-page .kp-ecosystem-promo { position: relative; z-index: 2; }

body.show-page .show-back-to-afisha {
  top: calc(92px + env(safe-area-inset-top, 0px));
  left: calc(20px + env(safe-area-inset-left, 0px));
  z-index: 9800;
}

@media (max-width: 900px) {
  body.show-page .show-back-to-afisha {
    top: calc(78px + env(safe-area-inset-top, 0px));
    left: calc(14px + env(safe-area-inset-left, 0px));
  }
}

/* Общая шапка */
.show-header {
  position: fixed;
  inset: 16px 24px auto;
  width: auto !important;
  box-sizing: border-box;
  z-index: 9700;
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(4,4,5,.78);
  box-shadow: 0 18px 60px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.show-header__brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--show-cream);
  text-decoration: none;
}

.show-header__brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--show-line);
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,.5);
}

.show-header__brand span { display: grid; min-width: 0; gap: 5px; }
.show-header__brand strong {
  font: 700 14px/1 'Cinzel', serif;
  letter-spacing: .15em;
  white-space: nowrap;
}
.show-header__brand small {
  color: #d6ac45;
  font: 700 8px/1 'Inter', sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.show-header__nav { display: flex; align-items: center; gap: 4px; }
.show-header__nav a,
.show-header__phone,
.show-header__projects {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  font: 700 11px/1 'Inter', sans-serif;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--show-ease);
}
.show-header__nav a { color: rgba(255,255,255,.58); }
.show-header__nav a:hover,
.show-header__nav a.is-current { color: var(--show-cream); background: rgba(255,255,255,.055); }
.show-header__nav a.is-current { color: #ecd17d; }
.show-header__actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.show-header__phone {
  border: 1px solid rgba(255,255,255,.11);
  color: var(--show-cream);
  background: rgba(255,255,255,.045);
}
.show-header__projects {
  border: 1px solid rgba(240,217,139,.48);
  color: #171209;
  background: linear-gradient(135deg, #f0d98b, #d6ac45);
  box-shadow: 0 8px 26px rgba(214,172,69,.2);
}
.show-header__phone:hover,
.show-header__projects:hover { transform: translateY(-2px); }

/* Первый экран: афиша и решение о покупке в одном кадре */
body.show-page .hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 104px 32px 34px;
  overflow: hidden;
  text-align: left;
  background: transparent !important;
  perspective: none;
}

body.show-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
  filter: none;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  animation: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.2), transparent 36%, rgba(0,0,0,.12)),
    radial-gradient(circle at 32% 44%, var(--show-accent-soft), transparent 31%);
}

.show-hero-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.show-hero-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }

/* Первый экран готов сразу: без черной паузы до срабатывания старых
   scroll-reveal наблюдателей отдельных страниц. */
.show-page .hero .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.show-page .poster-wrap {
  width: 100%;
  max-width: 380px;
  height: auto;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--show-line);
  border-radius: 22px;
  animation: showPosterIn .9s var(--show-ease) both !important;
  transform: none !important;
  transform-style: flat;
  box-shadow: 0 32px 90px rgba(0,0,0,.58), 0 0 70px var(--show-accent-glow);
}

@keyframes showPosterIn {
  from { opacity: 0; transform: translateY(18px) scale(.975); }
  to { opacity: 1; transform: none; }
}

body.show-page .poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
  transition: transform .8s var(--show-ease), filter .4s ease;
}
body.show-page .poster-wrap:hover .poster { transform: scale(1.025) !important; }
body.show-page--huligan .poster-wrap {
  aspect-ratio: 2 / 3;
  background: #050505;
}
body.show-page--huligan .poster {
  object-fit: contain;
  object-position: center;
  background: #050505;
}
body.show-page--huligan .poster-wrap:hover .poster { transform: none !important; }
@media (min-width: 821px) {
  body.show-page--huligan .show-hero-shell {
    width: min(100%, 1160px);
    grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 96px);
  }
  body.show-page--huligan .poster-wrap {
    width: min(100%, 440px);
    height: auto;
    max-width: 440px;
    justify-self: end;
  }
  body.show-page--huligan .show-hero-copy {
    max-width: 620px;
  }
  body.show-page--huligan h1.title {
    font-size: clamp(46px, 5.2vw, 78px) !important;
  }
}

body.show-page .eyebrow {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--show-accent);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .28em;
}

body.show-page h1.title {
  margin: 0;
  color: var(--show-cream);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: 'Cinzel', serif;
  font-size: clamp(48px, 7.6vw, 86px);
  font-style: normal;
  font-weight: 700;
  line-height: .95;
  letter-spacing: .015em;
  text-align: left;
  text-shadow: 0 3px 30px rgba(0,0,0,.75), 0 0 55px var(--show-accent-soft);
  animation: none;
}

body.show-page--matvey h1.title { font-size: clamp(42px, 6.7vw, 74px); }

body.show-page .subtitle {
  max-width: 560px;
  margin: 15px 0 0;
  color: var(--show-accent);
  font: 700 clamp(12px, 1.6vw, 16px)/1.45 'Inter', sans-serif;
  font-style: normal;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.show-next-date {
  width: min(100%, 530px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-left-color: var(--show-accent);
  border-radius: 15px;
  background: linear-gradient(110deg, var(--show-accent-soft), rgba(255,255,255,.025));
}
.show-next-date small {
  grid-column: 1 / -1;
  color: var(--show-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.show-next-date strong { color: var(--show-cream); font-size: 17px; line-height: 1.3; }
.show-next-date span { align-self: center; color: var(--show-muted); font-size: 11px; }

body.show-page .meta {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin: 16px 0 0;
}
body.show-page .meta__item {
  padding: 6px 10px;
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.03);
  font-size: 9px;
  letter-spacing: .1em;
}
body.show-page .meta__item strong { color: var(--show-cream); }

body.show-page .buy-cta,
body.show-page .btn-primary,
body.show-page .modal__submit {
  border: 1px solid rgba(240,217,139,.52);
  color: #171209;
  background: linear-gradient(135deg, #f0d98b, #d6ac45);
  box-shadow: 0 12px 34px rgba(214,172,69,.25), inset 0 1px rgba(255,255,255,.35);
}
body.show-page .hero .buy-cta {
  min-height: 52px;
  margin-top: 18px;
  padding: 14px 25px;
  border-radius: 12px;
  font-size: 11px;
  letter-spacing: .13em;
}
body.show-page .buy-cta:hover,
body.show-page .btn-primary:hover,
body.show-page .modal__submit:hover {
  color: #171209;
  background: linear-gradient(135deg, #fff0b4, #d6ac45);
  box-shadow: 0 16px 42px rgba(214,172,69,.36);
}

body.show-page .modal.show {
  background:
    radial-gradient(circle at 50% 6%, var(--show-accent-soft), transparent 36%),
    rgba(0,0,0,.91);
}
body.show-page .modal__box {
  border-color: var(--show-line);
  background:
    radial-gradient(circle at 50% -8%, var(--show-accent-soft), transparent 36%),
    linear-gradient(180deg, rgba(15,15,16,.99), rgba(5,5,6,.99));
  box-shadow: 0 32px 90px rgba(0,0,0,.9), 0 0 70px var(--show-accent-soft), inset 0 1px rgba(255,255,255,.07);
}
body.show-page .modal__box::before { display: none !important; }
body.show-page .hall-wrap {
  border-color: var(--show-line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.28));
}

.show-hero-note {
  margin-top: 10px;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  letter-spacing: .06em;
}

/* Компактная экосистема сразу после билета */
.show-ecosystem-quick {
  width: min(calc(100% - 40px), 1080px);
  display: grid;
  grid-template-columns: minmax(240px, .52fr) minmax(0, 1.48fr);
  align-items: center;
  gap: 24px;
  margin: 32px auto 34px;
  padding: 13px;
  border: 1px solid rgba(214,172,69,.18);
  border-radius: 19px;
  background: linear-gradient(110deg, rgba(214,172,69,.08), rgba(255,255,255,.025) 44%, rgba(0,0,0,.18));
}
.show-ecosystem-quick__title { padding: 3px 8px; }
.show-ecosystem-quick__title small {
  color: #d6ac45;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.show-ecosystem-quick__title h2 {
  max-width: 12ch;
  margin-top: 6px;
  color: var(--show-cream);
  font: 700 clamp(17px, 1.35vw, 20px)/1.08 'Cinzel', serif !important;
  text-align: left !important;
  text-wrap: balance;
}
.show-ecosystem-quick__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.show-ecosystem-quick__links a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  color: var(--show-cream);
  background: rgba(7,7,7,.7);
  text-decoration: none;
  transition: transform .25s var(--show-ease), border-color .25s ease, background .25s ease;
}
.show-ecosystem-quick__links a:hover { transform: translateY(-2px); border-color: rgba(214,172,69,.42); background: rgba(214,172,69,.07); }
.show-ecosystem-quick__links span { display: grid; gap: 4px; }
.show-ecosystem-quick__links strong { font-size: 12px; line-height: 1.25; }
.show-ecosystem-quick__links small { color: rgba(255,255,255,.46); font-size: 9px; line-height: 1.35; }
.show-ecosystem-quick__links i { color: #d6ac45; font-size: 17px; font-style: normal; }

/* Общий ритм разделов */
body.show-page .section {
  width: min(100%, 980px);
  max-width: 980px;
  padding: clamp(64px, 8vw, 96px) 24px;
}
body.show-page .section__eyebrow { color: var(--show-accent); font-size: 9px; font-weight: 800; letter-spacing: .3em; }
body.show-page .section__title {
  color: var(--show-cream);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.01em;
}
body.show-page .section__text { color: var(--show-muted); }
body.show-page .section__text strong { color: var(--show-cream); }
body.show-page .feature,
body.show-page .level,
body.show-page .card,
body.show-page .faq-item {
  border-color: rgba(255,255,255,.1) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)) !important;
}

/* Продающие карточки: не перечисляют функции, а помогают принять решение. */
body.show-page .section.show-sales-section {
  width: min(calc(100% - 48px), 1040px);
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(36px, 5vw, 58px) 0 34px;
  text-align: center;
}
body.show-page .show-sales-section .section__title,
body.show-page #huliganFitTitle.section__title {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(26px, 2.25vw, 34px) !important;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}
.show-sales-grid {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
}
.show-sales-card {
  min-height: 168px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.048), rgba(255,255,255,.018));
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.show-sales-card--action {
  border-color: var(--show-line);
  background: radial-gradient(circle at 80% 0, var(--show-accent-soft), transparent 64%), rgba(255,255,255,.025);
}
.show-sales-card__label {
  color: var(--show-accent);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.show-sales-card h3 {
  margin: 11px 0 8px;
  color: var(--show-cream);
  font: 700 clamp(17px, 1.35vw, 21px)/1.12 'Cinzel', serif;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.show-sales-card p {
  margin: 0;
  color: var(--show-muted);
  font-size: 11.5px;
  line-height: 1.48;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.show-sales-card__cta {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  min-width: 158px;
  width: auto;
  height: 40px;
  max-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(240,217,139,.5);
  border-radius: 10px;
  color: #171209;
  background: linear-gradient(135deg, #f0d98b, #d6ac45);
  font: 800 10px/1 'Inter', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.show-sales-card__cta:hover { background: linear-gradient(135deg, #fff0b4, #d6ac45); }

.show-visit-strip {
  width: min(calc(100% - 40px), 980px);
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -44px auto 22px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(7,7,8,.76);
}
.show-visit-strip__heading,
.show-visit-strip__item {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
}
.show-visit-strip__heading { background: radial-gradient(circle at 0 0, var(--show-accent-soft), transparent 72%); }
.show-visit-strip__heading small,
.show-visit-strip__item span {
  color: var(--show-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.show-visit-strip__heading strong {
  margin-top: 8px;
  color: var(--show-cream);
  font: 700 17px/1.18 'Cinzel', serif;
}
.show-visit-strip__item { border-left: 1px solid rgba(255,255,255,.07); }
.show-visit-strip__item strong { margin-top: 8px; color: var(--show-cream); font-size: 12px; line-height: 1.4; }
.show-visit-strip__item a { margin-top: 6px; color: rgba(245,240,229,.5); font-size: 9px; text-decoration: none; }
.show-visit-strip__item a:hover { color: var(--show-accent); }
body.show-page .footer-cta {
  width: min(calc(100% - 40px), 980px);
  margin-left: auto;
  margin-right: auto;
  border-color: var(--show-line);
  background: radial-gradient(circle at 50% 0, var(--show-accent-soft), transparent 58%), rgba(255,255,255,.018);
}

/* Промо-блок направлений показываем и на страницах шоу (насыщенный низ, как у events/school) */
body.show-page .kp-ecosystem-promo {
  width: min(calc(100% - 32px), 1160px);
  margin: clamp(48px, 6vw, 80px) auto clamp(56px, 7vw, 88px);
}

/* Карточки дат — настоящие кнопки */
body.show-page button.date-card {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
body.show-page button.date-card:focus-visible {
  outline: 2px solid #f0d98b;
  outline-offset: 3px;
}

body.show-page .tg-float {
  bottom: max(92px, calc(82px + env(safe-area-inset-bottom, 0px))) !important;
  color: #171209 !important;
  background: linear-gradient(135deg, #f0d98b, #d6ac45) !important;
  border-color: rgba(240,217,139,.55) !important;
}

body.show-page #stickyCta {
  max-width: 580px !important;
  padding: 11px 13px !important;
  border: 1px solid rgba(214,172,69,.24) !important;
  border-bottom: 0 !important;
  border-radius: 17px 17px 0 0 !important;
  background: rgba(5,5,6,.93) !important;
  box-shadow: 0 -18px 50px rgba(0,0,0,.4) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}
body.show-page #stickyCta .buy-cta {
  min-height: 44px;
  padding: 11px 18px !important;
  border-radius: 11px;
  font-size: 10px !important;
  letter-spacing: .1em;
}


@media (max-width: 1060px) and (min-width: 821px) {
  body.show-page .section.show-sales-section {
    width: min(calc(100% - 40px), 680px);
    padding-left: 0;
    padding-right: 0;
  }
  .show-sales-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .show-sales-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .show-header { inset: 12px 12px auto; grid-template-columns: 1fr auto; gap: 8px; }
  .show-header__brand span,
  .show-header__nav,
  .show-header__phone span { display: none; }
  .show-header__brand img { width: 42px; height: 42px; }
  .show-header__actions { gap: 6px; }
  .show-header__phone { width: 42px; padding: 0; }
  .show-header__projects { min-height: 42px; padding: 10px 13px; }

  body.show-page .hero { padding: 82px 18px 24px; }
  .show-hero-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    justify-items: center;
  }
  /* Постер на мобильном: сохраняем пропорции 2/3, не растягиваем по высоте (иначе картинка режется/арка) */
  body.show-page .poster-wrap { width: min(72vw, 300px); height: auto; max-height: none; aspect-ratio: 2 / 3; border-radius: 17px; }
  .show-hero-copy { width: min(100%, 560px); align-items: center; text-align: center; }
  body.show-page h1.title,
  body.show-page .subtitle { text-align: center; }
  body.show-page h1.title { font-size: clamp(39px, 12vw, 58px); line-height: .96; }
  body.show-page--matvey h1.title { font-size: clamp(34px, 10.5vw, 48px); }
  body.show-page .eyebrow { margin-bottom: 9px; }
  body.show-page .subtitle { margin-top: 9px; }
  .show-next-date { margin-top: 14px; padding: 12px 13px; text-align: left; }
  .show-next-date strong { font-size: 14px; }
  body.show-page .meta { justify-content: center; margin-top: 10px; }
  body.show-page .hero .buy-cta { width: 100%; justify-content: center; margin-top: 13px; }
  .show-hero-note { margin-top: 8px; }

  .show-ecosystem-quick { width: calc(100% - 28px); grid-template-columns: 1fr; gap: 9px; margin: 18px auto 8px; }
  .show-ecosystem-quick__title { padding: 2px 4px 5px; text-align: center; }
  .show-ecosystem-quick__title h2 { max-width: none; font-size: 17px !important; text-align: center !important; }
  .show-ecosystem-quick__links { grid-template-columns: 1fr; }
  .show-ecosystem-quick__links a { min-height: 57px; }

  body.show-page .section.show-sales-section { width: calc(100% - 28px); padding: 40px 0 30px; }
  body.show-page .show-sales-section .section__title { font-size: clamp(25px, 7.2vw, 32px); }
  .show-sales-grid { grid-template-columns: 1fr; max-width: 620px; margin: 22px auto 0; }
  .show-sales-card { min-height: 0; padding: 21px; }
  .show-sales-card__cta { width: 100%; margin-top: 18px; }
  .show-visit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -34px; }
  .show-visit-strip__heading { grid-column: 1 / -1; min-height: 76px; }
  .show-visit-strip__item { min-height: 82px; border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }

  body.show-page #stickyCta {
    width: calc(100% - 24px);
    bottom: -110px;
  }
  body.show-page #stickyCta > div > div:first-child { font-size: 13px !important; }
  body.show-page #stickyCta > div > div:last-child { font-size: 10px !important; }
  body.show-page #stickyCta .buy-cta { min-width: 134px; }
}

@media (max-width: 430px) {
  .show-header__projects { font-size: 10px; }
  .show-hero-shell { grid-template-rows: auto auto; gap: 14px; }
  body.show-page .poster-wrap { width: min(66vw, 260px); max-height: none; }
  body.show-page h1.title { font-size: clamp(36px, 11vw, 48px); }
  body.show-page--matvey h1.title { font-size: clamp(31px, 9.3vw, 42px); }
  .show-next-date span { font-size: 9px; }
  body.show-page .meta__item { padding: 5px 8px; font-size: 8px; }
  .show-visit-strip { grid-template-columns: 1fr; }
  .show-visit-strip__heading { grid-column: auto; }
}

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