@font-face {
  font-family: "Kelson Sans";
  src: url("/assets/KelsonSansRU-Normal--cP-20p3.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kelson Sans";
  src: url("/assets/KelsonSansRU-Bold-DjZlr7rq.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f9f8ff;
  --ink-muted: #c9c3df;
  --ink-dark: #221938;
  --surface: #120d21;
  --surface-raised: #1b1430;
  --surface-soft: #251b40;
  --violet: #a58bf5;
  --violet-light: #d8cdfd;
  --gold: #f3d58e;
  --line: rgba(218, 207, 255, 0.18);
  --shadow: 0 24px 70px rgba(5, 2, 15, 0.4);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Kelson Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: #fff;
  color: #1a1230;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 9, 25, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  max-width: 120px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.desktop-nav a {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher a {
  display: grid;
  min-width: 37px;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: var(--violet-light);
  color: var(--ink-dark);
}

.header-ticket {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-ticket:hover {
  transform: translateY(-2px);
  background: var(--violet-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  place-items: end center;
  overflow: hidden;
  padding: 150px 0 74px;
  background:
    radial-gradient(circle at 50% 8%, rgba(165, 139, 245, 0.16), transparent 38%),
    #110c25;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
  transform-origin: 50% 24%;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(11, 8, 27, 0.1) 12%, rgba(11, 8, 27, 0.38) 54%, #120d21 100%),
    linear-gradient(90deg, rgba(11, 8, 27, 0.58), transparent 42%, rgba(11, 8, 27, 0.15));
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-beam {
  --beam-angle: 0deg;
  position: absolute;
  top: -18%;
  width: 34%;
  height: 96%;
  transform: rotate(var(--beam-angle));
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(246, 239, 255, 0.36), rgba(190, 171, 255, 0.08) 58%, transparent 88%);
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  filter: blur(13px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero-beam--left {
  --beam-angle: -14deg;
  left: 8%;
}

.hero-beam--right {
  --beam-angle: 13deg;
  right: 7%;
}

.hero-ice-traces {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 18px rgba(141, 112, 223, 0.28));
  mix-blend-mode: screen;
}

.hero-ice-trace {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.hero-ice-trace--gold {
  stroke: rgba(243, 213, 142, 0.48);
}

.hero-ice-trace--violet {
  stroke: rgba(216, 205, 253, 0.42);
  stroke-width: 1.25;
}

.hero-ice-flare {
  position: absolute;
  right: 8%;
  bottom: 2%;
  width: min(54vw, 760px);
  height: 170px;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(216, 205, 253, 0.2), transparent 68%);
  filter: blur(24px);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #eeeafa;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
  text-wrap: balance;
}

.event-card {
  --event-card-x: 18px;
  --event-card-y: 18px;
  position: relative;
  isolation: isolate;
  width: min(100%, 380px);
  justify-self: end;
  overflow: hidden;
  padding: 24px;
  transform: translate(var(--event-card-x), var(--event-card-y));
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(243, 213, 142, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(37, 27, 64, 0.9), rgba(17, 12, 34, 0.78));
  box-shadow: 0 24px 70px rgba(5, 2, 15, 0.46);
  backdrop-filter: blur(18px) saturate(1.08);
}

.event-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 26%, transparent 74%, rgba(216, 205, 253, 0.1));
  content: "";
  pointer-events: none;
}

.event-card::after {
  position: absolute;
  inset: 0 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), rgba(243, 213, 142, 0.42), transparent);
  content: "";
  pointer-events: none;
}

.event-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 20px;
}

.event-card-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 12px;
}

.event-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet-light);
}

.event-card-icon svg {
  width: 18px;
  height: 18px;
}

.event-card dt {
  margin: 0 0 2px;
  color: var(--ink-muted);
  font-size: 13px;
}

.event-card dd {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.ticket-status {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(216, 205, 253, 0.1);
  color: var(--violet-light);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ticket-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7657cf;
  content: "";
}

.ticket-alert {
  margin-top: 18px;
}

.ticket-alert-copy {
  margin: 0 2px 13px;
  color: #f5f1ff;
  font-size: 16px;
  line-height: 1.4;
  text-wrap: balance;
}

.ticket-alert-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fbf9ff;
  box-shadow: 0 12px 28px rgba(5, 2, 15, 0.24);
  color: var(--ink-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ticket-alert-button::after {
  position: absolute;
  inset: -45% auto -45% -38%;
  width: 28%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  content: "";
  pointer-events: none;
}

.ticket-alert-button:hover {
  transform: translateY(-2px);
  background: var(--violet-light);
  box-shadow: 0 16px 34px rgba(5, 2, 15, 0.32);
}

.ticket-alert-button:active {
  transform: translateY(0);
}

.ticket-alert-note {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.lineup-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@keyframes hero-curtain-open {
  0% {
    clip-path: inset(0 49% 0 49%);
    transform: scale(1.075);
    filter: brightness(0.52) saturate(0.78) blur(2px);
  }
  52% {
    filter: brightness(0.76) saturate(0.92) blur(0);
  }
  100% {
    clip-path: inset(0);
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
}

@keyframes hero-beam-open {
  0% {
    transform: rotate(var(--beam-angle)) scaleX(0.08);
    opacity: 0;
  }
  58% {
    opacity: 0.58;
  }
  100% {
    transform: rotate(var(--beam-angle)) scaleX(1);
    opacity: 0.34;
  }
}

@keyframes hero-trace-draw {
  from {
    stroke-dashoffset: 1600;
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes hero-flare-arrive {
  from {
    transform: translate3d(24%, 12%, 0) rotate(-8deg) scaleX(0.35);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) rotate(-8deg) scaleX(1);
    opacity: 1;
  }
}

@keyframes hero-copy-wipe {
  from {
    clip-path: inset(0 100% 0 0);
    filter: blur(5px);
    opacity: 0.18;
  }
  to {
    clip-path: inset(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes hero-card-arrive {
  from {
    clip-path: inset(100% 0 0 0 round 16px);
    transform: translate(var(--event-card-x), calc(var(--event-card-y) + 28px)) scale(0.97);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    clip-path: inset(0 round 16px);
    transform: translate(var(--event-card-x), var(--event-card-y)) scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes ticket-glint {
  0%,
  38% {
    left: -38%;
    opacity: 0;
  }
  46% {
    opacity: 0.9;
  }
  64%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: hero-curtain-open 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-beam {
    animation: hero-beam-open 1250ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
  }

  .hero-beam--right {
    animation-delay: 260ms;
  }

  .hero-ice-trace {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    animation: hero-trace-draw 1500ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
  }

  .hero-ice-trace--violet {
    animation-delay: 520ms;
  }

  .hero-ice-flare {
    animation: hero-flare-arrive 1200ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-lead {
    animation: hero-copy-wipe 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero .eyebrow {
    animation-delay: 360ms;
  }

  .hero h1 {
    animation-delay: 500ms;
  }

  .hero-lead {
    animation-delay: 680ms;
  }

  .event-card {
    animation: hero-card-arrive 720ms cubic-bezier(0.16, 1, 0.3, 1) 860ms both;
  }

  .ticket-alert-button::after {
    animation: ticket-glint 2400ms cubic-bezier(0.16, 1, 0.3, 1) 1150ms 1 both;
  }
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: #171027;
}

#videos,
#stars,
.show-reasons,
#gallery,
#faq {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

#videos > .container,
#stars > .container,
.show-reasons > .container,
#gallery > .container,
#faq > .container {
  position: relative;
  z-index: 1;
}

#videos::before,
.show-reasons::before,
#gallery::before {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

#videos::before {
  top: 7%;
  right: -23%;
  width: min(720px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 205, 253, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(216, 205, 253, 0.025);
}

.show-reasons::before {
  top: 2%;
  left: 50%;
  width: min(1050px, 92vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(165, 132, 247, 0.15), transparent 66%);
}

#gallery::before {
  top: 12%;
  left: -23%;
  width: min(640px, 68vw);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 213, 142, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(125, 88, 224, 0.018);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.section-header > div {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(40px, 5.1vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.section-intro {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 26px;
}

.about-copy,
.date-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  background: var(--surface-raised);
}

.about-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(19px, 2vw, 23px);
}

.about-copy p + p {
  margin-top: 20px;
}

.about-copy strong {
  color: var(--ink);
}

.date-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  place-items: end start;
  padding: clamp(34px, 5vw, 62px);
  background: var(--surface-soft);
}

.date-panel::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(216, 205, 253, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(216, 205, 253, 0.05),
    0 0 0 84px rgba(216, 205, 253, 0.025);
  content: "";
}

.date-panel-content {
  position: relative;
}

.date-big {
  display: block;
  color: var(--gold);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.date-month {
  display: block;
  margin-top: 20px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.date-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
}

.date-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-card {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0c0917;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}

.video-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.video-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 7, 24, 0.34);
  content: "";
  transition: background 180ms ease;
}

.video-card:hover > img {
  transform: scale(1.025);
}

.video-card:hover::after {
  background: rgba(11, 7, 24, 0.2);
}

.video-play {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(17, 12, 33, 0.42);
  backdrop-filter: blur(5px);
}

.video-play svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-card-loaded {
  cursor: default;
}

.moments-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(125, 88, 224, 0.2), transparent 31%),
    radial-gradient(circle at 84% 18%, rgba(243, 213, 142, 0.13), transparent 27%),
    #0c0818;
}

.moments-section::before {
  position: absolute;
  bottom: -390px;
  left: 50%;
  z-index: 0;
  width: min(1160px, 92vw);
  height: 560px;
  transform: translateX(-50%);
  border: 1px solid rgba(216, 205, 253, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(216, 205, 253, 0.026),
    0 0 0 116px rgba(216, 205, 253, 0.014);
  content: "";
  pointer-events: none;
}

.moments-section > .container {
  position: relative;
  z-index: 1;
}

.moments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: 46px;
}

.moments-heading > div {
  max-width: 790px;
}

.moments-intro {
  max-width: 39ch;
  margin: 0 0 6px;
  color: #d2cae7;
  font-size: 19px;
  line-height: 1.55;
}

.moments-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding: 8px 0 54px;
}

.moments-rail:focus-visible {
  border-radius: 16px;
  outline-offset: 8px;
}

.moment-card {
  --card-offset: 0px;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-width: 0;
  overflow: hidden;
  transform: translateY(var(--card-offset));
  border-radius: 16px;
  background: #100a20;
  box-shadow: 0 22px 54px rgba(3, 1, 12, 0.46);
  color: #fff;
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.moment-card:nth-child(even) {
  --card-offset: 34px;
}

.moment-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 4, 18, 0.35) 0%, transparent 36%, rgba(8, 4, 18, 0.9) 100%);
  content: "";
  pointer-events: none;
}

.moment-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.moment-card:hover {
  transform: translateY(calc(var(--card-offset) - 8px));
  box-shadow: 0 30px 64px rgba(3, 1, 12, 0.58);
}

.moment-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.moment-card-meta {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #f4f0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.moment-card-meta > span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 7, 24, 0.74);
  backdrop-filter: blur(8px);
}

.moment-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  place-items: center;
  border-radius: 50%;
  background: #f8f6ff;
  box-shadow: 0 15px 32px rgba(7, 3, 18, 0.38);
  color: #24183e;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.moment-card:hover .moment-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--violet-light);
}

.moment-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.moment-card-caption {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  z-index: 3;
}

.moment-card-caption strong,
.moment-card-caption > span {
  display: block;
}

.moment-card-caption strong {
  max-width: 13ch;
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

.moment-card-caption > span {
  margin-top: 9px;
  color: var(--violet-light);
  font-size: 14px;
}

.moment-card-loaded {
  cursor: default;
}

.moment-card-loaded::after {
  content: none;
}

.moment-card-loaded:hover {
  transform: translateY(var(--card-offset));
  box-shadow: 0 22px 54px rgba(3, 1, 12, 0.46);
}

.moment-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.moments-hint {
  display: none;
}

.archive-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 34px;
  padding: 22px 24px;
  border: 1px solid rgba(243, 213, 142, 0.34);
  border-radius: 16px;
  background: rgba(243, 213, 142, 0.07);
  color: #f3e7c8;
}

.archive-notice svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.archive-notice p {
  margin: 0;
}

.people-scroller {
  display: grid;
  grid-auto-columns: minmax(220px, 24%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 26px;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--violet) transparent;
  scroll-snap-type: inline mandatory;
}

.person-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  scroll-snap-align: start;
}

.person-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
}

.person-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 6, 18, 0.97) 48%, #090612 68%);
  content: "";
}

.person-card h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
  text-wrap: balance;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
}

.reason-card::after {
  position: absolute;
  z-index: 1;
  inset: 18% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 8, 25, 0.32) 40%, rgba(13, 8, 25, 0.96) 100%);
  content: "";
  pointer-events: none;
}

.reason-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 24px;
}

.reason-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.08;
  text-wrap: balance;
}

.reason-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.reason-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: var(--reason-position, center);
  transition: transform 450ms ease;
}

.reason-card:hover img {
  transform: scale(1.025);
}

.reason-card--sparks {
  --reason-position: 50% 44%;
}

.reason-card--red-solo {
  --reason-position: 50% 42%;
}

.reason-card--theatre {
  --reason-position: 50% 46%;
}

.reason-card--lift {
  --reason-position: 50% 38%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-raised);
}

.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.gallery-item:nth-child(n + 10) {
  grid-column: span 4;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet-light);
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: rgba(216, 205, 253, 0.08);
  content: "−";
}

.faq-item[open] .faq-answer {
  animation: faq-answer-arrive 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-answer {
  max-width: 720px;
  padding: 0 0 28px;
  color: var(--ink-muted);
  font-size: 18px;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--violet-light);
  color: var(--ink-dark);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(34, 25, 56, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -190px;
  left: -90px;
  width: 430px;
  height: 430px;
}

.final-cta::after {
  right: -140px;
  bottom: -260px;
  width: 560px;
  height: 560px;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

@keyframes faq-answer-arrive {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .motion-reveal {
    --motion-delay: calc(var(--motion-order, 0) * 70ms);
  }

  .motion-ready .motion-heading {
    position: relative;
    opacity: 0;
    transform: translateY(26px);
    clip-path: inset(0 96% 0 0);
    transition:
      opacity 260ms ease var(--motion-delay),
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      clip-path 920ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay);
  }

  .motion-ready .motion-heading::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: min(120px, 28vw);
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--violet-light), rgba(243, 213, 142, 0));
    box-shadow: 0 0 18px rgba(216, 205, 253, 0.48);
    content: "";
    opacity: 0;
    transition:
      opacity 220ms ease calc(var(--motion-delay) + 360ms),
      transform 720ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--motion-delay) + 260ms);
  }

  .motion-ready .motion-heading.is-revealed {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }

  .motion-ready .motion-heading.is-revealed::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .motion-ready .motion-panel,
  .motion-ready .motion-notice,
  .motion-ready .motion-portrait,
  .motion-ready .motion-gallery,
  .motion-ready .motion-faq,
  .motion-ready .motion-final {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 460ms ease var(--motion-delay),
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay);
  }

  .motion-ready .motion-panel {
    clip-path: inset(12% 0 0 0 round var(--radius-lg));
  }

  .motion-ready .motion-notice,
  .motion-ready .motion-faq {
    transform: translateX(-22px);
  }

  .motion-ready .motion-portrait,
  .motion-ready .motion-gallery {
    clip-path: inset(18% 0 0 0 round var(--radius-md));
  }

  .motion-ready .motion-panel.is-revealed,
  .motion-ready .motion-notice.is-revealed,
  .motion-ready .motion-portrait.is-revealed,
  .motion-ready .motion-gallery.is-revealed,
  .motion-ready .motion-faq.is-revealed,
  .motion-ready .motion-final.is-revealed {
    opacity: 1;
    transform: translate(0, 0);
    clip-path: inset(0 0 0 0 round var(--radius-md));
  }

  .motion-ready .motion-media {
    opacity: 0;
    transform: scale(1.025);
    clip-path: inset(0 96% 0 0 round var(--radius-md));
    filter: brightness(0.7) saturate(0.72);
    transition:
      opacity 260ms ease var(--motion-delay),
      transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      clip-path 880ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      filter 720ms ease var(--motion-delay);
  }

  .motion-ready .motion-media.is-revealed {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0 round var(--radius-md));
    filter: none;
  }

  .motion-ready .motion-reason {
    opacity: 0;
    transform: translateY(30px);
    clip-path: inset(8% 0 0 0 round var(--radius-md));
    transition:
      opacity 300ms ease var(--motion-delay),
      transform 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      clip-path 840ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay);
  }

  .motion-ready .motion-reason .reason-copy {
    opacity: 0;
    transform: translateX(-20px);
    transition:
      opacity 420ms ease calc(var(--motion-delay) + 300ms),
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--motion-delay) + 260ms);
  }

  .motion-ready .motion-reason img {
    transform: scale(1.07);
    filter: brightness(0.76) saturate(0.78);
    transition:
      transform 980ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--motion-delay) + 80ms),
      filter 720ms ease calc(var(--motion-delay) + 80ms);
  }

  .motion-ready .motion-reason.is-revealed {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0 round var(--radius-md));
  }

  .motion-ready .motion-reason.is-revealed .reason-copy {
    opacity: 1;
    transform: translateX(0);
  }

  .motion-ready .motion-reason.is-revealed img {
    transform: scale(1);
    filter: none;
  }

  .motion-ready .motion-moment {
    opacity: 0;
    clip-path: inset(16% 0 0 0 round 16px);
    transition:
      opacity 460ms ease var(--motion-delay),
      clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay),
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 320ms ease;
  }

  .motion-ready .motion-moment > img {
    transform: scale(1.075);
    filter: saturate(0.76) brightness(0.8);
  }

  .motion-ready .motion-moment.is-revealed {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 16px);
  }

  .motion-ready .motion-moment.is-revealed > img {
    transform: scale(1);
    filter: none;
  }

  .motion-ready .motion-moment.is-revealed:hover > img {
    transform: scale(1.035);
    filter: saturate(1.06);
  }

  .motion-ready .motion-final {
    transform: translateY(24px) scale(0.98);
    clip-path: inset(0 48% 0 48%);
  }

  .motion-ready .motion-final.is-revealed {
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .motion-reveal {
    --motion-delay: calc(var(--motion-order, 0) * 48ms);
  }

  .motion-ready .motion-heading {
    transform: translateY(22px);
  }

  .motion-ready .motion-media {
    transform: scale(1.045);
    clip-path: inset(0 0 96% 0 round 22px);
    filter: brightness(0.62) saturate(0.68);
  }

  .motion-ready .motion-reason {
    transform: translateY(34px);
    clip-path: inset(14% 0 0 0 round 22px);
  }

  .motion-ready .motion-reason img {
    transform: scale(1.095);
  }
}

.final-status {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid rgba(34, 25, 56, 0.18);
  border-radius: 999px;
  background: var(--ink-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.final-status:hover {
  transform: translateY(-2px);
  background: #120d21;
}

.site-footer {
  padding: 46px 0;
  background: #0c0817;
  color: var(--ink-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.footer-brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
}

.footer-brand span {
  max-width: 240px;
  font-size: 14px;
  line-height: 1.35;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
  font-size: 14px;
}

.footer-meta p + p {
  margin-top: 5px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-ticket {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 0;
    z-index: 99;
    padding: 32px 20px;
    background: rgba(12, 8, 23, 0.98);
  }

  .mobile-menu[data-open="true"] {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    text-decoration: none;
  }

  .mobile-menu .mobile-ticket {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    border-radius: 999px;
    background: var(--violet-light);
    color: var(--ink-dark);
    font-weight: 700;
    text-decoration: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .event-card {
    --event-card-x: 0px;
    --event-card-y: 0px;
    width: min(380px, calc(100% - 24px));
    max-width: none;
    justify-self: start;
    transform: none;
  }

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

  .date-panel {
    min-height: 400px;
  }

  .moments-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .moments-intro {
    max-width: 56ch;
  }

  .moments-rail {
    display: flex;
    margin-inline: -20px;
    overflow-x: auto;
    padding: 8px 20px 58px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(216, 205, 253, 0.5) transparent;
    scrollbar-width: thin;
  }

  .moments-rail::-webkit-scrollbar {
    height: 5px;
  }

  .moments-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(216, 205, 253, 0.5);
  }

  .moment-card {
    flex: 0 0 min(39vw, 320px);
    scroll-snap-align: start;
  }

  .moment-card:nth-child(even) {
    --card-offset: 24px;
  }

  .moments-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 14px 0 0;
    color: var(--violet-light);
    font-size: 14px;
  }

  .moments-hint span {
    font-size: 19px;
  }

  .people-scroller {
    grid-auto-columns: minmax(220px, 37%);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(n + 10) {
    grid-column: span 4;
  }

  .gallery-item:nth-last-child(-n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header,
  .mobile-menu {
    --header-mobile-height: 68px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .language-switcher a {
    min-width: 44px;
    min-height: 44px;
    font-size: 11px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .hero {
    min-height: max(860px, 100svh);
    padding: 116px 0 34px;
  }

  .hero-media img {
    object-position: 52% top;
    transform-origin: 52% 18%;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(11, 8, 27, 0.08) 8%, rgba(11, 8, 27, 0.64) 45%, #120d21 80%),
      linear-gradient(90deg, rgba(11, 8, 27, 0.36), rgba(11, 8, 27, 0.06) 78%);
  }

  .hero-content {
    gap: 28px;
  }

  .hero-beam {
    top: -8%;
    width: 72%;
    height: 72%;
    filter: blur(10px);
    opacity: 0.3;
  }

  .hero-beam--left {
    --beam-angle: -18deg;
    left: -30%;
  }

  .hero-beam--right {
    --beam-angle: 18deg;
    right: -34%;
  }

  .hero-ice-traces {
    transform: scaleX(1.6);
    transform-origin: 55% 75%;
  }

  .hero-ice-trace {
    stroke-width: 1.35;
  }

  .hero-ice-flare {
    right: -38%;
    bottom: 13%;
    width: 128vw;
    height: 150px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(46px, 14.5vw, 66px);
    line-height: 0.89;
    text-shadow: 0 5px 28px rgba(5, 2, 15, 0.42);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 18px;
    text-shadow: 0 3px 20px rgba(5, 2, 15, 0.42);
  }

  .event-card {
    width: 100%;
    padding: 20px;
    background:
      radial-gradient(circle at 92% 4%, rgba(243, 213, 142, 0.17), transparent 34%),
      linear-gradient(150deg, rgba(39, 29, 68, 0.94), rgba(17, 12, 34, 0.88));
    box-shadow: 0 26px 62px rgba(5, 2, 15, 0.5);
  }

  .event-card dd {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .section-header {
    display: block;
    margin-bottom: 34px;
  }

  .section h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .section-intro {
    font-size: 17px;
  }

  .about-copy,
  .date-panel {
    border-radius: 22px;
  }

  .about-copy {
    padding: 30px 24px;
  }

  .date-panel {
    min-height: 350px;
    padding: 30px 24px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 0;
  }

  .video-play {
    width: 50px;
    height: 50px;
  }

  .moments-heading {
    margin-bottom: 30px;
  }

  .moments-intro {
    font-size: 17px;
  }

  .moments-rail {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .moment-card {
    flex-basis: min(78vw, 310px);
  }

  .moment-card:nth-child(even) {
    --card-offset: 18px;
  }

  .moment-card-caption strong {
    font-size: 24px;
  }

  .people-scroller {
    grid-auto-columns: minmax(215px, 72%);
  }

  .person-card,
  .person-card img {
    min-height: 350px;
  }

  .reason-card {
    aspect-ratio: 4 / 5;
  }

  .reason-copy {
    padding: 28px 24px 26px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(n + 10),
  .gallery-item:nth-last-child(-n + 2) {
    grid-column: span 1;
    border-radius: 12px;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: 1 / -1;
  }

  .gallery-item:first-child {
    aspect-ratio: 2 / 1;
  }

  .gallery-item:last-child {
    aspect-ratio: 16 / 10;
  }

  .gallery-item:last-child img {
    object-position: 50% 28%;
  }

  .final-cta {
    padding: 78px 0;
  }

  .final-status {
    min-height: 54px;
    padding-inline: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .event-card-row {
    grid-template-columns: 38px 1fr;
  }

  .event-card-icon {
    width: 38px;
    height: 38px;
  }

  .moment-card {
    flex-basis: 82vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
