/* KOSTYUK PROJECT — shared brand foundation */
:root {
  --kp-black: #030303;
  --kp-surface: #0a0a0c;
  --kp-surface-2: #111114;
  --kp-gold: #d6ac45;
  --kp-gold-bright: #f0d98b;
  --kp-cream: #f5f0e5;
  --kp-muted: #aaa69d;
  --kp-line: rgba(214, 172, 69, .22);
  --kp-ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-padding-top: 88px; }
body { background: var(--kp-black); }
.preloader.hidden > * { display: none; }
#kpBottomNav, #kpToast { display: none !important; }

/* Global identity */
.brand-bar {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 9700;
  height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(4,4,5,.72);
  box-shadow: 0 18px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.brand-bar__identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-bar__identity img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-bar__identity span { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; white-space: nowrap; }
.brand-bar__identity strong {
  color: var(--kp-cream);
  font: 700 15px/1.1 var(--ff-head);
  letter-spacing: .17em;
  white-space: nowrap;
}
.brand-bar__identity small {
  margin-top: 6px;
  color: var(--kp-gold);
  font: 600 8px/1 var(--ff-text);
  letter-spacing: .16em;
  white-space: nowrap;
}

.brand-bar__nav { display: flex; align-items: center; gap: 6px; }
.brand-bar__nav a {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 600;
  transition: color .25s ease, background .25s ease;
}
.brand-bar__nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.brand-bar__nav a.is-current { color: var(--kp-gold-bright); }
.brand-bar__nav a.is-current::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kp-gold), transparent);
}

.brand-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.brand-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--kp-line);
  background: rgba(214, 172, 69, .06);
  color: var(--kp-cream);
  font: 600 12px var(--ff-text);
  white-space: nowrap;
  transition: border-color .25s ease, background .25s ease;
}
.brand-bar__phone:hover { border-color: var(--kp-gold); background: rgba(214, 172, 69, .12); }
.brand-bar__phone svg { color: var(--kp-gold); flex-shrink: 0; }
@media (max-width: 720px) {
  .brand-bar__phone .header-phone-text { display: none; }
  .brand-bar__phone { padding: 10px 12px; }
  .brand-bar__identity strong { font-size: 11px; letter-spacing: .08em; white-space: nowrap; }
  .brand-bar__identity strong span { display: none; }
  .brand-bar__identity small { font-size: 8.5px; }
  .brand-bar__identity { min-width: 0; }
  .brand-bar__identity img { width: 38px; height: 38px; }
  .brand-bar__actions { gap: 8px; }
}
.brand-bar__cta {
  justify-self: end;
  height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #16120a;
  background: linear-gradient(135deg, var(--kp-gold-bright), var(--kp-gold));
  box-shadow: 0 8px 25px rgba(214,172,69,.2);
  font: 700 12px var(--ff-text);
  cursor: pointer;
  transition: transform .25s var(--kp-ease), box-shadow .25s ease;
}
.brand-bar__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(214,172,69,.32); }

.project-switcher { position:fixed; inset:0; z-index:9900; display:grid; place-items:center; padding:20px; opacity:0; visibility:hidden; transition:opacity .28s ease, visibility .28s ease; }
.project-switcher.is-open { opacity:1; visibility:visible; }
.project-switcher__backdrop { position:absolute; inset:0; border:0; background:rgba(0,0,0,.8); backdrop-filter:blur(12px); cursor:default; }
.project-switcher__panel { position:relative; width:min(100%,780px); padding:24px; border:1px solid rgba(214,172,69,.3); border-radius:24px; background:#09090a; box-shadow:0 30px 100px rgba(0,0,0,.7); transform:translateY(18px) scale(.98); transition:transform .4s var(--kp-ease); }
.project-switcher.is-open .project-switcher__panel { transform:none; }
.project-switcher__head { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; margin-bottom:20px; }
.project-switcher__head span { color:var(--kp-gold); font-size:9px; font-weight:700; letter-spacing:.25em; }
.project-switcher__head h2 { margin-top:6px; color:var(--kp-cream); font:700 clamp(24px,4vw,38px)/1.1 var(--ff-head); }
.project-switcher__head > button { width:38px; height:38px; border:1px solid rgba(255,255,255,.12); border-radius:50%; color:#fff; background:transparent; font-size:25px; cursor:pointer; }
.project-switcher__list { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.project-switcher__list a { min-height:205px; display:flex; flex-direction:column; padding:22px; border:1px solid rgba(255,255,255,.09); border-radius:17px; background:rgba(255,255,255,.025); transition:transform .3s var(--kp-ease), border-color .3s ease, background .3s ease; }
.project-switcher__list a:hover { transform:translateY(-4px); border-color:rgba(214,172,69,.45); background:rgba(214,172,69,.06); }
.project-switcher__list a.is-current { border-color:rgba(214,172,69,.38); background:linear-gradient(145deg,rgba(214,172,69,.12),rgba(255,255,255,.02)); }
.project-switcher__list small { color:var(--kp-gold); font-size:9px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
.project-switcher__list strong { margin-top:auto; color:var(--kp-cream); font:700 21px/1.15 var(--ff-head); }
.project-switcher__list span { margin-top:9px; color:var(--kp-muted); font-size:12px; line-height:1.5; }

/* Hero */
.hero { min-height: 100svh; padding: 118px 24px 34px; }
.hero__overlay {
  background:
    radial-gradient(circle at 50% 35%, transparent 0, rgba(0,0,0,.08) 29%, rgba(0,0,0,.58) 76%),
    linear-gradient(to bottom, rgba(0,0,0,.14), rgba(0,0,0,.05) 34%, rgba(0,0,0,.76) 76%, #000 96%);
}
.hero__bg img {
  object-position: 50% 28%;
  transform: scale(1.035);
  animation: kpHeroCamera 14s var(--kp-ease) both;
}
.hero__bg video {
  object-position: 50% 38%;
  transform: scale(1.04);
  animation: kpHeroCamera 14s var(--kp-ease) both;
}
.hero__bg .hero__fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
}
.hero__bg video + .hero__fallback {
  opacity: 0;
}
.hero__bg video:not([src]) + .hero__fallback,
.hero__bg video[poster] + .hero__fallback {
  pointer-events: none;
}
@keyframes kpHeroCamera { from { transform: scale(1.09); } to { transform: scale(1.035); } }
.hero__content { width: min(100%, 920px); }
.hero__eyebrow, .section-kicker {
  margin-bottom: 13px;
  color: var(--kp-gold-bright);
  font: 700 10px/1.3 var(--ff-text);
  letter-spacing: .3em;
  text-transform: uppercase;
}
.title {
  color: var(--kp-cream);
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: .025em;
  line-height: .98;
  text-shadow: 0 0 50px rgba(214,172,69,.2), 0 4px 30px rgba(0,0,0,.85);
  animation: none;
}
.title::before, .title::after { display: none; }
.subtitle {
  margin-top: 15px;
  color: var(--kp-gold-bright);
  font: 600 clamp(13px, 2vw, 18px)/1.45 var(--ff-text);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__promise {
  width: min(100%, 680px);
  margin: 12px auto 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.55;
}
.metrics {
  width: min(100%, 680px);
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 22px auto 0;
  padding: 14px 8px;
  border-block: 1px solid rgba(255,255,255,.1);
}
.metric + .metric { border-left: 1px solid rgba(255,255,255,.1); }
.metric__num { color: var(--kp-cream); font-family: var(--ff-text); }
.metric__label { color: rgba(255,255,255,.56); }
.hero-cta { gap: 10px; margin-top: 18px; }
.hero-cta .btn { width: auto; min-width: 238px; padding: 16px 22px; border-radius: 12px; }
.hero-cta .btn--primary:hover {
  color: #171209;
  border: 0;
  background: linear-gradient(135deg, var(--kp-gold-bright), var(--kp-gold));
  box-shadow: 0 10px 34px rgba(214,172,69,.3);
  transform: translateY(-2px);
}
.btn--cinema { border-color: rgba(255,255,255,.2); background: rgba(4,4,4,.44); }
.btn--cinema:hover { border-color: var(--kp-line); color: var(--kp-gold-bright); transform: translateY(-2px); }
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  animation: none;
}
.scroll-hint span { color: var(--kp-gold); animation: bounce 2s ease-in-out infinite; }

/* The three worlds */
.ecosystem-intro {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 10vw, 140px) max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(214,172,69,.1), transparent 31%),
    radial-gradient(circle at 85% 92%, rgba(214,172,69,.07), transparent 28%),
    var(--kp-black);
}
.ecosystem-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 76%, transparent);
}
.ecosystem-intro__heading { width: min(100%, 820px); margin: 0 auto 48px; text-align: center; }
.ecosystem-intro__heading h2 {
  color: var(--kp-cream);
  font: 700 clamp(32px, 5vw, 58px)/1.06 var(--ff-head);
  letter-spacing: -.02em;
}
.ecosystem-intro__heading > p:last-child {
  width: min(100%, 690px);
  margin: 20px auto 0;
  color: var(--kp-muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
}
.worlds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.world-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  transition: transform .5s var(--kp-ease), border-color .35s ease, box-shadow .35s ease;
}
.world-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 70% 25%, rgba(214,172,69,.2), transparent 42%);
  transition: opacity .4s ease;
}
.world-card:hover { transform: translateY(-8px); border-color: rgba(214,172,69,.46); box-shadow: 0 22px 70px rgba(0,0,0,.46); }
.world-card:hover::before { opacity: 1; }
.world-card--flagship { border-color: rgba(214,172,69,.32); background: linear-gradient(145deg, rgba(214,172,69,.12), rgba(255,255,255,.02) 62%); }
.world-card--active { box-shadow: inset 0 0 0 1px rgba(214,172,69,.12); }
.world-card__number { color: rgba(255,255,255,.18); font: 500 12px var(--ff-text); letter-spacing: .18em; }
.world-card__status {
  margin-top: 48px;
  padding: 7px 10px;
  border: 1px solid var(--kp-line);
  border-radius: 999px;
  color: var(--kp-gold-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.world-card h3 { position: relative; margin-top: 20px; color: var(--kp-cream); font: 700 clamp(24px, 3vw, 34px)/1.05 var(--ff-head); }
.world-card p { position: relative; margin-top: 15px; color: var(--kp-muted); font-size: 14px; line-height: 1.65; }
.world-card__action { position: relative; display: flex; justify-content: space-between; width: 100%; margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); color: var(--kp-gold-bright); font-size: 12px; font-weight: 700; }
.world-card__action b { font-size: 17px; font-weight: 400; transition: transform .35s var(--kp-ease); }
.world-card:hover .world-card__action b { transform: translate(3px,-3px); }
.founder-line {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 48px auto 0;
  padding: 16px;
  border-block: 1px solid rgba(255,255,255,.08);
}
.founder-line img { width: 88px; height: 88px; border-radius: 17px; object-fit: cover; box-shadow: 0 10px 35px rgba(0,0,0,.5); }
.founder-line p { display: flex; flex-direction: column; gap: 7px; text-align: left; }
.founder-line strong { color: var(--kp-cream); font: 700 clamp(17px, 2.2vw, 22px)/1.3 var(--ff-head); }
.founder-line span { color: var(--kp-muted); font-size: 13px; line-height: 1.5; }

/* Make existing language feel like the same system */
.sectionTitle { color: var(--kp-cream); letter-spacing: .02em; text-shadow: none; }
.sectionTitle::after { background: linear-gradient(90deg, transparent, var(--kp-gold), transparent); }
.section { padding-top: clamp(70px, 8vw, 112px); padding-bottom: clamp(70px, 8vw, 112px); }
.reveal { transform: translateY(22px); transition-duration: .9s; transition-timing-function: var(--kp-ease); }
.pack, .single-review, .concert-info-container { border-color: rgba(255,255,255,.09); }

.decision-cta {
  width: min(calc(100% - 32px), 920px);
  margin: 18px auto clamp(70px, 8vw, 110px);
  padding: clamp(36px, 6vw, 66px);
  border: 1px solid rgba(214,172,69,.3);
  border-radius: 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(214,172,69,.15), transparent 48%), #090909;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}
.decision-cta h2 { color:var(--kp-cream); font:700 clamp(28px,4vw,46px)/1.1 var(--ff-head); }
.decision-cta > p:not(.section-kicker) { width:min(100%,620px); margin:16px auto 24px; color:var(--kp-muted); line-height:1.65; }
.decision-cta .btn { min-width:240px; }
.decision-cta small { display:block; margin-top:12px; color:rgba(255,255,255,.38); font-size:11px; }
.concerts-main-link { display:flex; justify-content:center; margin-top:22px; }
.footer-projects {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 22px;
  padding:26px 20px;
  border-block:1px solid rgba(255,255,255,.08);
}
.footer-projects span { color:var(--kp-gold); font-size:10px; font-weight:700; letter-spacing:.22em; }
.footer-projects a { color:rgba(255,255,255,.65); font-size:12px; }
.footer-projects a:hover { color:var(--kp-gold-bright); }

@media (max-width: 900px) {
  .brand-bar { inset: 10px 12px auto; grid-template-columns: 1fr auto; min-height: 56px; }
  .brand-bar__nav { display: none; }
  .brand-bar__identity img { width: 42px; height: 42px; }
  .brand-bar__cta { padding: 11px 13px; }
  .worlds-grid { grid-template-columns: 1fr; }
  .world-card { min-height: 310px; }
}

@media (min-width: 901px) {
  #kpBottomNav, #kpToast { display: none; }
  .footer-spacer { height: 24px; }
}

@media (max-width: 600px) {
  .brand-bar { gap: 8px; border-radius: 15px; }
  .brand-bar__identity { gap: 8px; }
  .brand-bar__identity strong { font-size: 12px; }
  .brand-bar__identity small { font-size: 6px; letter-spacing: .1em; }
  .brand-bar__cta { font-size: 10px; }
  .project-switcher { align-items:end; padding:10px; }
  .project-switcher__panel { padding:20px 14px 14px; border-radius:22px; }
  .project-switcher__list { grid-template-columns:1fr; }
  .project-switcher__list a { min-height:112px; }
  .hero { justify-content: flex-end; padding: 92px 16px 42px; }
  .hero__eyebrow { margin-bottom: 9px; font-size: 8px; }
  .title { font-size: clamp(37px, 11vw, 48px); }
  .subtitle { margin-top: 10px; font-size: 11px; letter-spacing: .08em; }
  .hero__promise { max-width: 360px; margin-top: 8px; font-size: 12px; line-height: 1.45; }
  .metrics { margin-top: 14px; padding: 11px 0; }
  .metric__num { font-size: 20px; }
  .metric__label { font-size: 9px; }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: 13px; }
  .hero-cta .btn { width: 100%; min-width: 0; padding: 14px 18px; font-size: 13px; }
  .scroll-hint { display: none; }
  .ecosystem-intro { padding-inline: 14px; }
  .ecosystem-intro__heading { margin-bottom: 30px; }
  .ecosystem-intro__heading h2 { font-size: 34px; }
  .world-card { min-height: 290px; padding: 24px; border-radius: 18px; }
  .world-card__status { margin-top: 28px; }
  .founder-line { gap: 14px; margin-top: 32px; padding-inline: 0; }
  .founder-line img { width: 70px; height: 70px; }
  .decision-cta { border-radius:18px; }
  .footer-projects { flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  .world-card, .world-card__action b, .brand-bar__cta { transition: none; }
}

/* Unified ecosystem navigation and cross-promotion */
#kpBottomNav.kp-bottom-nav {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: max(14px, env(safe-area-inset-bottom)) !important;
  z-index: 9800 !important;
  width: min(calc(100% - 24px), 610px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 5px !important;
  padding: 6px !important;
  transform: translateX(-50%) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  border-radius: 18px !important;
  background: rgba(5,5,6,.9) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.04) !important;
  backdrop-filter: blur(22px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.2) !important;
}
#kpBottomNav .kp-tab-wrap { display: contents !important; }
#kpBottomNav .kp-tab {
  min-width: 0 !important;
  min-height: 52px !important;
  display: grid !important;
  grid-template-columns: 22px minmax(0,auto) !important;
  place-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 10px !important;
  border: 1px solid transparent !important;
  border-radius: 13px !important;
  color: rgba(255,255,255,.58) !important;
  background: transparent !important;
  font: 700 11px/1.15 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: normal !important;
  transition: color .25s ease, background .25s ease, border-color .25s ease !important;
}
#kpBottomNav .kp-tab:hover { color: var(--kp-cream) !important; background: rgba(255,255,255,.045) !important; }
#kpBottomNav .kp-tab.active {
  color: #171208 !important;
  border-color: rgba(240,217,139,.42) !important;
  background: linear-gradient(135deg,var(--kp-gold-bright),var(--kp-gold)) !important;
  box-shadow: 0 7px 22px rgba(214,172,69,.2) !important;
}
#kpBottomNav .kp-tab-icon { width: 22px !important; height: 22px !important; margin: 0 !important; object-fit: contain !important; filter: grayscale(1) brightness(1.8) !important; }
#kpBottomNav .kp-tab.active .kp-tab-icon { filter: brightness(.18) !important; }
body { padding-bottom: 84px !important; }

.kp-ecosystem-promo {
  width: min(calc(100% - 32px), 1120px);
  margin: clamp(64px,8vw,110px) auto;
  color: var(--kp-cream);
  font-family: var(--ff-text, Inter, Arial, sans-serif);
}
.kp-ecosystem-promo__head { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:end; margin-bottom:24px; }
.kp-ecosystem-promo__head small { color:var(--kp-gold); font-size:9px; font-weight:800; letter-spacing:.24em; text-transform:uppercase; }
.kp-ecosystem-promo__head h2 { margin-top:10px; color:var(--kp-cream); font:700 clamp(28px,4vw,46px)/1.08 var(--ff-head, Georgia, serif); }
.kp-ecosystem-promo__head p { color:var(--kp-muted); font-size:14px; line-height:1.7; }
.kp-ecosystem-promo__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.kp-promo-card { min-height:245px; display:flex; flex-direction:column; padding:28px; border:1px solid rgba(255,255,255,.09); border-radius:20px; color:inherit; background:radial-gradient(circle at 100% 0,rgba(214,172,69,.1),transparent 38%),var(--kp-surface); transition:transform .35s var(--kp-ease),border-color .3s ease; }
.kp-promo-card:hover { transform:translateY(-5px); border-color:rgba(214,172,69,.43); }
.kp-promo-card__label { color:var(--kp-gold); font-size:9px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.kp-promo-card h3 { margin-top:18px; color:var(--kp-cream); font:700 clamp(22px,3vw,31px)/1.08 var(--ff-head, Georgia, serif); }
.kp-promo-card p { max-width:520px; margin-top:12px; color:var(--kp-muted); font-size:13px; line-height:1.65; }
.kp-promo-card__action { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:auto; padding-top:24px; border-top:1px solid rgba(255,255,255,.08); color:var(--kp-gold-bright); font-size:12px; font-weight:800; }
.kp-promo-card__action i { font-size:18px; font-style:normal; }
@media(max-width:700px){
  #kpBottomNav.kp-bottom-nav{bottom:max(8px,env(safe-area-inset-bottom)) !important;border-radius:16px !important}
  #kpBottomNav .kp-tab{min-height:56px !important;grid-template-columns:1fr !important;gap:3px !important;padding:6px 3px !important;font-size:9px !important;text-align:center !important}
  #kpBottomNav .kp-tab-icon{width:19px !important;height:19px !important;margin:auto !important}
  .kp-ecosystem-promo__head,.kp-ecosystem-promo__grid{grid-template-columns:1fr}
  .kp-ecosystem-promo__head{gap:12px}.kp-promo-card{min-height:220px;padding:23px}
}

/* Final pass — align inner project pages with the main KOSTYUK PROJECT hub */
html { scroll-padding-top: 92px; }

.brand-bar {
  inset: 16px 24px auto;
  border-radius: 18px;
}

.brand-bar__identity img {
  object-fit: contain;
  background: transparent;
}


/* Hub uses the plain transparent KP mark without a square container. */
.brand-bar--hub .brand-bar__identity {
  gap: 13px;
}
.brand-bar--hub .brand-bar__identity img {
  width: 76px;
  height: 50px;
  flex: 0 0 76px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .45));
}
.brand-bar--hub .brand-bar__identity strong {
  letter-spacing: .18em;
}
@media (max-width: 720px) {
  .brand-bar--hub .brand-bar__identity {
    gap: 9px;
  }
  .brand-bar--hub .brand-bar__identity img {
    width: 62px;
    height: 42px;
    flex-basis: 62px;
  }
}
@media (max-width: 430px) {
  .brand-bar--hub .brand-bar__identity img {
    width: 56px;
    height: 38px;
    flex-basis: 56px;
  }
}


/* Private events use the same frameless KP mark as the main hub. */
.brand-bar--events .brand-bar__identity {
  gap: 14px;
}
.brand-bar--events .brand-bar__identity img {
  width: 76px;
  height: 50px;
  flex: 0 0 76px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .45));
}
.brand-bar--events .brand-bar__identity strong {
  font-size: clamp(16px, 1.25vw, 19px);
  letter-spacing: .18em;
}
.brand-bar--events .brand-bar__identity small {
  margin-top: 7px;
  color: var(--kp-gold-bright);
  font-size: clamp(11px, .82vw, 13px);
  font-weight: 800;
  letter-spacing: .16em;
}
.kp-footer--events .kp-footer__brand img {
  width: 70px;
  height: 48px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .45));
}
@media (max-width: 720px) {
  .brand-bar--events .brand-bar__identity {
    gap: 9px;
  }
  .brand-bar--events .brand-bar__identity img {
    width: 62px;
    height: 42px;
    flex-basis: 62px;
  }
  .brand-bar--events .brand-bar__identity strong {
    font-size: 12px;
    letter-spacing: .09em;
  }
  .brand-bar--events .brand-bar__identity small {
    font-size: 9.5px;
    letter-spacing: .11em;
  }
}
@media (max-width: 430px) {
  .brand-bar--events .brand-bar__identity img {
    width: 56px;
    height: 38px;
    flex-basis: 56px;
  }
}

.hero {
  padding-bottom: 40px;
}

.hero__content {
  margin-top: auto;
  margin-bottom: 0;
}

.hero__eyebrow {
  font-size: 9px;
  letter-spacing: .26em;
}

.title {
  /* Было clamp(46px, ...): нижняя граница 46px не давала заголовку
     уменьшаться, и «Дмитрий Костюк» обрезался справа на 375px. */
  font-size: clamp(30px, 9vw, 82px);
  letter-spacing: .015em;
}

.subtitle {
  margin-top: 16px;
  font-size: clamp(12px, 1.65vw, 17px);
  letter-spacing: .13em;
}

.hero__promise {
  color: rgba(245,240,229,.72);
}

.metrics {
  width: min(100%, 760px);
}

.section {
  max-width: 1040px;
  padding-top: clamp(58px, 6.4vw, 92px);
  padding-bottom: clamp(58px, 6.4vw, 92px);
}

.wave {
  display: none;
}

.sectionTitle {
  margin-bottom: 28px;
  color: var(--kp-cream);
  font-size: clamp(28px, 4vw, 42px);
}

.video-wrap {
  max-width: 660px;
  margin: 0 auto;
  border-color: rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.54);
}

.about-text {
  max-width: 740px;
  color: rgba(245,240,229,.66);
}

.about-facts.packGrid {
  max-width: 640px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brands {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 0 44px;
  opacity: 1;
}

.brands__label {
  color: #CBA135;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px !important;
}

.brand-set {
  gap: 48px;
  padding-right: 48px;
}

.brand-logo {
  height: 60px;
  max-width: 150px;
  opacity: .75;
  filter: grayscale(1) brightness(1.8) contrast(1.1);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, filter 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(203, 161, 40, 0.3);
}

.packGrid--formats {
  max-width: 900px;
}

.pack {
  animation: none !important;
  background: radial-gradient(circle at 100% 0, rgba(214,172,69,.08), transparent 40%), rgba(16,16,18,.76);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
}

.pack:hover {
  transform: translateY(-5px);
  border-color: rgba(214,172,69,.45);
  box-shadow: 0 26px 80px rgba(0,0,0,.48);
}

.pack__icon {
  width: 46px;
  height: 46px;
  margin: 0 0 16px;
}

.icon-svg {
  width: 34px;
  height: 34px;
  filter: sepia(1) saturate(1.35) hue-rotate(350deg) brightness(1.15);
  opacity: .78;
}

.process {
  width: min(100%, 620px);
  margin: 0 auto;
}

.decision-cta {
  margin-top: 0;
  margin-bottom: clamp(58px, 6.5vw, 90px);
}

.swiper-reviews,
.reviews-nav {
  max-width: 700px;
}

.single-review {
  background: linear-gradient(145deg, rgba(19,20,27,.92), rgba(9,9,11,.94));
}

.concerts-section {
  max-width: 980px;
}

.swiper-concerts {
  max-width: 580px;
}

.concert-info-container {
  max-width: 560px;
  margin-inline: auto;
}

.swiper-gallery {
  max-width: 680px;
  margin-inline: auto;
}

.swiper-gallery .swiper-slide {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.kp-ecosystem-promo {
  position: relative;
  z-index: 2;
  margin-top: clamp(42px, 5.5vw, 72px);
  margin-bottom: clamp(58px, 7vw, 92px);
}

.kp-ecosystem-promo__head {
  align-items: center;
}

.kp-promo-card {
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(214,172,69,.28);
  background: radial-gradient(circle at 100% 0, rgba(214,172,69,.14), transparent 42%), #16161a;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.kp-promo-card:hover {
  border-color: rgba(214,172,69,.6);
  background: radial-gradient(circle at 100% 0, rgba(214,172,69,.2), transparent 42%), #1c1c22;
}

footer {
  padding-bottom: 34px;
}

.footer-spacer {
  height: 0;
}

body {
  padding-bottom: 0 !important;
}

@media (min-width: 701px) {
  #kpBottomNav.kp-bottom-nav,
  #kpToast {
    display: none !important;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 86px !important;
  }

  .brand-bar {
    inset: 10px 12px auto;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-facts.packGrid {
    grid-template-columns: 1fr;
  }

  .brands {
    padding-bottom: 24px;
  }

  #kpBottomNav.kp-bottom-nav {
    display: grid !important;
    width: min(calc(100% - 18px), 520px) !important;
  }
}

/* ==========================================================================
   CONSOLIDATED BRAND STYLES (PORTAL, SWITCHER, FLOATING BUTTON)
   ========================================================================== */

    #kostyukPortal {
      position: fixed;
      inset: 0;
      z-index: 99999;
      pointer-events: none;
      opacity: 0;
      background: radial-gradient(ellipse at center, #0b0a18 0%, #000 75%);
      transition: opacity 0.5s ease;
      overflow: hidden;
    }
    #kostyukPortal.active {
      opacity: 1;
      pointer-events: all;
      animation: kpZoom 1.8s cubic-bezier(0.5,0,0.3,1) forwards;
    }
    @keyframes kpZoom {
      0%   { transform: scale(1); filter: blur(0); }
      70%  { transform: scale(1.05); }
      100% { transform: scale(1.25); filter: blur(2px); }
    }
    .kp-ring-outer, .kp-ring-inner {
      position: absolute;
      top: 50%; left: 50%;
      border-radius: 50%;
      opacity: 0;
      transform: translate(-50%,-50%) scale(0.2);
    }
    .kp-ring-outer {
      width: 460px; height: 460px;
      margin: -230px 0 0 -230px;
      border: 1px solid rgba(201,168,76,0.55);
      box-shadow: 0 0 60px rgba(201,168,76,0.25), inset 0 0 60px rgba(201,168,76,0.18);
    }
    .kp-ring-inner {
      width: 280px; height: 280px;
      margin: -140px 0 0 -140px;
      border: 1px dashed rgba(201,168,76,0.75);
      box-shadow: 0 0 40px rgba(201,168,76,0.3);
    }
    #kostyukPortal.active .kp-ring-outer { animation: kpRingOut 1.8s cubic-bezier(0.22,1,0.36,1) forwards; }
    #kostyukPortal.active .kp-ring-inner { animation: kpRingIn 1.8s cubic-bezier(0.22,1,0.36,1) forwards 0.15s; }
    @keyframes kpRingOut {
      0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.2) rotate(0deg);   border-width: 3px; }
      40%  { opacity: 1; }
      100% { opacity: 0; transform: translate(-50%,-50%) scale(4) rotate(120deg);   border-width: 0.5px; }
    }
    @keyframes kpRingIn {
      0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.15) rotate(0deg); }
      35%  { opacity: 1; }
      100% { opacity: 0; transform: translate(-50%,-50%) scale(3)    rotate(-180deg); }
    }
    .kp-core {
      position: absolute;
      top: 50%; left: 50%;
      width: 14px; height: 14px;
      margin: -7px 0 0 -7px;
      border-radius: 50%;
      background: radial-gradient(circle, #fff5d6, #cba128 40%, transparent 80%);
      box-shadow: 0 0 30px rgba(255,245,214,0.9), 0 0 80px rgba(201,168,76,0.7), 0 0 160px rgba(201,168,76,0.4);
      opacity: 0;
    }
    #kostyukPortal.active .kp-core { animation: kpCore 1.8s ease-out forwards; }
    @keyframes kpCore {
      0%   { opacity: 0; transform: scale(0); }
      15%  { opacity: 1; transform: scale(1); }
      55%  { opacity: 1; transform: scale(3.5); box-shadow: 0 0 80px #fff5d6, 0 0 160px rgba(201,168,76,1), 0 0 240px rgba(201,168,76,0.6); }
      100% { opacity: 0; transform: scale(18); }
    }
    .kp-rays {
      position: absolute;
      top: 50%; left: 50%;
      width: 4px; height: 4px;
      margin: -2px 0 0 -2px;
      opacity: 0;
    }
    .kp-ray {
      position: absolute;
      top: 50%; left: 50%;
      width: 2px; height: 0;
      transform-origin: top center;
      background: linear-gradient(180deg, rgba(201,168,76,0.9), transparent 80%);
      box-shadow: 0 0 14px rgba(201,168,76,0.7);
    }
    .kp-ray:nth-child(1){transform:translateX(-50%) rotate(0deg)}
    .kp-ray:nth-child(2){transform:translateX(-50%) rotate(45deg)}
    .kp-ray:nth-child(3){transform:translateX(-50%) rotate(90deg)}
    .kp-ray:nth-child(4){transform:translateX(-50%) rotate(135deg)}
    .kp-ray:nth-child(5){transform:translateX(-50%) rotate(180deg)}
    .kp-ray:nth-child(6){transform:translateX(-50%) rotate(225deg)}
    .kp-ray:nth-child(7){transform:translateX(-50%) rotate(270deg)}
    .kp-ray:nth-child(8){transform:translateX(-50%) rotate(315deg)}
    #kostyukPortal.active .kp-rays { animation: kpRaysFade 1.8s ease-out forwards 0.2s; }
    #kostyukPortal.active .kp-ray  { animation: kpRayGrow 1.6s ease-out forwards 0.2s; }
    @keyframes kpRaysFade { 0%{opacity:0} 30%{opacity:1} 100%{opacity:0.3} }
    @keyframes kpRayGrow  { 0%{height:0} 100%{height:60vh} }
    .kp-star {
      position: absolute;
      width: 2px; height: 2px;
      border-radius: 50%;
      background: #fff5d6;
      box-shadow: 0 0 4px #fff5d6;
      opacity: 0;
    }
    #kostyukPortal.active .kp-star { animation: kpStar 1.8s ease-out forwards; }
    @keyframes kpStar {
      0%   { opacity: 0; transform: scale(0); }
      50%  { opacity: 1; transform: scale(1); }
      100% { opacity: 0; transform: scale(0.3); }
    }
    .kp-name {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) translateY(120px);
      font-family: 'Cinzel', serif;
      font-size: clamp(22px, 4.5vw, 44px);
      color: #cba128;
      letter-spacing: 0.45em;
      white-space: nowrap;
      text-shadow: 0 0 24px rgba(201,168,76,0.6), 0 0 60px rgba(201,168,76,0.3);
      display: flex;
    }
    .kp-name span {
      display: inline-block;
      opacity: 0;
      transform: translateY(20px);
      filter: blur(6px);
    }
    #kostyukPortal.active .kp-name span { animation: kpLetter 0.6s ease-out forwards; }
    @keyframes kpLetter {
      0%   { opacity: 0; transform: translateY(20px); filter: blur(6px); }
      60%  { opacity: 1; transform: translateY(0);    filter: blur(0); }
      100% { opacity: 0; transform: translateY(-8px); filter: blur(2px); }
    }
    .kp-vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.85) 100%);
      opacity: 0;
    }
    #kostyukPortal.active .kp-vignette { animation: kpVig 1.8s ease-out forwards; }
    @keyframes kpVig { 0%{opacity:0} 100%{opacity:1} }

    /* Project Switcher premium styling like the hub cards */
    .project-switcher__list a {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 250px !important;
      text-align: left;
    }
    .project-switcher__list a::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -2;
      background-size: cover;
      background-position: center;
      opacity: 0.35;
      filter: saturate(0.75) contrast(1.03);
      transition: opacity 0.4s ease, transform 0.6s ease;
    }
    .project-switcher__list a::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(to bottom, rgba(5,5,5,0.08) 0%, rgba(5,5,5,0.16) 38%, rgba(7,7,7,0.94) 78%, #070707 100%);
    }
    .project-switcher__list a:hover::before {
      opacity: 0.65;
      transform: scale(1.03);
    }
    .project-switcher__list .switcher-item--shows::before {
      background-image: url('../images/direction-shows.webp');
      background-position: 50% 44%;
    }
    .project-switcher__list .switcher-item--events::before {
      background-image: url('../images/direction-events.webp');
      background-position: 50% 43%;
    }
    .project-switcher__list .switcher-item--school::before {
      background-image: url('../images/direction-school.webp');
      background-position: 50% 42%;
    }
    
    /* Current navigation state style */
    .project-switcher__list a.is-current {
      border-color: var(--gold) !important;
      box-shadow: 0 0 20px rgba(203, 161, 40, 0.25) !important;
    }
    .project-switcher__list a.is-current::before {
      opacity: 0.5;
    }
    .project-switcher__list .switcher-badge {
      align-self: flex-start;
      margin-bottom: auto;
      padding: 4px 8px;
      border: 1px solid rgba(203, 161, 40, 0.3);
      border-radius: 20px;
      color: var(--gold2);
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .project-switcher__list .switcher-index {
      display: none !important;
    }
    .tg-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background: linear-gradient(140deg, var(--kp-gold-bright), var(--kp-gold));
      color: var(--kp-black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(36, 161, 222, 0.4);
      z-index: 99999;
      transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    }
    .tg-float:hover {
      transform: scale(1.1) translateY(-2px);
      box-shadow: 0 6px 20px rgba(36, 161, 222, 0.6);
    }
    @media (max-width: 600px) {
      .tg-float {
        bottom: 85px; /* Offset to clear mobile bottom navigation bar */
        right: 16px;
        width: 50px;
        height: 50px;
      }
      .tg-float svg {
        width: 24px;
        height: 24px;
      }
    }


/* ===== Единый подвал экосистемы ===== */
footer.kp-footer, .kp-footer {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 46px max(24px, calc((100vw - 1200px) / 2)) 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--kp-surface);
  display: block;
  text-align: left;
}
.kp-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.kp-footer__brand { display: flex; align-items: center; gap: 12px; }
.kp-footer__brand img { width: 44px; height: 44px; object-fit: contain; background: transparent; }

.kp-footer--hub .kp-footer__brand {
  gap: 14px;
}
.kp-footer--hub .kp-footer__brand img {
  width: 76px;
  height: 54px;
  flex: 0 0 76px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .42));
}
@media (max-width: 720px) {
  .kp-footer--hub .kp-footer__brand img {
    width: 62px;
    height: 44px;
    flex-basis: 62px;
  }
}
.kp-footer__brand span { display: flex; flex-direction: column; gap: 4px; }
.kp-footer__brand strong { color: var(--kp-cream); font: 700 13px/1.1 var(--ff-head); letter-spacing: .16em; }
.kp-footer__brand small { color: var(--kp-muted); font: 400 11px/1.1 var(--ff-text); }
.kp-footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.kp-footer__nav a { color: rgba(255, 255, 255, .62); font: 500 13px var(--ff-text); transition: color .25s ease; }
.kp-footer__nav a:hover { color: var(--kp-gold-bright); }
.kp-footer__nav a.is-current { color: var(--kp-gold); }
.kp-footer__contacts { display: flex; align-items: center; gap: 18px; }
.kp-footer__contacts a { color: var(--kp-cream); font: 600 13px var(--ff-text); transition: color .25s ease; }
.kp-footer__contacts a:hover { color: var(--kp-gold-bright); }
.kp-footer__geo {
  max-width: 1200px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .36);
  font: 400 12px/1.55 var(--ff-text);
}
.kp-footer__copy {
  max-width: 1200px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .3);
  font: 400 11px var(--ff-text);
}
@media (max-width: 720px) {
  .kp-footer { padding: 34px 20px 30px; }
  .kp-footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .kp-footer__nav { gap: 16px; }
}

/* ===== Единая типографика заголовков ===== */
body h1, body .title, body .hero-title, body .hero__title {
  font-family: var(--ff-head, 'Cinzel', Georgia, serif) !important;
  font-size: clamp(40px, 6.6vw, 82px) !important;
  font-weight: 700 !important;
  line-height: 1.03;
  letter-spacing: .02em;
}
body h2, body .sectionTitle, body .section-title {
  font-family: var(--ff-head, 'Cinzel', Georgia, serif) !important;
  font-size: clamp(26px, 3.8vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.12;
}

/* ===== Единые кнопки действия ===== */
body .buy-cta, body .btn--primary, body .cta-primary,
body .show-sales-card__cta, body .kostyuk-cta, body [class*="btn-gold"] {
  height: 54px !important;
  padding: 0 30px !important;
  border-radius: 14px !important;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16120a !important;
  background: linear-gradient(135deg, var(--kp-gold-bright), var(--kp-gold)) !important;
  font: 700 14px/1 var(--ff-text) !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(214,172,69,.22);
  transition: transform .25s var(--kp-ease), box-shadow .25s ease;
}
body .buy-cta:hover, body .btn--primary:hover, body .show-sales-card__cta:hover, body .kostyuk-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(214,172,69,.34);
}

/* ===== Единые карточки и ритм секций ===== */
body .card:not([class*="__"]),
body .pack:not([class*="__"]),
body .show-sales-card {
  border-radius: 18px !important;
  border: 1px solid var(--kp-line) !important;
  background: var(--kp-surface-2) !important;
}
body section.section,
body .app-section,
body .section:not([class*="-"]) {
  padding-top: clamp(56px, 7vw, 88px) !important;
  padding-bottom: clamp(56px, 7vw, 88px) !important;
}

/* ===== Единый основной текст ===== */
body p.section__text, body p.section-sub, body p.about-text, body .section p:not([class*="hero"]),
body .app-section p:not([class*="hero"]), body li:not([class*="__"]) {
  font-family: var(--ff-text, 'Inter', sans-serif) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: rgba(245, 240, 229, .7) !important;
}
body .section-label, body .section-kicker, body .hero__eyebrow, body .eyebrow, body .hero-suptitle {
  font-size: 10px !important;
  letter-spacing: .28em !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--kp-gold-bright) !important;
}

/* ===== Единая ширина, ссылки, чипы ===== */
body .container {
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
}
body .section > a:not([class]), body .app-section a:not([class]),
body .section__text a, body p a:not([class]) {
  color: var(--kp-gold) !important;
  transition: color .25s ease;
}
body .section__text a:hover, body p a:not([class]):hover { color: var(--kp-gold-bright) !important; }
body [class*="tag"]:not([class*="__"]), body [class*="chip"]:not([class*="__"]),
body .show-hero__meta span, body .hero-age {
  border-radius: 999px !important;
}
@media (max-width: 720px) {
  body .container { padding-left: 20px; padding-right: 20px; }
}

/* Единая ширина контента секций */
body section.section, body .app-section, body .section:not([class*="-"]) {
  padding-left: max(24px, calc((100% - 1160px) / 2)) !important;
  padding-right: max(24px, calc((100% - 1160px) / 2)) !important;
}
@media (max-width: 720px) {
  body section.section, body .app-section, body .section:not([class*="-"]) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ===== Единая композиция секций ===== */
body h2, body .sectionTitle, body .section-title, body .section__title,
body .section-label, body .section-kicker, body .section__eyebrow {
  text-align: center !important;
}
body .section-header, body .section__head { text-align: center !important; }
body .section-sub, body .section__lead {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Единая ширина текстовых блоков внутри секций */
body .section > *:not([class*="grid"]):not([class*="row"]):not([class*="cards"]),
body .app-section > *:not([class*="grid"]):not([class*="row"]):not([class*="cards"]) {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ДЕСКТОП: крупнее и шире (экран от 1000px) ===== */
@media (min-width: 1000px) {
  /* Заголовки крупнее */
  body h1, body .title, body .hero-title, body .hero__title {
    font-size: clamp(72px, 6vw, 104px) !important;
  }
  body h2, body .sectionTitle, body .section-title, body .section__title {
    font-size: clamp(40px, 3.4vw, 56px) !important;
  }
  /* Основной текст крупнее и читаемее */
  body p.section__text, body p.section-sub, body p.about-text,
  body .section p:not([class*="hero"]), body .app-section p:not([class*="hero"]) {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }
  /* Кнопки выше и заметнее */
  body .buy-cta, body .btn--primary, body .cta-primary,
  body .show-sales-card__cta, body .kostyuk-cta {
    height: 62px !important;
    padding: 0 40px !important;
    font-size: 15px !important;
  }
  /* Контент шире — меньше пустоты по бокам */
  body .container { max-width: 1240px !important; }
  body.show-page .section { width: min(100%, 1240px) !important; max-width: 1240px !important; }
  body section.section, body .app-section, body .section:not([class*="-"]) {
    padding-left: max(32px, calc((100% - 1240px) / 2)) !important;
    padding-right: max(32px, calc((100% - 1240px) / 2)) !important;
  }
  body .section > *:not([class*="grid"]):not([class*="row"]):not([class*="cards"]),
  body .app-section > *:not([class*="grid"]):not([class*="row"]):not([class*="cards"]) {
    max-width: 1240px;
  }
}

/* Private events parity lockup and section alignment */
body.events-page .brand-bar--events .brand-bar__identity {
  gap: 14px !important;
  min-width: 0 !important;
}
body.events-page .brand-bar--events .brand-bar__identity img {
  width: 76px !important;
  height: 50px !important;
  flex: 0 0 76px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
body.events-page .brand-bar--events .brand-bar__identity strong {
  color: var(--kp-cream) !important;
  font: 700 15px/1.1 var(--ff-head, Georgia, serif) !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
}
body.events-page .brand-bar--events .brand-bar__identity small {
  margin-top: 6px !important;
  color: var(--kp-gold-bright) !important;
  font: 800 11px/1 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

body.events-page #formats.section {
  width: min(calc(100% - 32px), 1160px) !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
body.events-page #formats .sectionTitle {
  width: 100% !important;
  text-align: center !important;
}
body.events-page #formats .packGrid--formats {
  width: min(100%, 1080px) !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(3, minmax(0, 340px)) !important;
  justify-content: center !important;
  justify-items: stretch !important;
}

body.events-page .kp-ecosystem-promo--events {
  width: min(calc(100% - 32px), 1120px) !important;
  display: grid !important;
  grid-template-columns: minmax(240px, .48fr) minmax(0, 1.52fr) !important;
  align-items: center !important;
  gap: 26px !important;
  margin: clamp(42px, 5.5vw, 72px) auto clamp(58px, 7vw, 92px) !important;
  padding: 14px !important;
  border: 1px solid rgba(231,199,118,.18) !important;
  border-radius: 20px !important;
  background: linear-gradient(110deg, rgba(231,199,118,.075), rgba(255,255,255,.025) 42%, rgba(0,0,0,.2)) !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.24) !important;
}
body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head {
  display: block !important;
  margin: 0 !important;
  padding: 2px 8px !important;
}
body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head small {
  display: block !important;
  color: var(--kp-gold-bright) !important;
  font: 800 8px/1 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
}
body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head h2 {
  max-width: 14ch !important;
  margin-top: 6px !important;
  color: var(--kp-cream) !important;
  font: 700 clamp(18px, 1.35vw, 22px)/1.08 var(--ff-head, Georgia, serif) !important;
  text-align: left !important;
  text-wrap: balance !important;
}
body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head p {
  max-width: none !important;
  margin-top: 14px !important;
  color: var(--kp-muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  text-align: left !important;
}
body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
body.events-page .kp-ecosystem-promo--events .kp-promo-card {
  min-height: 62px !important;
  padding: 13px 16px !important;
  border-radius: 14px !important;
  background: rgba(8,8,8,.72) !important;
}
body.events-page .kp-ecosystem-promo--events .kp-promo-card h3 {
  margin-top: 0 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}
body.events-page .kp-ecosystem-promo--events .kp-promo-card p {
  margin-top: 3px !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
}
body.events-page .kp-ecosystem-promo--events .kp-promo-card__label {
  display: none !important;
}
body.events-page .kp-ecosystem-promo--events .kp-promo-card__action {
  margin-top: 10px !important;
  padding-top: 8px !important;
  font-size: 11px !important;
}

body.events-page .kp-footer--events .kp-footer__brand {
  gap: 14px !important;
  align-items: center !important;
}
body.events-page .kp-footer--events .kp-footer__brand img {
  width: 76px !important;
  height: 54px !important;
  flex: 0 0 76px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
body.events-page .kp-footer--events .kp-footer__brand strong {
  color: var(--kp-cream) !important;
  font: 700 14px/1.1 var(--ff-head, Georgia, serif) !important;
  letter-spacing: .17em !important;
}
body.events-page .kp-footer--events .kp-footer__brand small {
  color: rgba(245,240,229,.66) !important;
  font: 500 12px/1.25 var(--ff-text, Inter, Arial, sans-serif) !important;
}

@media (max-width: 980px) {
  body.events-page #formats .packGrid--formats {
    width: min(100%, 420px) !important;
    grid-template-columns: minmax(0, 420px) !important;
  }
  body.events-page .kp-ecosystem-promo--events {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px !important;
    border-radius: 17px !important;
  }
  body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head {
    padding: 2px 4px 4px !important;
  }
  body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__head h2 {
    max-width: 16ch !important;
    font-size: 17px !important;
  }
  body.events-page .kp-ecosystem-promo--events .kp-ecosystem-promo__grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 720px) {
  body.events-page .brand-bar--events .brand-bar__identity {
    gap: 9px !important;
  }
  body.events-page .brand-bar--events .brand-bar__identity img {
    width: 62px !important;
    height: 42px !important;
    flex-basis: 62px !important;
  }
  body.events-page .brand-bar--events .brand-bar__identity strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }
  body.events-page .brand-bar--events .brand-bar__identity small {
    font-size: 9.5px !important;
    letter-spacing: .11em !important;
  }
  body.events-page .kp-footer--events .kp-footer__brand img {
    width: 62px !important;
    height: 44px !important;
    flex-basis: 62px !important;
  }
}
@media (max-width: 430px) {
  body.events-page .brand-bar--events .brand-bar__identity img {
    width: 56px !important;
    height: 38px !important;
    flex-basis: 56px !important;
  }
}



/* Final ecosystem parity: unified brand shell and project switcher */
.brand-bar--hub .brand-bar__identity,
.brand-bar--shows .brand-bar__identity,
.brand-bar--events .brand-bar__identity,
.brand-bar--school .brand-bar__identity {
  gap: 14px !important;
  min-width: 0 !important;
}
.brand-bar--hub .brand-bar__identity img,
.brand-bar--shows .brand-bar__identity img,
.brand-bar--events .brand-bar__identity img,
.brand-bar--school .brand-bar__identity img {
  width: 76px !important;
  height: 50px !important;
  flex: 0 0 76px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
.brand-bar--hub .brand-bar__identity strong,
.brand-bar--shows .brand-bar__identity strong,
.brand-bar--events .brand-bar__identity strong,
.brand-bar--school .brand-bar__identity strong {
  color: var(--kp-cream) !important;
  font: 700 clamp(15px, 1.18vw, 18px)/1.08 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}
.brand-bar--hub .brand-bar__identity small,
.brand-bar--shows .brand-bar__identity small,
.brand-bar--events .brand-bar__identity small,
.brand-bar--school .brand-bar__identity small {
  margin-top: 7px !important;
  color: var(--kp-gold-bright) !important;
  font: 800 clamp(10px, .78vw, 12px)/1 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}
.kp-footer--hub .kp-footer__brand,
.kp-footer--shows .kp-footer__brand,
.kp-footer--events .kp-footer__brand,
.kp-footer--school .kp-footer__brand {
  gap: 14px !important;
  align-items: center !important;
}
.kp-footer--hub .kp-footer__brand img,
.kp-footer--shows .kp-footer__brand img,
.kp-footer--events .kp-footer__brand img,
.kp-footer--school .kp-footer__brand img {
  width: 76px !important;
  height: 54px !important;
  flex: 0 0 76px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
.kp-footer--hub .kp-footer__brand strong,
.kp-footer--shows .kp-footer__brand strong,
.kp-footer--events .kp-footer__brand strong,
.kp-footer--school .kp-footer__brand strong {
  color: var(--kp-cream) !important;
  font: 700 14px/1.1 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
}
.kp-footer--hub .kp-footer__brand small,
.kp-footer--shows .kp-footer__brand small,
.kp-footer--events .kp-footer__brand small,
.kp-footer--school .kp-footer__brand small {
  color: rgba(245,240,229,.66) !important;
  font: 500 12px/1.25 var(--ff-text, Inter, Arial, sans-serif) !important;
}
.project-switcher__list a {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: 250px !important;
}
.project-switcher__list a::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  background-size: cover !important;
  opacity: .42 !important;
  filter: saturate(.9) contrast(1.05) brightness(.9) !important;
  transition: opacity .4s ease, transform .6s ease !important;
}
.project-switcher__list a::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: linear-gradient(to bottom, rgba(5,5,5,.1), rgba(5,5,5,.28) 38%, rgba(7,7,7,.94) 78%, #070707) !important;
}
.project-switcher__list a:hover::before {
  opacity: .68 !important;
  transform: scale(1.03) !important;
}
.project-switcher__list .switcher-item--shows::before {
  background-image: url('/images/directions/direction-shows-live.webp') !important;
  background-position: 50% 42% !important;
}
.project-switcher__list .switcher-item--events::before {
  background-image: url('/images/directions/direction-events-live.webp') !important;
  background-position: 50% 46% !important;
}
.project-switcher__list .switcher-item--school::before {
  background-image: url('/images/directions/direction-school-live.webp') !important;
  background-position: 50% 42% !important;
}
.project-switcher__list b {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 16px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,.09) !important;
  color: var(--kp-gold-bright) !important;
  font: 700 12px/1.25 var(--ff-text, Inter, Arial, sans-serif) !important;
}
@media (max-width: 720px) {
  .brand-bar--hub .brand-bar__identity,
  .brand-bar--shows .brand-bar__identity,
  .brand-bar--events .brand-bar__identity,
  .brand-bar--school .brand-bar__identity { gap: 9px !important; }
  .brand-bar--hub .brand-bar__identity img,
  .brand-bar--shows .brand-bar__identity img,
  .brand-bar--events .brand-bar__identity img,
  .brand-bar--school .brand-bar__identity img {
    width: 62px !important;
    height: 42px !important;
    flex-basis: 62px !important;
  }
  .brand-bar--hub .brand-bar__identity strong,
  .brand-bar--shows .brand-bar__identity strong,
  .brand-bar--events .brand-bar__identity strong,
  .brand-bar--school .brand-bar__identity strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }
  .brand-bar--hub .brand-bar__identity small,
  .brand-bar--shows .brand-bar__identity small,
  .brand-bar--events .brand-bar__identity small,
  .brand-bar--school .brand-bar__identity small {
    font-size: 9.5px !important;
    letter-spacing: .11em !important;
  }
  .kp-footer--hub .kp-footer__brand img,
  .kp-footer--shows .kp-footer__brand img,
  .kp-footer--events .kp-footer__brand img,
  .kp-footer--school .kp-footer__brand img {
    width: 62px !important;
    height: 44px !important;
    flex-basis: 62px !important;
  }
  .project-switcher__list a { min-height: 132px !important; }
}
@media (max-width: 430px) {
  .brand-bar--hub .brand-bar__identity img,
  .brand-bar--shows .brand-bar__identity img,
  .brand-bar--events .brand-bar__identity img,
  .brand-bar--school .brand-bar__identity img {
    width: 56px !important;
    height: 38px !important;
    flex-basis: 56px !important;
  }
}


/* Final events typography override after legacy events-page lockup */
body.events-page .brand-bar--events .brand-bar__identity strong,
body.events-page .kp-footer--events .kp-footer__brand strong {
  font-family: var(--ff-text, Inter, Arial, sans-serif) !important;
}
body.events-page .brand-bar--events .brand-bar__identity strong {
  font-size: clamp(15px, 1.18vw, 18px) !important;
  line-height: 1.08 !important;
}
body.events-page .brand-bar--events .brand-bar__identity small {
  font-size: clamp(10px, .78vw, 12px) !important;
}
@media (max-width: 720px) {
  body.events-page .brand-bar--events .brand-bar__identity strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }
  body.events-page .brand-bar--events .brand-bar__identity small {
    font-size: 9.5px !important;
    letter-spacing: .11em !important;
  }
}

/* Final brand lockup parity across the three project sites */
.brand-bar--shows .brand-bar__identity strong,
.brand-bar--events .brand-bar__identity strong,
.brand-bar--school .brand-bar__identity strong,
body.events-page .brand-bar--events .brand-bar__identity strong,
body.school-page .brand-bar--school .brand-bar__identity strong {
  font-family: var(--ff-text, Inter, Arial, sans-serif) !important;
  font-size: clamp(15px, 1.18vw, 18px) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
}
.brand-bar--shows .brand-bar__identity small,
.brand-bar--events .brand-bar__identity small,
.brand-bar--school .brand-bar__identity small,
body.events-page .brand-bar--events .brand-bar__identity small,
body.school-page .brand-bar--school .brand-bar__identity small {
  margin-top: 7px !important;
  font-family: var(--ff-text, Inter, Arial, sans-serif) !important;
  font-size: clamp(11px, .84vw, 13px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .17em !important;
  color: var(--kp-gold-bright) !important;
  text-transform: uppercase !important;
}
@media (max-width: 720px) {
  .brand-bar--shows .brand-bar__identity strong,
  .brand-bar--events .brand-bar__identity strong,
  .brand-bar--school .brand-bar__identity strong,
  body.events-page .brand-bar--events .brand-bar__identity strong,
  body.school-page .brand-bar--school .brand-bar__identity strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }
  .brand-bar--shows .brand-bar__identity small,
  .brand-bar--events .brand-bar__identity small,
  .brand-bar--school .brand-bar__identity small,
  body.events-page .brand-bar--events .brand-bar__identity small,
  body.school-page .brand-bar--school .brand-bar__identity small {
    font-size: 10px !important;
    letter-spacing: .11em !important;
  }
}

/* Ecosystem design QA lock — 2026-08-27 */
.brand-bar {
  height: 62px !important;
  min-height: 62px !important;
  padding: 7px 10px !important;
  border-radius: 18px !important;
  background: rgba(4, 4, 5, .78) !important;
  overflow: hidden !important;
}
.brand-bar--hub .brand-bar__identity,
.brand-bar--shows .brand-bar__identity,
.brand-bar--events .brand-bar__identity,
.brand-bar--school .brand-bar__identity {
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
}
.brand-bar--hub .brand-bar__identity img,
.brand-bar--shows .brand-bar__identity img,
.brand-bar--events .brand-bar__identity img,
.brand-bar--school .brand-bar__identity img {
  width: 76px !important;
  height: 50px !important;
  flex: 0 0 76px !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
.brand-bar--hub .brand-bar__identity strong,
.brand-bar--shows .brand-bar__identity strong,
.brand-bar--events .brand-bar__identity strong,
.brand-bar--school .brand-bar__identity strong,
body.events-page .brand-bar--events .brand-bar__identity strong,
body.school-page .brand-bar--school .brand-bar__identity strong {
  color: var(--kp-cream) !important;
  font-family: var(--ff-text, Inter, Arial, sans-serif) !important;
  font-size: clamp(16px, 1.24vw, 19px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.brand-bar--hub .brand-bar__identity small,
.brand-bar--shows .brand-bar__identity small,
.brand-bar--events .brand-bar__identity small,
.brand-bar--school .brand-bar__identity small,
body.events-page .brand-bar--events .brand-bar__identity small,
body.school-page .brand-bar--school .brand-bar__identity small {
  margin-top: 7px !important;
  color: var(--kp-gold-bright) !important;
  font-family: var(--ff-text, Inter, Arial, sans-serif) !important;
  font-size: clamp(12px, .9vw, 14px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.kp-footer--hub .kp-footer__brand,
.kp-footer--shows .kp-footer__brand,
.kp-footer--events .kp-footer__brand,
.kp-footer--school .kp-footer__brand {
  gap: 14px !important;
  align-items: center !important;
}
.kp-footer--hub .kp-footer__brand img,
.kp-footer--shows .kp-footer__brand img,
.kp-footer--events .kp-footer__brand img,
.kp-footer--school .kp-footer__brand img {
  width: 76px !important;
  height: 54px !important;
  flex: 0 0 76px !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
.kp-footer--hub .kp-footer__brand strong,
.kp-footer--shows .kp-footer__brand strong,
.kp-footer--events .kp-footer__brand strong,
.kp-footer--school .kp-footer__brand strong {
  color: var(--kp-cream) !important;
  font: 800 14px/1.08 var(--ff-text, Inter, Arial, sans-serif) !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
}
.kp-footer--hub .kp-footer__brand small,
.kp-footer--shows .kp-footer__brand small,
.kp-footer--events .kp-footer__brand small,
.kp-footer--school .kp-footer__brand small {
  color: rgba(245,240,229,.66) !important;
  font: 500 12px/1.25 var(--ff-text, Inter, Arial, sans-serif) !important;
}
.project-switcher__list a {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: 250px !important;
  text-align: left !important;
}
.project-switcher__list a::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  background-size: cover !important;
  opacity: .46 !important;
  filter: saturate(.92) contrast(1.05) brightness(.92) !important;
  transition: opacity .4s ease, transform .6s ease !important;
}
.project-switcher__list a::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: linear-gradient(to bottom, rgba(5,5,5,.08), rgba(5,5,5,.26) 38%, rgba(7,7,7,.94) 78%, #070707) !important;
}
.project-switcher__list a:hover::before {
  opacity: .7 !important;
  transform: scale(1.03) !important;
}
.project-switcher__list .switcher-item--shows::before {
  background-image: url('/images/directions/direction-shows-live.webp') !important;
  background-position: 50% 42% !important;
}
.project-switcher__list .switcher-item--events::before {
  background-image: url('/images/directions/direction-events-live.webp') !important;
  background-position: 50% 46% !important;
}
.project-switcher__list .switcher-item--school::before {
  background-image: url('/images/directions/direction-school-live.webp') !important;
  background-position: 50% 42% !important;
}
.project-switcher__list b {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 16px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,.09) !important;
  color: var(--kp-gold-bright) !important;
  font: 700 12px/1.25 var(--ff-text, Inter, Arial, sans-serif) !important;
}
.project-switcher__list strong {
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance !important;
}
body.events-page #formats.section,
body.events-page .section#formats {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
body.events-page #formats .packGrid--formats {
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}
body.events-page .kp-ecosystem-promo--events h2 {
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1.08 !important;
  text-wrap: balance !important;
}
@media (max-width: 720px) {
  .brand-bar {
    height: 58px !important;
    min-height: 58px !important;
    padding: 7px 9px !important;
  }
  .brand-bar--hub .brand-bar__identity,
  .brand-bar--shows .brand-bar__identity,
  .brand-bar--events .brand-bar__identity,
  .brand-bar--school .brand-bar__identity {
    gap: 9px !important;
  }
  .brand-bar--hub .brand-bar__identity img,
  .brand-bar--shows .brand-bar__identity img,
  .brand-bar--events .brand-bar__identity img,
  .brand-bar--school .brand-bar__identity img {
    width: 62px !important;
    height: 42px !important;
    flex-basis: 62px !important;
  }
  .brand-bar--hub .brand-bar__identity strong,
  .brand-bar--shows .brand-bar__identity strong,
  .brand-bar--events .brand-bar__identity strong,
  .brand-bar--school .brand-bar__identity strong,
  body.events-page .brand-bar--events .brand-bar__identity strong,
  body.school-page .brand-bar--school .brand-bar__identity strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }
  .brand-bar--hub .brand-bar__identity small,
  .brand-bar--shows .brand-bar__identity small,
  .brand-bar--events .brand-bar__identity small,
  .brand-bar--school .brand-bar__identity small,
  body.events-page .brand-bar--events .brand-bar__identity small,
  body.school-page .brand-bar--school .brand-bar__identity small {
    font-size: 10px !important;
    letter-spacing: .11em !important;
  }
  .kp-footer--hub .kp-footer__brand img,
  .kp-footer--shows .kp-footer__brand img,
  .kp-footer--events .kp-footer__brand img,
  .kp-footer--school .kp-footer__brand img {
    width: 62px !important;
    height: 44px !important;
    flex-basis: 62px !important;
  }
  .project-switcher__list a {
    min-height: 132px !important;
  }
}
@media (max-width: 430px) {
  .brand-bar--hub .brand-bar__identity img,
  .brand-bar--shows .brand-bar__identity img,
  .brand-bar--events .brand-bar__identity img,
  .brand-bar--school .brand-bar__identity img {
    width: 56px !important;
    height: 38px !important;
    flex-basis: 56px !important;
  }
}
/* End ecosystem design QA lock */
