:root {
  --text: #fff5e4;
  --muted: rgba(255, 245, 228, 0.72);
  --line: rgba(214, 178, 106, 0.26);
  --gold: #d6b26a;
  --shadow: rgba(0, 0, 0, 0.34);
  --black: #0b0e09;
  --olive: #12170f;
  --edge: clamp(24px, 4.8vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.72'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 76px;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  color: rgba(255, 245, 228, 0.88);
  background: rgba(9, 12, 8, 0.14);
  text-shadow: 0 1px 12px var(--shadow);
  border-bottom: 1px solid transparent;
  transition: background 650ms ease, backdrop-filter 650ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(9, 12, 8, 0.58);
  backdrop-filter: blur(14px);
}

.site-header__logo,
.site-header__links a,
.site-header__socials a {
  font-size: clamp(0.86rem, 0.86vw, 1rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header__logo {
  font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  color: rgba(255, 245, 228, 0.98);
  font-size: clamp(1.42rem, 1.82vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 420ms ease, opacity 420ms ease;
}

.site-header__nav {
  display: contents;
}

.site-header__menu-logo {
  display: none;
}

.site-header__links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__socials {
  grid-column: 3;
  justify-content: flex-end;
}

.site-header__links,
.site-header__socials,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
}

.site-header a,
.site-footer a {
  transition: color 320ms ease, opacity 320ms ease;
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  color: rgba(226, 226, 218, 0.88);
  opacity: 0.9;
}

.site-header__links a:hover,
.site-header__links a:focus-visible,
.site-header__socials a:hover,
.site-header__socials a:focus-visible {
  color: rgba(214, 178, 106, 0.95);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.site-header a:focus-visible,
.site-footer a:focus-visible,
.newsletter button:focus-visible,
.newsletter input:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.site-header__socials a,
.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header__socials svg,
.site-footer__links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__socials span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/ankush-jain-hero-optimized.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  transform-origin: center center;
  animation: imageReveal 1800ms ease-out both, imageDrift 16s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 11, 7, 0.54) 0%, rgba(8, 11, 7, 0.28) 32%, transparent 65%),
    linear-gradient(0deg, rgba(13, 18, 13, 0.18) 0%, rgba(13, 18, 13, 0.06) 14%, transparent 28%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 clamp(24px, 8vw, 118px);
  display: flex;
  align-items: center;
}

.hero__prompt {
  position: absolute;
  left: var(--edge);
  bottom: clamp(34px, 5vw, 72px);
  z-index: 5;
  color: rgba(255, 245, 228, 0.78);
  opacity: 0;
  font-size: clamp(0.78rem, 0.82vw, 0.94rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 12px var(--shadow);
  cursor: pointer;
  transform: translateY(12px);
  transition: color 280ms ease, opacity 420ms ease, transform 420ms ease;
}

.hero__prompt.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.hero__prompt.is-ready:not(.is-hidden):hover,
.hero__prompt.is-ready:not(.is-hidden):focus-visible {
  color: rgba(214, 178, 106, 0.96);
  transform: translateY(2px);
}

.hero__prompt:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.hero__prompt.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

.section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: calc(var(--edge) + clamp(86px, 9vw, 140px)) minmax(0, 1fr);
  background: #0d120d;
  isolation: isolate;
}

.section[id] {
  scroll-margin-top: clamp(88px, 10vh, 120px);
}

.live-list__heading,
.community__wordmark,
.newsletter__heading {
  scroll-margin-top: clamp(96px, 11vh, 128px);
}

.section--live {
  margin-top: -18vh;
  padding-top: 18vh;
  background:
    linear-gradient(180deg, rgba(13, 18, 13, 0) 0%, rgba(13, 18, 13, 0.38) 42%, #0d120d 100%) top / 100% 18vh no-repeat,
    linear-gradient(#0d120d, #0d120d) left 18vh / 100% calc(100% - 18vh) no-repeat;
}

.section__label {
  position: relative;
  grid-column: 1;
  align-self: start;
  justify-self: start;
  margin-left: var(--edge);
  margin-top: clamp(76px, 9vh, 124px);
  color: rgba(255, 245, 228, 0.68);
  font-size: clamp(1.45rem, 2.1vw, 2.65rem);
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 0.86;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section--live .section__label {
  margin-top: clamp(76px, 9vh, 124px);
}

.section--newsletter .section__label {
  margin-top: clamp(150px, 16vh, 220px);
}

.section--newsletter {
  background: #0e130e;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 800ms ease-out var(--reveal-delay, 0ms),
    transform 800ms ease-out var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled .section__label.reveal-item {
  transform: rotate(180deg) translateY(20px);
}

.reveal-enabled .is-revealed .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .is-revealed .section__label.reveal-item {
  transform: rotate(180deg) translateY(0);
}

.section__inner {
  grid-column: 2;
  width: min(1440px, calc(100% - var(--edge)));
  margin: 0 auto 0 0;
  padding: clamp(76px, 9vh, 124px) 0 clamp(64px, 8vh, 108px);
}

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.section__kicker {
  display: none;
  margin: 0 0 18px;
  color: rgba(214, 178, 106, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.section h1 {
  margin: 0;
  color: rgba(255, 245, 228, 0.95);
  font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.section__inner--live {
  max-width: none;
}

.live-list {
  border-top: 1px solid var(--line);
}

.live-list__heading,
.newsletter__heading {
  margin: 0 0 clamp(18px, 2.5vw, 30px);
  color: rgba(255, 245, 228, 0.95);
  font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 3.7vw, 4.05rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.newsletter__heading {
  font-size: clamp(2.75rem, 4vw, 4.35rem);
}

.live-list__item {
  display: grid;
  grid-template-columns: minmax(92px, 0.16fr) minmax(280px, 1fr) minmax(118px, 150px);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(22px, 3.1vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}

.live-list__item time {
  color: rgba(214, 178, 106, 0.72);
  font-size: clamp(1rem, 1vw, 1.14rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-list__details h3 {
  margin: 0;
  color: rgba(255, 245, 228, 0.94);
  font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2.12rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.live-list__details p,
.newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
}

.live-list__details p {
  margin-top: 10px;
  color: rgba(255, 245, 228, 0.62);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.5;
}

.live-list__note {
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: rgba(255, 245, 228, 0.56);
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  font-weight: 300;
  line-height: 1.6;
}

.live-list__ticket {
  justify-self: end;
  margin-right: 40px;
  color: rgba(214, 178, 106, 0.78);
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 260ms ease, transform 260ms ease;
}

.reveal-enabled .is-revealed .live-list__ticket,
.reveal-enabled .is-revealed .community__cta {
  transition: color 260ms ease, transform 260ms ease;
}

.live-list__ticket--empty {
  visibility: hidden;
}

.live-list__ticket--soon {
  color: rgba(255, 245, 228, 0.48);
}

.live-list__item:hover .live-list__ticket:not(.live-list__ticket--empty):not(.live-list__ticket--soon),
.live-list__ticket:focus-visible {
  color: var(--text);
  transform: translateX(5px);
}

.live-list__ticket:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.community {
  max-width: none;
  padding-top: clamp(76px, 9vh, 124px);
  padding-bottom: clamp(64px, 8vh, 108px);
}

.community__copy {
  max-width: 920px;
}

.community__wordmark {
  width: min(100%, clamp(200px, 20vw, 315px));
  height: auto;
  display: block;
  margin: 0 auto clamp(18px, 2.5vw, 30px) 0;
}

.community__intro {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 300;
  line-height: 1.82;
}

.community__intro + .community__intro {
  margin-top: 24px;
}

.community__intro strong {
  color: var(--text);
  font-weight: 500;
}

.text-accent,
.community__intro strong.text-accent {
  color: rgba(214, 178, 106, 0.84);
}

.community__cta {
  margin-top: clamp(30px, 4vw, 48px);
  display: inline-flex;
  color: rgba(214, 178, 106, 0.86);
  font-size: clamp(0.82rem, 0.82vw, 0.94rem);
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 260ms ease, transform 260ms ease;
}

.community__cta:hover,
.community__cta:focus-visible,
.reveal-enabled .is-revealed .community__cta:hover,
.reveal-enabled .is-revealed .community__cta:focus-visible {
  color: var(--text);
  transform: translateX(5px);
}

.community__cta:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.newsletter {
  max-width: none;
  padding-top: clamp(150px, 16vh, 220px);
  padding-bottom: clamp(96px, 12vh, 150px);
}

.newsletter p {
  max-width: 780px;
  margin-top: 24px;
}

.newsletter .section__kicker + p {
  margin-top: 0;
}

.newsletter__form {
  margin-top: clamp(52px, 6vw, 78px);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.newsletter__row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(16px, 3vw, 28px);
  width: min(100%, 640px);
  border-bottom: 1px solid rgba(214, 178, 106, 0.46);
}

.newsletter input,
.newsletter button {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0 0 0 0;
}

.newsletter input::placeholder {
  color: rgba(255, 245, 228, 0.38);
}

.newsletter button {
  width: max-content;
  min-height: 52px;
  padding: 0 0 0 0;
  display: inline-flex;
  align-items: center;
  color: rgba(214, 178, 106, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 260ms ease, transform 260ms ease;
}

.newsletter button:hover,
.newsletter button:focus-visible {
  color: var(--text);
  transform: translateX(5px);
}

.newsletter__success {
  width: min(100%, 640px);
  margin: 18px 0 0;
  color: rgba(214, 178, 106, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.newsletter__success:empty {
  display: none;
}

.newsletter__form.is-submitted .newsletter__success {
  opacity: 1;
  transform: translateY(0);
}

.newsletter__frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.newsletter__note {
  margin-top: 16px;
  color: rgba(255, 245, 228, 0.44);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  min-height: 72px;
  padding: 0 var(--edge);
  background: #101510;
  color: rgba(255, 245, 228, 0.68);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__credit {
  margin: 0;
  color: rgba(255, 245, 228, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  justify-content: flex-end;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.site-footer__links span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 0 24px;
    grid-template-columns: 1fr auto;
  }

  .site-header__toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-content: center;
    gap: 7px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 12;
  }

  .site-header__toggle span {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .site-header__toggle span:first-child {
    transform: translateY(4px) rotate(35deg);
  }

  .site-header.is-open .site-header__toggle span:last-child {
    transform: translateY(-4px) rotate(-35deg);
  }

  .site-header__nav {
    position: fixed;
    z-index: 11;
    top: 0;
    min-height: 100vh;
    min-height: 100svh;
    left: 0;
    right: 0;
    padding: clamp(92px, 14vh, 132px) 24px 48px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: clamp(24px, 5vh, 42px);
    background: #0d120d;
    border-bottom: 0;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__menu-logo {
    display: block;
    color: rgba(255, 245, 228, 0.98);
    font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-align: center;
  }

  .site-header__menu-logo,
  .site-header__links a,
  .site-header__socials a {
    opacity: 0;
    transition: opacity 320ms ease;
  }

  .site-header__menu-logo {
    transition-delay: 250ms;
  }

  .site-header__links a:nth-child(1) {
    transition-delay: 200ms;
  }

  .site-header__links a:nth-child(2) {
    transition-delay: 150ms;
  }

  .site-header__links a:nth-child(3) {
    transition-delay: 100ms;
  }

  .site-header__socials a:nth-child(1) {
    transition-delay: 50ms;
  }

  .site-header__socials a:nth-child(2) {
    transition-delay: 0ms;
  }

  .site-header.is-open .site-header__menu-logo,
  .site-header.is-open .site-header__links a,
  .site-header.is-open .site-header__socials a {
    opacity: 1;
  }

  .site-header.is-open .site-header__menu-logo {
    transition-delay: 120ms;
  }

  .site-header.is-open .site-header__links a:nth-child(1) {
    transition-delay: 170ms;
  }

  .site-header.is-open .site-header__links a:nth-child(2) {
    transition-delay: 220ms;
  }

  .site-header.is-open .site-header__links a:nth-child(3) {
    transition-delay: 270ms;
  }

  .site-header.is-open .site-header__socials a:nth-child(1) {
    transition-delay: 320ms;
  }

  .site-header.is-open .site-header__socials a:nth-child(2) {
    transition-delay: 370ms;
  }

  .site-header__links,
  .site-header__socials {
    grid-column: auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: clamp(20px, 3.4vh, 30px);
  }

  .site-header__links a,
  .site-header__socials a {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
  }

  .site-header__socials span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .site-header__socials svg {
    display: none;
  }

  .hero::after {
    background-size: auto 100%;
    background-position: 67% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 11, 7, 0.18) 0%, transparent 34%),
      linear-gradient(0deg, #0d120d 0%, rgba(13, 18, 13, 0.86) 9%, rgba(8, 11, 7, 0.32) 24%, transparent 54%);
  }

  .hero__content {
    padding: 0 28px;
    align-items: flex-end;
    padding-bottom: clamp(104px, 17vh, 148px);
  }

  .hero__prompt {
    bottom: clamp(34px, 5vw, 72px);
  }

  .section--live {
    margin-top: -14vh;
    padding-top: 14vh;
    background:
      linear-gradient(180deg, rgba(13, 18, 13, 0) 0%, rgba(13, 18, 13, 0.50) 44%, #0d120d 100%) top / 100% 14vh no-repeat,
      linear-gradient(#0d120d, #0d120d) left 14vh / 100% calc(100% - 14vh) no-repeat;
  }

  .section__inner,
  .section__inner--split {
    width: min(100% - 48px, 680px);
  }

  .section {
    display: block;
  }

  .section[id] {
    scroll-margin-top: 80px;
  }

  .live-list__heading,
  .community__wordmark,
  .newsletter__heading {
    scroll-margin-top: 88px;
  }

  .section__label {
    display: none;
  }

  .section__inner {
    margin: 0 auto;
    padding-top: clamp(64px, 8vh, 96px);
    padding-bottom: clamp(56px, 8vh, 88px);
  }

  .section--live .section__inner {
    padding-top: clamp(48px, 6.5vh, 78px);
  }

  .community,
  .newsletter {
    padding-top: clamp(64px, 8vh, 96px);
    padding-bottom: clamp(56px, 8vh, 88px);
  }

  .newsletter {
    padding-top: clamp(92px, 11vh, 124px);
  }

  .newsletter__row {
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 0;
  }

  .newsletter input {
    border-bottom: 1px solid rgba(214, 178, 106, 0.46);
  }

  .newsletter button {
    margin-top: 10px;
  }

  .section__kicker {
    display: block;
  }

  .section__inner--split {
    grid-template-columns: 1fr;
  }

  .live-list__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .community__wordmark {
    width: min(100%, 230px);
    margin-bottom: 30px;
  }

  .live-list__details h3 {
    font-size: clamp(1.32rem, 5.7vw, 1.78rem);
  }

  .live-list__ticket {
    justify-self: start;
    margin-right: 0;
    margin-top: 4px;
  }

  .site-footer {
    min-height: 68px;
    padding: 0 24px;
  }

}

@media (max-width: 460px) {
  .section__inner {
    padding-top: clamp(64px, 8vh, 96px);
    padding-bottom: clamp(56px, 8vh, 88px);
  }

}

@keyframes imageReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.01);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

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

  .hero::after {
    animation: none;
  }

  .reveal-enabled .reveal-item,
  .reveal-enabled .section__label.reveal-item,
  .reveal-enabled .is-revealed .reveal-item,
  .reveal-enabled .is-revealed .section__label.reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-enabled .section__label.reveal-item,
  .reveal-enabled .is-revealed .section__label.reveal-item {
    transform: rotate(180deg);
  }
}
