/* ============================================================
   Bowling Respublika — фірмові кольори з брендбуку:
   рожевий #E002F1 · чорний #1C1C1C · жовтий #F3C16A · білий
   Шрифти: Unbounded (заголовки) + Inter (текст)
   ============================================================ */

/* Палітра приглушена на прохання клієнта (голосове від 07.07.2026):
   фірмовий рожевий #E002F1 → спокійні фіолетові відтінки,
   жовтий лишається тільки в логотипі та дозовано в акцентах */
:root {
  --pink: #9D5BD2;
  --pink-soft: #C4A5E8;
  --gold: #CDB289;
  --ink: #191521;
  --deep: #131019;
  --card: #221C2C;
  --line: #382F47;
  --text: #ffffff;
  --muted: #cac5d8;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 22px;
  --header-h: 72px;
  /* патерн з кегль та куль — «додаткові елементи» з брендбуку */
  --pins: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='132' height='132' viewBox='0 0 132 132'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='96' cy='34' r='15'/%3E%3Cpath d='M34 22c3.4 0 5.8 2.8 5.8 6.2 0 2.2-.9 4.3-1.7 6.6-.7 2-.6 4 .3 6.3 1.8 3.8 4.8 7.2 4.8 12.8 0 7.5-4.3 13-9.2 13s-9.2-5.5-9.2-13c0-5.6 3-9 4.8-12.8.9-2.3 1-4.3.3-6.3-.8-2.3-1.7-4.4-1.7-6.6 0-3.4 2.4-6.2 5.8-6.2z'/%3E%3Ccircle cx='36' cy='104' r='15'/%3E%3Cpath d='M98 88c3.4 0 5.8 2.8 5.8 6.2 0 2.2-.9 4.3-1.7 6.6-.7 2-.6 4 .3 6.3 1.8 3.8 4.8 7.2 4.8 12.8 0 7.5-4.3 13-9.2 13s-9.2-5.5-9.2-13c0-5.6 3-9 4.8-12.8.9-2.3 1-4.3.3-6.3-.8-2.3-1.7-4.4-1.7-6.6 0-3.4 2.4-6.2 5.8-6.2z'/%3E%3C/g%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; }
a { color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 860px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 24px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn--primary {
  background: linear-gradient(100deg, #8A4BC9 0%, #5F2E96 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(138, 75, 201, .3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(138, 75, 201, .45); }
.btn--ghost {
  border: 1.5px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--pink-soft); color: var(--pink-soft); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, .35); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 16, 25, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.logo__icon { width: 44px; height: 44px; }
/* фірмовий вордмарк клієнта — темний арт робимо білим для темного фону */
.logo__word { height: 40px; width: auto; filter: brightness(0) invert(1); }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.logo__subtitle {
  font-size: 10px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover { color: #fff; }
.nav__link--external { color: var(--gold); }
.nav__link--external:hover { color: var(--gold); opacity: .85; }
.nav__link--external svg { width: 10px; height: 10px; }

.header__phone { flex: none; }

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  flex: none;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
/* фото залу «легким фоном» + затемнення, щоб текст читався */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 78% 32%, rgba(157, 91, 210, .07), transparent 70%),
    linear-gradient(180deg, rgba(15, 12, 20, .92) 0%, rgba(15, 12, 20, .82) 45%, rgba(15, 12, 20, .97) 100%);
}
.hero__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(150px);
  opacity: .09;
  top: -160px;
  left: -160px;
  pointer-events: none;
  animation: glow-drift 16s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(140px, 90px) scale(1.25); }
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 88px;
}
.hero__mark { width: 56px; height: 56px; margin-bottom: 22px; }
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  font-size: clamp(30px, 4.6vw, 62px);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title-accent {
  background: linear-gradient(95deg, var(--pink) 10%, var(--pink-soft) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__poster {
  justify-self: center;
  position: relative;
}
.hero__poster::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(157, 91, 210, .35), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero__poster img {
  position: relative;
  width: min(300px, 34vw);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 24px 32px 60px rgba(0, 0, 0, .55);
  transform: rotate(3deg);
  transition: transform .3s ease;
}
.hero__poster:hover img { transform: rotate(1deg) scale(1.02); }

/* ---------- Бігучий рядок ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__half {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  white-space: nowrap;
  padding-block: 16px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Декор: стрічки, водяні знаки, зерно ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .045;
  pointer-events: none;
  z-index: 50;
}

.ribbon {
  position: absolute;
  width: min(640px, 70vw);
  height: auto;
  pointer-events: none;
  filter: blur(1.5px);
  z-index: 0;
}
.ribbon--hero {
  left: -180px;
  bottom: -120px;
  opacity: .35;
  transform: rotate(8deg);
}
.ribbon--events {
  right: -220px;
  top: -140px;
  opacity: .1;
  filter: none;
  transform: rotate(-160deg);
}
.ribbon--rules-top {
  right: -240px;
  top: -160px;
  opacity: .5;
  transform: rotate(-15deg);
  will-change: transform;
}
.ribbon--rules-bottom {
  left: -260px;
  bottom: -180px;
  opacity: .4;
  transform: rotate(170deg);
  will-change: transform;
}

.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(120px, 19vw, 270px);
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .026);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.watermark--top { top: 28px; right: -60px; }
.watermark--bottom { bottom: 10px; left: -60px; }

/* ---------- Секції ---------- */
.section { padding: 96px 0; position: relative; overflow: clip; }
.section > .container { position: relative; z-index: 1; }
.section--deep { background: var(--deep); }

/* Про нас: продовження фіолетового сяйва hero */
#about {
  background:
    radial-gradient(52% 38% at 82% 0%, rgba(157, 91, 210, .13), transparent 70%),
    linear-gradient(180deg, #201022 0%, var(--ink) 44%);
}

/* Ціни: темно-фіолетова панель із кутовими загравами */
#prices {
  background:
    radial-gradient(48% 42% at 100% 0%, rgba(157, 91, 210, .22), transparent 72%),
    radial-gradient(42% 38% at 0% 100%, rgba(205, 178, 137, .13), transparent 70%),
    linear-gradient(188deg, #1c0d21 0%, #131016 55%, var(--deep) 100%);
}

/* Акції: бічне рожеве сяйво, як на промо-банерах */
.section--promos {
  background:
    radial-gradient(48% 55% at 96% 45%, rgba(157, 91, 210, .18), transparent 70%),
    radial-gradient(36% 42% at 2% 10%, rgba(123, 63, 184, .16), transparent 70%),
    var(--pins),
    var(--ink);
}

/* Правила: магентовий фон як на банерах «Правила та умови» */
.section--rules {
  background:
    radial-gradient(70% 55% at 88% 6%, rgba(157, 91, 210, .2), transparent 68%),
    radial-gradient(55% 45% at 4% 96%, rgba(123, 63, 184, .24), transparent 70%),
    linear-gradient(168deg, #240a2a 0%, #170714 55%, var(--ink) 100%);
}
.section--rules .rules-group {
  background: rgba(30, 24, 32, .78);
  backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, .12);
}


/* Контакти: рожева заграва згори, знизу перетікає у футер */
.section--contacts {
  background:
    radial-gradient(50% 45% at 20% 0%, rgba(157, 91, 210, .14), transparent 70%),
    var(--pins),
    linear-gradient(180deg, var(--deep) 55%, #1B1226 100%);
}
.section__head { margin-bottom: 48px; }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
/* головний заголовок блоку — виділяємо кольором і акцентною рискою */
.section__title--accent {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--pink);
}
.section__title--accent span,
.section__title--accent {
  background: linear-gradient(95deg, var(--pink) 10%, var(--pink-soft) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 16.5px;
}

/* ---------- Bento «Про нас» ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento__cell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.bento__cell:hover { transform: translateY(-4px); border-color: rgba(157, 91, 210, .45); }
.bento__cell--big {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: flex-end;
  min-height: 380px;
  background:
    radial-gradient(ellipse 120% 90% at 15% 0%, rgba(157, 91, 210, .45), transparent 65%),
    var(--pins),
    var(--card);
}
.bento__cell--gold {
  background:
    radial-gradient(ellipse 130% 120% at 85% -20%, rgba(205, 178, 137, .28), transparent 70%),
    var(--card);
  border-color: rgba(205, 178, 137, .4);
}
.bento__cell--wide { grid-column: span 2; }
.bento__cell--full { grid-column: 1 / -1; }
.bento__cell--wall {
  background:
    linear-gradient(160deg, rgba(157, 91, 210, .16), transparent 55%),
    var(--card);
}
/* реальні фото залу як фон блоків «Про нас» (background-image задається inline) */
.bento__cell--photo {
  position: relative;
  justify-content: flex-end;
  min-height: 300px;
  /* фото доходить до самого краю; акуратна обводка — через inset-тінь, без світлого канта */
  border: none;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  background-size: cover;
  background-position: center;
  background-color: var(--deep);
}
.bento__cell--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(19, 16, 25, .35) 0%, rgba(19, 16, 25, .72) 60%, rgba(19, 16, 25, .9) 100%);
  z-index: 0;
}
.bento__cell--photo > * { position: relative; z-index: 1; }
.bento__cell--photo:hover { box-shadow: inset 0 0 0 1.5px rgba(157, 91, 210, .75); }
.bento__cell--photo.bento__cell--big { min-height: 440px; }
.bento__cell--photo.bento__cell--full { min-height: 240px; }
.bento__cell--photo.bento__cell--gold { box-shadow: inset 0 0 0 1px rgba(205, 178, 137, .4); }
.bento__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(84px, 9vw, 148px);
  line-height: 1;
  background: linear-gradient(100deg, var(--pink-soft) 10%, #fff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.bento__number--sm { font-size: clamp(40px, 4.4vw, 58px); }
.bento__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.bento__text { color: var(--muted); font-size: 14.5px; }
.bento__link {
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
}
.bento__link:hover { text-decoration: underline; }
.bento__phone { color: var(--pink-soft); text-decoration: none; font-weight: 600; white-space: nowrap; }
.bento__phone:hover { text-decoration: underline; }

/* ---------- Стрічка подій: спокійна фіолетова панель ---------- */
.events {
  background:
    var(--pins),
    linear-gradient(135deg, #3B2555 0%, #241838 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: clip;
}
.events__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.events__head { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.events__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  line-height: 1.15;
}
.events__text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
}
.events__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.events__card {
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 24px 22px;
}
.events__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.events__card-text { font-size: 14.5px; color: rgba(255, 255, 255, .78); line-height: 1.5; }
.events__inner > .btn { align-self: flex-start; }

/* ---------- Ціни ---------- */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}
.price-row {
  display: grid;
  grid-template-columns: 110px repeat(3, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.price-row--head {
  background: none;
  border: none;
  min-height: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  padding-block: 4px;
}
/* день + позначка стовпчиком, щоб нічого не «їхало» у вузькій колонці */
.price-row__day {
  text-align: left;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  line-height: 1.05;
}
/* акційний день — жовта пігулка «акція» */
.price-badge {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  background: #F3C16A;
  color: #1C1C1C;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.price-row--promo [data-time]::before,
.price-row--promo + .price-row [data-time]::before { color: inherit; }
.price-row--split .price-row__span2 { grid-column: span 2; }
.price-row--flat .price-row__span3 { grid-column: span 3; }
.price-row [data-time]::before {
  content: attr(data-time);
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .5px;
}
/* сьогоднішній день — фіолетова підсвітка + фіолетова пігулка «сьогодні» */
.price-row.is-today {
  border-color: var(--pink);
  background: linear-gradient(90deg, rgba(157, 91, 210, .18), rgba(157, 91, 210, .05));
}
.price-row.is-today .price-row__day::after {
  content: 'сьогодні';
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.price-terms {
  margin: 32px 0 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.price-terms li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 20px 7px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.price-terms__ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #8A4BC9 0%, #5F2E96 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.price-terms__ic svg { width: 21px; height: 21px; }

/* ---------- Акції: стрічка реальних банерів ---------- */
.section--promos {
  background: var(--ink) var(--pins);
  overflow: hidden;
}
.promo-nav { display: flex; gap: 10px; flex: none; }
.promo-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.promo-nav__btn:hover { border-color: var(--pink); background: rgba(157, 91, 210, .15); }

.promo-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px max(20px, calc((100vw - 1160px) / 2 + 20px)) 24px;
  scrollbar-width: none;
}
.promo-strip::-webkit-scrollbar { display: none; }
.promo-card {
  position: relative;
  flex: 0 0 auto;
  width: 440px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  transform: rotate(-1.4deg);
  transition: transform .25s ease;
  padding: 0;
  background: var(--card);
  cursor: pointer;
}
.promo-card:nth-child(even) { transform: rotate(1.4deg); }
.promo-card:hover, .promo-card:focus-visible { transform: rotate(0) scale(1.03); }
.promo-card:focus-visible { outline: 2px solid var(--pink-soft); outline-offset: 3px; }
/* єдиний квадратний формат для всіх акцій */
.promo-card img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; display: block; }

/* виділена акція — одразу в рамці */
.promo-card--featured {
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(157, 91, 210, .2), 0 18px 44px rgba(0, 0, 0, .5);
}
.promo-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(100deg, #8A4BC9 0%, #5F2E96 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
}
.promo-card__more {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(100deg, #8A4BC9 0%, #5F2E96 100%);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .55);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.promo-card__more::after { content: ' +'; color: #fff; font-weight: 700; }
.promo-card:hover .promo-card__more,
.promo-card:focus-visible .promo-card__more {
  box-shadow: 0 12px 28px rgba(138, 75, 201, .6);
}

.promos__note {
  color: var(--muted);
  font-size: 14px;
  padding-top: 8px;
}
.promos__note a { color: var(--pink-soft); }

/* ---------- Правила ---------- */
.rules-group {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
}
.rules-group summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 52px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  user-select: none;
}
.rules-group summary::-webkit-details-marker { display: none; }
.rules-group summary::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot, var(--pink-soft));
  transform: translateY(-50%);
}
.rules-group summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dot, var(--pink-soft));
  border-bottom: 2px solid var(--dot, var(--pink-soft));
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.rules-group[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.rules-group ol {
  padding: 0 24px 22px 52px;
  color: var(--muted);
  font-size: 15px;
  overflow: hidden;
}
/* плавне розгортання FAQ із замедленням (керується у main.js) */
.rules-group ol.is-animating {
  will-change: height;
  transition: height .4s cubic-bezier(.33, 0, .2, 1), opacity .35s ease;
}
.rules-group ol li { margin-bottom: 8px; }
.rules-group ol li::marker { color: var(--dot, var(--pink-soft)); font-weight: 700; }
.rules-group a { color: var(--pink-soft); text-decoration: none; }
.rules-group a:hover { text-decoration: underline; }
.rules-note { margin-top: 24px; font-size: 13.5px; color: #9c96aa; }

/* ---------- Контакти ---------- */
.contacts { display: block; }
.contacts__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px 36px;
}
.contact__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact__value { font-size: 17px; }
.contact__value a {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}
.contact__value a:hover { color: var(--pink-soft); }

.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.socials a:hover { color: #fff; border-color: var(--pink); transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; }
/* великі соцмережі у футерному CTA «Готові зіграти?» */
.socials--lg { justify-content: center; gap: 16px; margin-top: 4px; }
.socials--lg a {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
.socials--lg a:hover { border-color: var(--pink); background: rgba(157, 91, 210, .16); }
.socials--lg svg { width: 30px; height: 30px; }
/* стрілка «зовнішнє посилання» замість емодзі */
.ext-arrow { display: inline-block; width: 11px; height: 11px; vertical-align: -1px; margin-left: 3px; }

.contacts__map {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contacts__map iframe { width: 100%; height: 100%; filter: grayscale(.2) contrast(1.05); }

/* ---------- Футер ---------- */
.footer {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(60% 70% at 50% 118%, rgba(157, 91, 210, .35), transparent 72%),
    var(--pins),
    linear-gradient(180deg, #1B1226 0%, #161020 100%);
  padding: 96px 0 32px;
}
.footer > .container { position: relative; z-index: 1; }
.watermark--footer {
  bottom: -40px;
  right: -50px;
  font-size: clamp(160px, 26vw, 380px);
  color: rgba(255, 255, 255, .022);
}

.footer__cta {
  text-align: center;
  margin-bottom: 88px;
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.6vw, 72px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 32px;
}
.footer__title span {
  background: linear-gradient(95deg, var(--pink) 20%, var(--pink-soft) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer__about {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 260px;
  margin: 18px 0 20px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 18px;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__nav a { color: var(--muted); text-decoration: none; font-size: 15px; }
.footer__nav a:hover { color: #fff; }
.footer__menu-link { color: var(--gold) !important; font-weight: 600; }
.footer__contact p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.footer__contact a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.footer__contact a:hover { color: var(--pink-soft); }
.footer__hours { font-size: 13.5px; }

/* якір «Контакти» веде у футер — відступ під липкий хедер */
#contacts { scroll-margin-top: 90px; }
/* Google-карта у футері */
.footer__map {
  margin-top: 44px;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.footer__map iframe { width: 100%; height: 100%; filter: grayscale(.2) contrast(1.05); }

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__copy { color: #a49eb2; font-size: 13px; }

/* ---------- Плаваюча кнопка бронювання ---------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(100deg, #8A4BC9 0%, #5F2E96 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45), 0 4px 16px rgba(138, 75, 201, .4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.fab svg { width: 15px; height: 15px; flex: none; }
.fab.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.fab:hover { transform: translateY(-2px); }
.fab:focus-visible { outline: 2px solid var(--pink-soft); outline-offset: 3px; }

/* ---------- Модалка акції ---------- */
.promo-modal {
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 0;
  background: var(--card);
  color: var(--text);
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.promo-modal[open] {
  display: grid;
  grid-template-columns: 440px 1fr;
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.promo-modal::backdrop {
  background: rgba(10, 4, 12, .78);
  backdrop-filter: blur(6px);
}
.promo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(20, 8, 22, .6);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease;
}
.promo-modal__close:hover { background: var(--pink); border-color: var(--pink); }
.promo-modal__close:focus-visible { outline: 2px solid var(--pink-soft); outline-offset: 2px; }
.promo-modal__close svg { width: 13px; height: 13px; }
/* квадратні промо повністю вміщаються, без обрізання по боках */
.promo-modal__media {
  position: relative;
  align-self: center;
  aspect-ratio: 1 / 1;
  background: #140b1c;
}
.promo-modal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.promo-modal__body {
  padding: 36px 34px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.promo-modal__label {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.promo-modal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.promo-modal__points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-modal__points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
}
.promo-modal__points li::before {
  content: '↗';
  position: absolute;
  left: 0;
  color: var(--pink-soft);
  font-weight: 700;
}
.promo-modal__note {
  font-size: 13.5px;
  color: #b2acc2;
  margin-bottom: 26px;
}
.promo-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Страйк перед футерним CTA ---------- */
.strike {
  max-width: 760px;
  margin: 0 auto 8px;
  padding: 0 20px;
  color: var(--line);
}
.strike__svg { width: 100%; height: auto; overflow: visible; }
.strike__move,
.strike__ball,
.strike__pin {
  transform-box: fill-box;
  transform-origin: center;
}
.strike__pin { transform-origin: 50% 62%; }
/* куля прокочується доріжкою, пробиває кеглі — вони розлітаються врізнобіч */
.strike.in .strike__move { animation: strike-roll 1.7s cubic-bezier(.16, .5, .42, 1) .3s forwards; }
.strike.in .strike__ball { animation: strike-spin 1.7s linear .3s forwards; }
.strike.in .strike__pin--1 { animation: pin-strike-1 .85s cubic-bezier(.22, .68, .32, 1) 1.5s forwards; }
.strike.in .strike__pin--2 { animation: pin-strike-2 .85s cubic-bezier(.22, .68, .32, 1) 1.64s forwards; }
.strike.in .strike__pin--3 { animation: pin-strike-3 .85s cubic-bezier(.22, .68, .32, 1) 1.78s forwards; }
@keyframes strike-roll { to { transform: translateX(815px); } }
@keyframes strike-spin { to { transform: rotate(1640deg); } }
/* кеглі розлітаються врізнобіч: ліва — назад-вгору, середня — високо вгору, права — вперед */
@keyframes pin-strike-1 {
  0% { transform: translate(0, 0) rotate(0); }
  40% { transform: translate(-16px, -34px) rotate(-84deg); }
  100% { transform: translate(-36px, -2px) rotate(-152deg); }
}
@keyframes pin-strike-2 {
  0% { transform: translate(0, 0) rotate(0); }
  42% { transform: translate(4px, -50px) rotate(48deg); }
  100% { transform: translate(8px, 0) rotate(124deg); }
}
@keyframes pin-strike-3 {
  0% { transform: translate(0, 0) rotate(0); }
  42% { transform: translate(30px, -30px) rotate(90deg); }
  100% { transform: translate(56px, 2px) rotate(160deg); }
}

/* ---------- Поява при скролі ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .hero__glow { animation: none; }
  .promo-modal[open] { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .strike.in .strike__move,
  .strike.in .strike__ball,
  .strike.in .strike__pin { animation: none; }
}

/* ============ Адаптив ============ */
@media (max-width: 1020px) {
  .header__phone { margin-left: auto; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: rgba(19, 16, 25, .98);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    margin: 0;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 12px 8px; font-size: 17px; }
  .burger { display: flex; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--big { grid-column: span 2; grid-row: auto; min-height: 300px; }
  .events__cards { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 64px;
    gap: 40px;
  }
  .hero__poster img { width: min(260px, 70vw); transform: rotate(2deg); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__copy { order: 1; }
  .split--reverse .split__media { order: 2; }
  .split + .split { margin-top: 72px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--big, .bento__cell--gold, .bento__cell--wide { grid-column: auto; }
  .contacts { grid-template-columns: 1fr; }
  .header__phone { display: none; }
  .burger { margin-left: auto; }
  /* на мобільному вордмарк по центру хедера, куля лишається зліва (тільки хедер!) */
  .header__inner { position: relative; }
  .header .logo__word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .price-row {
    grid-template-columns: 70px repeat(3, 1fr);
    padding: 11px 14px;
    min-height: 58px;
    font-size: 13px;
    border-radius: 18px;
  }
  .price-row--head { font-size: 10.5px; letter-spacing: 0; }
  .promo-card { width: min(320px, 82vw); }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  /* на телефоні — модалка як вертикальна колонка, що скролиться цілком */
  .promo-modal { width: min(430px, calc(100vw - 24px)); max-height: calc(100dvh - 24px); }
  .promo-modal[open] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .promo-modal__media {
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    background: #0e0812;
  }
  .promo-modal__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .promo-modal__body {
    flex: 1 1 auto;
    justify-content: flex-start;
    overflow: visible;
    padding: 24px 22px 28px;
  }
  .promo-modal__close { position: fixed; top: 24px; right: 24px; }
  /* схема залу вписується в ширину екрана — без горизонтального гортання */
  .hall .hall__svg { min-width: 0; }
  .hall__frame { overflow-x: visible; }
  .footer { padding-top: 72px; }
  .footer__cta { margin-bottom: 64px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Нові сторінки: активна навігація, hero, схема залу, ресторан
   ============================================================ */
.nav__link--active { color: #fff; position: relative; }
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--pink);
}

/* ---------- Внутрішній hero сторінок ---------- */
.pagehero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}
.pagehero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.pagehero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(157,91,210,.2), transparent 70%),
    linear-gradient(180deg, rgba(19,16,25,.78) 0%, rgba(19,16,25,.6) 45%, rgba(19,16,25,.96) 100%);
}
.pagehero__inner {
  position: relative; z-index: 1;
  padding: 80px 0 72px;
  max-width: 760px;
}
.pagehero__crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; letter-spacing: .5px; }
.pagehero__crumbs a { color: var(--pink-soft); text-decoration: none; }
.pagehero__crumbs a:hover { text-decoration: underline; }
.pagehero__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.pagehero__title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; line-height: 1.08;
  font-size: clamp(30px, 5vw, 58px); margin-bottom: 20px; text-wrap: balance;
}
.pagehero__title span {
  background: linear-gradient(95deg, var(--pink) 10%, var(--pink-soft) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pagehero__text { color: var(--muted); font-size: 17px; max-width: 560px; margin-bottom: 30px; }
.pagehero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Схема залу ---------- */
.hall { max-width: 1000px; margin: 0 auto; }
.hall__frame { overflow-x: auto; scrollbar-width: thin; }
.hall__svg { width: 100%; min-width: 680px; height: auto; display: block; }
.hall__zone { cursor: pointer; }
.hall__bg {
  fill: #484155;
  stroke: transparent;
  stroke-width: 2;
  transition: fill .2s ease, stroke .2s ease;
}
.hall__bg--card { fill: #1e1a27; stroke: #2f2c3c; stroke-width: 1; }
.hall__zone:hover .hall__bg,
.hall__zone:focus-visible .hall__bg,
.hall__zone.is-active .hall__bg {
  fill: #5f5474;
  stroke: var(--pink);
}
.hall__zone:hover .hall__bg--card,
.hall__zone:focus-visible .hall__bg--card,
.hall__zone.is-active .hall__bg--card { fill: #2b2438; }
.hall__zone:focus-visible { outline: none; }
.hall__zone:focus-visible .hall__bg { stroke-width: 3; }
.hall__label {
  fill: #fff; font-family: var(--font-body); font-weight: 700;
  font-size: 34px; letter-spacing: .5px;
}
.hall__label--narrow { font-size: 28px; }
.hall__label--card { font-size: 20px; }
.hall__label--lg { font-size: 25px; }
.hall__sub { fill: var(--muted); font-family: var(--font-body); font-size: 13px; }
.hall__caption {
  text-align: center; color: var(--muted); font-size: 15px;
  margin: 24px auto 0; max-width: 660px; min-height: 46px; line-height: 1.5;
}
.hall__caption strong { color: #fff; }

/* ---------- Легенда зон (під схемою) ---------- */
.hall__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.hall__expand:hover { border-color: var(--pink-soft); color: var(--pink-soft); }
.hall__expand svg { width: 17px; height: 17px; }
.hall-viewer {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border: none;
  padding: 0;
  background: var(--deep);
  overflow: hidden;
}
.hall-viewer::backdrop { background: rgba(10, 4, 12, .92); }
.hall-viewer[open] { display: flex; flex-direction: column; }
.hall-viewer__scroll {
  flex: 1;
  overflow: auto;
  display: grid;
  place-items: center;
  padding: 60px 16px 44px;
  -webkit-overflow-scrolling: touch;
}
.hall-viewer__scroll svg {
  width: 900px;
  min-width: 900px;
  max-width: none;
  height: auto;
}
.hall-viewer__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(20, 8, 22, .7);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hall-viewer__close:hover { background: var(--pink); border-color: var(--pink); }
.hall-viewer__close svg { width: 14px; height: 14px; }
.hall-viewer__hint {
  position: fixed;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
}

/* ---------- Ряд «фактів» ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fact {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: 26px 22px;
}
.fact__num {
  font-family: var(--font-display); font-weight: 900; font-size: 40px; line-height: 1;
  background: linear-gradient(100deg, var(--pink-soft) 10%, #fff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px;
}
.fact__text { color: var(--muted); font-size: 14.5px; }

/* ---------- Галерея зон (фото + текст) ---------- */
.zones { display: flex; flex-direction: column; gap: 26px; }
.zone-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center;
}
.zone-row:nth-child(even) .zone-row__media { order: 2; }
.zone-row__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.zone-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zone-row__tag {
  display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink-soft); font-weight: 600; margin-bottom: 12px;
}
.zone-row__title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase; margin-bottom: 14px;
}
.zone-row__text { color: var(--muted); font-size: 16px; }
.zone-row__text a { color: var(--pink-soft); }

/* ---------- Плитка-галерея ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

@media (max-width: 820px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .zone-row { grid-template-columns: 1fr; gap: 20px; }
  .zone-row:nth-child(even) .zone-row__media { order: 0; }
  .pagehero__inner { padding: 56px 0 52px; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr 1fr; }
  /* галерея: перше фото на всю ширину, решта по одному — без порожніх клітинок */
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 1 / 1; }
  .gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}
