/* ============ FONTS ============ */
@font-face {
  font-family: "Concrete";
  src: url("fonts/Concrete-Regular.woff2") format("woff2"),
       url("fonts/Concrete-Regular.woff") format("woff"),
       url("fonts/Concrete-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --yellow:   #f8b807;
  --green:    #4aa248;
  --blue:     #3866af;
  --navy:     #0f4495;
  --pink:     #e33384;
  --ink:      #111111;
  --ink-soft: #4a4a4a;
  --line:     #ececec;
  --bg:       #ffffff;

  --radius-pill: 999px;
  --radius-lg:   24px;
  --radius-md:   16px;

  --font-display: "Concrete", "Montserrat", system-ui, sans-serif;
  --font-body:    "Montserrat", "Inter", system-ui, sans-serif;

  --maxw: 1320px;
  --pad: clamp(20px, 3.5vw, 56px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ TYPE ============ */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .92;
  text-transform: uppercase;
}
.h-feature {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .92;
  text-transform: uppercase;
}
.eyebrow {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__bar { background: inherit; }
.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-block: 16px;
}
.brand-side {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.brand-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-icons img {
  height: clamp(20px, 2.2vw, 30px);
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  transform: translateY(.12em);
}

/* mobile menu nav row — hidden on desktop */
.header__nav { display: none; }
.header__nav-item { display: none; }

@media (max-width: 880px) {
  /* whole header is no longer sticky — only the nav row sticks */
  .header {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }
  /* top bar scrolls away with the page */
  .header__bar {
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .brand-side { display: inline-block; }
  .brand-side {
    font-size: 13px;
    color: var(--pink);
  }
  .brand-center { display: none; }
  .header__row {
    grid-template-columns: 1fr auto;
    padding-block: 14px;
  }
  .btn-pill .btn-pill__suffix { display: none; }

  /* bottom nav row — sticky menu */
  .header__nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header__nav-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    padding-block: 10px;
  }
  .header__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
  .header__nav-item img {
    height: 32px;
    width: auto;
    transition: transform .15s ease;
  }
  .header__nav-item:hover img,
  .header__nav-item:active img { transform: scale(1.08); }
  .header__nav-item span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 380px) {
  .header__nav-item img { height: 28px; }
  .header__nav-item span { font-size: 7.5px; }
  .header__row { padding-block: 10px; }
  .brand-side { font-size: 11px; }
}

/* ============ PILL BUTTON ============ */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, background .15s ease;
}
.btn-pill:hover { background: #c92676; transform: translateY(-1px); }
.btn-pill--lg {
  font-size: clamp(13px, 1.1vw, 15px);
  padding: 16px 28px;
}
.btn-pill--ghost {
  background: transparent;
  color: var(--ink);
  padding: 0;
  gap: 12px;
}
.btn-pill--ghost .x-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.btn-pill--ghost:hover .x-circle { background: #c92676; }

/* ============ HERO ============ */
.hero {
  padding-block: clamp(60px, 9vw, 130px) clamp(40px, 6vw, 80px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.5vw, 56px);
  align-items: start;
}
.hero__m {
  height: clamp(46px, 6.6vw, 112px);
  width: auto;
  align-self: start;
  margin-top: clamp(4px, .8vw, 16px);
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
}
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, .8vw, 12px);
}
.hero__line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 150px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 1.4vw, 22px);
  flex-wrap: wrap;
}
.hero__line--icons {
  align-items: flex-start;
  /* запас под подписи иконок (они absolute и висят ниже линии) */
  padding-bottom: clamp(18px, 1.8vw, 28px);
}
.hero__word { display: inline-block; }
.hero__icons-inline {
  display: inline-flex;
  align-items: flex-start;
  gap: clamp(18px, 2.4vw, 38px);
  /* push icons down to align with cap-top of "ПЯТЬ" (Concrete has high ascent) */
  margin-top: .08em;
}
.hero__icon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: none;
}
.hero__icon-card img {
  height: clamp(40px, 5.6vw, 92px);
  width: auto;
}
.hero__icon-card span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(8px, .75vw, 11px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.2;
}

.hero__about {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}

@media (max-width: 720px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* М того же размера, что иконки аттракционов в ряду */
  .hero__m { height: 44px; width: auto; margin-top: 0; }
  .hero__icons-inline {
    gap: clamp(18px, 5vw, 32px);
    flex-wrap: wrap;
  }
  .hero__icon-card img { height: 44px; }
  .hero__icon-card span {
    white-space: normal;
    max-width: 64px;
    margin-top: 4px;
    font-size: 8.5px;
  }
  .hero__line--icons { padding-bottom: 38px; }
}
@media (max-width: 380px) {
  .hero__m { height: 38px; }
  .hero__icon-card img { height: 38px; }
}

/* ============ SECTIONS ============ */
.section {
  padding-block: clamp(60px, 9vw, 140px);
  border-top: 1px solid var(--line);
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 60ch;
}
.section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ FEATURE BLOCKS (per-attraction) ============ */
.feature {
  padding-block: clamp(70px, 10vw, 150px);
  border-top: 1px solid var(--line);
}
.feature__grid {
  display: grid;
  /* minmax(0, …) важен: без него длинное слово в .feature__title растягивает text-колонку
     шире её пропорции и сжимает photo-колонку до ~200px. */
  grid-template-columns: minmax(120px, 160px) minmax(0, 1.1fr) minmax(320px, 1.2fr);
  grid-template-areas:
    "icon title  photo"
    "icon metric photo"
    "icon desc   photo"
    "icon footer photo";
  column-gap: clamp(24px, 3.5vw, 56px);
  row-gap: 0;
  align-items: start;
}
.feature__text { display: contents; }
.feature__side     { grid-area: icon; display: flex; flex-direction: column; align-items: center; gap: clamp(14px, 1.6vw, 22px); min-width: 0; }
.feature__icon-side { /* no grid-area, lives inside .feature__side */ }
.feature__title    { grid-area: title; min-width: 0; }
.feature__metric   { grid-area: metric; min-width: 0; overflow-wrap: break-word; }
.feature__desc     { grid-area: desc; min-width: 0; overflow-wrap: break-word; }
.feature__photo    { grid-area: photo; }
.feature__footrow  { grid-area: footer; }
/* photo-col: оборачивает slider + rules в правой колонке, чтобы rules шёл
   сразу под слайдером (естественный flex-flow), а не «прыгал» вниз ячейки. */
.feature__photo-col {
  grid-area: photo;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
  align-self: start;
}
/* .feature__rules больше не имеет grid-area — лежит внутри .feature__photo-col */
.feature__rules { /* грид-позиция управляется родителем */ }

@media (max-width: 900px) {
  .feature__grid {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon metric"
      "icon desc"
      "photo photo"
      "footer footer";
  }
  .feature__photo-col, .feature__photo, .feature .slider { max-width: 480px; margin-top: 16px; }
}
@media (max-width: 560px) {
  .feature__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "metric"
      "desc"
      "photo"
      "footer";
  }
  .feature__side { flex-direction: row; align-items: center; justify-content: flex-start; gap: 18px; margin-bottom: 16px; }
  .feature__photo-col, .feature__photo, .feature .slider { max-width: 100%; margin-top: 8px; }
}
.feature__icon-side {
  width: clamp(64px, 8vw, 120px);
  height: auto;
  margin-top: clamp(4px, .6vw, 10px);
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 76px);
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: clamp(8px, 1vw, 16px);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.feature__metric {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 72px);
  line-height: .92;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: clamp(16px, 2.2vw, 36px);
}
.feature__metric--pink { color: var(--pink); }
.feature__metric--yellow { color: var(--yellow); }
.feature__metric--blue { color: var(--blue); }
.feature__desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: clamp(28px, 4vw, 60px);
}
.feature__desc .accent-pink { color: var(--pink); font-weight: 700; }
.feature__desc .accent-green { color: var(--green); font-weight: 700; }
.feature__desc-lead {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: clamp(10px, 1.2vw, 18px);
}

/* ====== Раскрывающиеся «Правила посещения» в feature ====== */
.feature__rules {
  /* лежит внутри .feature__photo-col, отступы задаёт gap родителя */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature__rules summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.feature__rules summary::-webkit-details-marker { display: none; }
.feature__rules-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
}
.feature__rules-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .15s ease;
}
.feature__rules[open] .feature__rules-chev {
  transform: rotate(45deg);
  background: var(--ink);
}
.feature__rules-body {
  padding: 4px 0 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.feature__rules-body p { margin-bottom: 10px; }
.feature__rules-body ol {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: decimal;
}
.feature__rules-body ol li { margin-bottom: 6px; }
.feature__rules-body strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .feature__rules { max-width: 100%; }
}
.feature__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
}
.feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__footrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(30px, 4vw, 60px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--line);
}
.feature__footrow .btn-pill {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}
@media (min-width: 561px) {
  .feature__footrow .btn-pill {
    align-self: flex-start;
    min-width: 260px;
  }
}
.feature__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(16px, 3vw, 50px) clamp(20px, 3vw, 50px);
}
.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.price-block__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: var(--ink-soft);
}
.price-block__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.01em;
}
.price-block--accent .price-block__value { color: var(--pink); }

/* ============ COMBO ============ */
.combo-list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}
.combo-row {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.combo-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .92;
  text-transform: uppercase;
}
.combo-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}
.combo-formula__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.combo-formula__item img {
  height: clamp(38px, 4.2vw, 64px);
  width: auto;
}
.combo-formula__item span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(8px, .72vw, 11px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.combo-formula__op {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 38px);
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.combo-formula__or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.combo-card__cta { margin-top: 8px; }
.combo-formula__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-left: clamp(8px, 1.4vw, 20px);
  margin-bottom: 18px;
}
.combo-formula__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.combo-formula__save {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pink);
}
.combo-formula .btn-pill {
  margin-bottom: 18px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .combo-formula__item img { height: 44px; }
  .combo-formula__op { font-size: 22px; margin-bottom: 14px; }
}

/* ============ TICKETS (single tickets) ============ */
.tickets-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.ticket-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-top: 2px solid var(--ink);
}
.ticket-card__icon { height: clamp(48px, 5vw, 72px); width: auto; }
.ticket-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}
.ticket-card__sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.ticket-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -.01em;
  color: var(--pink);
  margin-top: auto;
}
.ticket-card__price small {
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: 6px;
}
.ticket-card__cta {
  align-self: stretch;
  text-align: center;
  justify-content: center;
  margin-top: 12px;
}
.ticket-card__cta--disabled {
  background: var(--line);
  color: var(--ink-soft);
  cursor: not-allowed;
  pointer-events: none;
}

/* ============ RULES ============ */
.rules-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.rule-card {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.rule-card__num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--pink);
  margin-bottom: 8px;
}
.rule-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rule-card__text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ CONTACTS ============ */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}
@media (max-width: 760px) {
  .contacts { grid-template-columns: 1fr; }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts__item .eyebrow { color: var(--ink-soft); }
.contacts__item-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
  margin-top: 6px;
  display: block;
}
.contacts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: #eee;
}
.contacts__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============ PARK MAP (flip-book animation) ============ */
.parkmap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(20px, 3vw, 48px);
  background: #fff;
  /* выход за пределы .container — карта на всю ширину окна */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.parkmap__frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* padding-bottom = высота / ширина для viewBox 3376.95×2303.86 = 68.22% */
  padding-bottom: 68.22%;
}
.parkmap__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: opacity;
}
/* 4 кадра — плавный crossfade без «дипа».
   Логика: текущий кадр всегда непрозрачен (opacity 1). Следующий кадр поднимается
   через z-index и плавно проявляется (opacity 0→1) ПОВЕРХ предыдущего. Поскольку
   нижний слой остаётся opacity 1 — суммарная видимая непрозрачность всегда 100%,
   нет посекундного провала.
   Две независимые анимации: opacity (linear), z-index (steps). */
.parkmap__layer {
  animation:
    parkmap-fade-in 4s linear infinite,
    parkmap-z-shift 4s steps(1, end) infinite;
}
.parkmap__layer--1 { animation-delay:  0s,  0s; }
.parkmap__layer--2 { animation-delay: -3s, -3s; }
.parkmap__layer--3 { animation-delay: -2s, -2s; }
.parkmap__layer--4 { animation-delay: -1s, -1s; }

/* Каждый слой: проявление 0→1 в первой 1/8 цикла, затем opacity 1 до конца.
   На границе цикла (100%→0%) opacity мгновенно сбрасывается обратно — но к этому
   моменту слой уже на самом дне z-стека и скрыт под другими. */
@keyframes parkmap-fade-in {
  0%   { opacity: 0; }
  12.5%, 100% { opacity: 1; }
}

/* z-index «спускается» от 4 (топ, только что появился) до 1 (дно стека, скрыт). */
@keyframes parkmap-z-shift {
  0%   { z-index: 4; }
  25%  { z-index: 3; }
  50%  { z-index: 2; }
  75%, 100% { z-index: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .parkmap__layer { animation: none; }
  .parkmap__layer--1 { opacity: 1; z-index: 4; }
  .parkmap__layer--2,
  .parkmap__layer--3,
  .parkmap__layer--4 { opacity: 0; }
}

@media (max-width: 720px) {
  .parkmap { padding-block: 14px 18px; }
  /* на мобиле карта крупнее экрана: выходит за края слева и справа.
     padding-bottom масштабируется одновременно с width (×1.3 = 88.69%) */
  .parkmap__frame {
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    padding-bottom: 88.69%;
  }
}
@media (max-width: 480px) {
  .parkmap__frame {
    width: 150%;
    margin-left: -25%;
    margin-right: -25%;
    padding-bottom: 102.33%;
  }
}

/* ============ FOOTER ============ */
.footer {
  padding-block: clamp(50px, 6vw, 90px) 24px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0;
}
.footer__tagline {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 38ch;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer__col a:hover { color: var(--pink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.footer__link {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__link:hover { color: var(--pink); }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.45);
  z-index: 100;
  backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  max-width: 520px;
  width: 100%;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
}
.modal__panel h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.modal__panel p { color: var(--ink-soft); margin-bottom: 20px; }
.modal__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.modal__notice {
  margin-top: 18px;
  margin-bottom: 0 !important;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .02em;
  line-height: 1.5;
}
.modal__notice a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal__notice a:hover { color: var(--pink); }

/* Bileton tickets widget modal */
.modal__panel--widget {
  max-width: 980px;
  width: 100%;
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.modal__title-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.tickets-iframe-wrap {
  flex: 1;
  min-height: 60vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5f5f5;
}
.tickets-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  border: 0;
  display: block;
}
@media (max-width: 560px) {
  .modal__panel--widget { padding: 16px 12px; max-height: 96vh; }
  .tickets-iframe-wrap, .tickets-iframe-wrap iframe { min-height: 72vh; }
}

/* Privacy modal — wider, scrollable, left-aligned */
.modal__panel--wide {
  max-width: 760px;
  text-align: left;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
}
.modal__panel--wide h3 {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.2vw, 28px);
}
.privacy__meta {
  margin: 0 0 20px !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pink);
  font-weight: 800;
}
.privacy__body {
  overflow-y: auto;
  padding-right: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.6;
}
.privacy__body h4 {
  font-family: var(--font-body);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 24px 0 8px;
  line-height: 1.25;
}
.privacy__body h4:first-child { margin-top: 0; }
.privacy__body p { margin: 0 0 12px; color: var(--ink-soft); }
.privacy__body ul { margin: 0 0 12px 18px; padding: 0; list-style: disc; }
.privacy__body ul li { margin-bottom: 6px; }
.privacy__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy__body a:hover { color: var(--pink); }
.privacy__body strong { color: var(--ink); font-weight: 700; }
.privacy__body::-webkit-scrollbar { width: 8px; }
.privacy__body::-webkit-scrollbar-track { background: transparent; }
.privacy__body::-webkit-scrollbar-thumb {
  background: rgba(17,17,17,.2);
  border-radius: 4px;
}
@media (max-width: 560px) {
  .modal__panel--wide { padding: 24px 18px 18px; max-height: 92vh; }
  .privacy__body { font-size: 13px; }
}

/* ============ UTILITY ============ */
.section__title { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.accent-pink   { color: var(--pink); }
.accent-green  { color: var(--green); }
.accent-yellow { color: var(--yellow); }
.accent-blue   { color: var(--blue); }

/* ============ HOURS BADGE — под иконкой ============ */
.feature__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.feature__hours::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4be07a;
  box-shadow: 0 0 0 2px rgba(75, 224, 122, .25);
}
@media (max-width: 560px) {
  .feature__hours { font-size: 10px; padding: 4px 10px; }
}

/* seasonal hours: лето + зима двумя компактными строками */
.feature__hours--seasonal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  background: transparent;
  color: var(--ink);
  padding: 0;
  white-space: normal;
}
.feature__hours--seasonal::before { display: none; }
.hours-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
  text-transform: none;
  white-space: normal;
}
.hours-row--summer { background: rgba(248, 184, 7, .15); color: #b58200; }
.hours-row--winter { background: rgba(56, 102, 175, .12); color: #1f4a8a; }
.hours-row__season {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hours-row__time {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
  opacity: .9;
}
@media (max-width: 560px) {
  .feature__hours--seasonal { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .hours-row { flex: 1 1 auto; min-width: 130px; }
}

/* двойная кнопка: купить билет + купить в комбо */
.feature__cta-pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.btn-pill--ghost-combo {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 14px 26px;
}
.btn-pill--ghost-combo:hover {
  background: var(--blue);
  color: #fff;
}
@media (min-width: 561px) {
  .feature__cta-pair .btn-pill { min-width: 200px; }
}

/* ============ REVIEWS ============ */
.section--reviews { background: linear-gradient(180deg, #fff 0%, #fafbff 100%); }
.reviews {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

.reviews__summary {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
  padding: clamp(28px, 3vw, 44px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  box-shadow: 0 12px 36px -22px rgba(15, 68, 149, .25);
}
.reviews__rating-big {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews__rating-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .9;
  color: var(--blue);
  letter-spacing: 0;
}
.reviews__stars {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 4px;
  color: var(--yellow);
}
.reviews__rating-meta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.reviews__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.reviews__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f4f7ff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: lowercase;
}
.reviews__tag small {
  font-weight: 800;
  color: var(--pink);
  font-size: 11px;
}
.reviews__cta { align-self: flex-start; }
@media (max-width: 560px) { .reviews__cta { align-self: stretch; text-align: center; justify-content: center; } }

.reviews__widget {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--line);
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.reviews__widget iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  flex: 1;
  border: 0;
  display: block;
}
.reviews__widget-link {
  display: block;
  padding: 12px 18px;
  background: #f4f7ff;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  transition: background .15s ease;
}
.reviews__widget-link:hover { background: #e9eefc; color: var(--pink); }

/* ============ MAX / TELEGRAM BUTTONS ============ */
.btn-pill--max {
  background: #0a84ff;
}
.btn-pill--max:hover { background: #006bd6; }
.btn-pill--tg {
  background: #229ed9;
}
.btn-pill--tg:hover { background: #1b86b9; }

/* ============ SLIDER ============ */
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
  touch-action: pan-y;
  user-select: none;
}
.slider__track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.slider__slide {
  flex: 0 0 100%;
  height: 100%;
}
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  z-index: 2;
  transition: background .15s ease, transform .15s ease;
}
.slider__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slider__nav--prev { left: 12px; }
.slider__nav--next { right: 12px; }
.slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  transition: background .15s ease, transform .15s ease;
  cursor: pointer;
  padding: 0;
  border: 0;
}
.slider__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}
.slider__ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
@media (max-width: 560px) {
  .slider__nav { width: 38px; height: 38px; font-size: 20px; }
  .slider__nav--prev { left: 8px; }
  .slider__nav--next { right: 8px; }
}

/* feature.feature--soon — приглушаем CTA */
.feature--soon .feature__title { opacity: .92; }
.price-block__value--soon {
  color: var(--yellow) !important;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* ============ COMBO CARDS (overrides) ============ */
.section--combo { background: linear-gradient(180deg, #fff7fb 0%, #fff 100%); }
.section__head--combo {
  position: relative;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section--combo .section__sub { text-align: center; }

.combo-cashier-nicolas {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 24px rgba(15, 68, 149, .15));
}
@media (max-width: 560px) {
  .combo-cashier-nicolas { max-width: 100%; margin-bottom: 16px; }
}

.combo-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.combo-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 36px) clamp(22px, 3vw, 40px);
  box-shadow: 0 10px 30px -18px rgba(15, 68, 149, .25);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.combo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(15, 68, 149, .35);
  border-color: rgba(56, 102, 175, .25);
}
.combo-card--hit {
  border-color: var(--pink);
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(248, 184, 7, .12) 0%, transparent 55%),
    #fff;
}
.combo-card--hit:hover { border-color: var(--pink); }
.combo-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.combo-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  text-transform: uppercase;
  margin: 0;
}
.combo-card__time {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}
.combo-card__time-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.combo-card__time-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink);
  letter-spacing: .01em;
}

.combo-hit {
  position: absolute;
  top: -28px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px 14px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transform: rotate(-6deg);
  box-shadow: 0 10px 22px rgba(248, 184, 7, .5);
  z-index: 3;
}
.combo-hit__star {
  width: clamp(28px, 3.2vw, 44px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
}
.combo-hit__text {
  white-space: nowrap;
}
@media (max-width: 560px) {
  .combo-hit {
    top: -22px;
    right: 8px;
    padding: 10px 18px 10px 12px;
    font-size: 18px;
    gap: 8px;
  }
  .combo-hit__star { width: 26px; }
}

/* Морковка-бонус как самостоятельная плашка под формулой */
.combo-card__bonus {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(6px, 1vw, 14px);
  padding: 14px 18px;
  background: linear-gradient(95deg, rgba(248, 184, 7, .15) 0%, rgba(248, 184, 7, .06) 100%);
  border: 2px dashed var(--yellow);
  border-radius: var(--radius-lg);
}
.combo-card__bonus-img {
  width: clamp(48px, 5.5vw, 72px);
  height: auto;
  flex-shrink: 0;
}
.combo-card__bonus-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink);
  line-height: 1.3;
}
.combo-card__bonus-text strong {
  color: var(--pink);
  font-weight: 800;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0;
}

.combo-card .combo-formula__price {
  font-size: clamp(32px, 4.2vw, 56px);
}

@media (max-width: 560px) {
  .combo-card__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .combo-card__time { align-items: flex-start; text-align: left; }
  .combo-hit { right: 12px; top: -12px; padding: 6px 14px; }
}

/* ============ EVENTS / BANQUETS ============ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.2vw, 28px);
}
.event-card {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 200px;
  padding: clamp(22px, 3vw, 40px);
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, .25);
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -18px rgba(0, 0, 0, .3); }
.event-card--wide { grid-column: 1 / -1; min-height: 240px; }
.event-card--orange { background: linear-gradient(120deg, #4aa248 0%, #3e8a3c 100%); }
.event-card--yellow { background: linear-gradient(120deg, #ffd84a 0%, #ffb840 100%); color: var(--ink); }
.event-card--pink   { background: linear-gradient(120deg, #ff4f9a 0%, #e8267f 100%); }
.event-card__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 55%;
}
.event-card--wide .event-card__text { max-width: 52%; }
.event-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 44px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 0;
}
.event-card__lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}
.event-card__desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  opacity: .96;
}
.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 22px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
  transition: background .15s ease;
}
.event-card--yellow .event-card__cta { color: var(--pink); }
.event-card--pink .event-card__cta { color: var(--pink); }
.event-card:hover .event-card__cta { background: #f6f6f6; }
.event-card__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.event-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .8;
  pointer-events: none;
}
.event-card__media--confetti {
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, .35) 0 14%, transparent 15%),
    radial-gradient(circle at 95% 25%, var(--pink) 0 1.1%, transparent 1.4%),
    radial-gradient(circle at 88% 70%, var(--yellow) 0 1.1%, transparent 1.4%),
    radial-gradient(circle at 70% 35%, var(--green) 0 1.1%, transparent 1.4%),
    radial-gradient(circle at 80% 85%, var(--blue) 0 1.1%, transparent 1.4%),
    radial-gradient(circle at 82% 10%, #fff 0 .8%, transparent 1.2%),
    radial-gradient(circle at 92% 90%, #fff 0 .8%, transparent 1.2%);
}
.event-card__media--graduation {
  background:
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, .55) 0 20%, transparent 22%);
}
.event-card__media--bday {
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 255, 255, .35) 0 22%, transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, .5) 0 2%, transparent 2.4%),
    radial-gradient(circle at 90% 75%, rgba(255, 255, 255, .5) 0 1.6%, transparent 2%),
    radial-gradient(circle at 75% 85%, rgba(255, 255, 255, .5) 0 1.4%, transparent 1.8%);
}

@media (max-width: 760px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 180px; padding: 22px; }
  .event-card__text { max-width: 100%; }
  .event-card--wide .event-card__text { max-width: 100%; }
  .event-card__media { opacity: .25; }
}
