:root {
  --ink: #050705;
  --ink-soft: #0c100a;
  --panel: #11160e;
  --acid: #9dff00;
  --acid-bright: #c0ff35;
  --paper: #f4f5ec;
  --muted: #a5aa9d;
  --line: rgb(255 255 255 / 14%);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 3px,
    rgb(255 255 255 / 1.2%) 4px
  );
  content: "";
  pointer-events: none;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 5rem), var(--max-width));
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header nav a {
  position: relative;
  color: #c8cdc1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--acid);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand > span {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68em;
  font-style: italic;
  letter-spacing: -0.08em;
  text-transform: none;
  transform: rotate(-6deg);
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  padding: 0.8rem 1.35rem;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.button--small {
  min-height: 3rem;
  border: 1px solid rgb(157 255 0 / 48%);
  padding: 0.65rem 1rem;
}

.button--small:hover {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--primary {
  background: var(--acid);
  box-shadow: 0.5rem 0.5rem 0 #355600;
  color: #081000;
}

.button--primary:hover {
  background: var(--acid-bright);
  box-shadow: 0.2rem 0.2rem 0 #355600;
  transform: translate(0.3rem, 0.3rem);
}

.button--dark {
  width: 100%;
  background: var(--ink);
  color: var(--acid);
}

.button--dark:hover {
  background: #182114;
  transform: translateY(-2px);
}

.button__icon {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 5rem), var(--max-width));
  min-height: 56.25rem;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  padding: 9rem 0 4.5rem;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -30vw;
  bottom: 0;
  left: -30vw;
  background:
    radial-gradient(circle at 14% 23%, rgb(125 255 0 / 13%), transparent 27rem),
    radial-gradient(circle at 83% 57%, rgb(76 255 0 / 9%), transparent 25rem),
    linear-gradient(115deg, #050705 0%, #090c07 53%, #020302 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 18%;
  left: -12%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  content: "";
  opacity: 0.4;
  transform: rotate(-8deg);
}

.hero__glow {
  position: absolute;
  z-index: 0;
  right: -22%;
  bottom: -32%;
  width: 47rem;
  height: 47rem;
  border: 1px solid rgb(157 255 0 / 11%);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgb(157 255 0 / 2.5%),
    0 0 0 10rem rgb(157 255 0 / 1.5%);
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.kicker {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
}

.eyebrow > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 1rem var(--acid);
}

h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.75;
  text-transform: uppercase;
}

.title-script {
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0 0 -0.08em 0.55em;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-style: italic;
  letter-spacing: -0.09em;
  line-height: 0.9;
  text-transform: none;
  transform: rotate(-5deg);
}

.title-script::after {
  position: absolute;
  right: -0.45em;
  bottom: 0.04em;
  left: -0.15em;
  height: 0.07em;
  background: var(--paper);
  content: "";
  transform: rotate(-3deg);
}

.title-neon {
  color: var(--acid);
  font-size: clamp(6rem, 10vw, 10rem);
  text-shadow:
    0 0 2rem rgb(157 255 0 / 14%),
    0.32rem 0.38rem 0 #385900;
  transform: skew(-4deg);
}

.title-white {
  width: max-content;
  margin-top: 0.18em;
  margin-left: 0.48em;
  color: var(--paper);
  font-size: clamp(3.2rem, 6.3vw, 6.1rem);
  font-style: italic;
  letter-spacing: -0.055em;
  transform: rotate(-3deg) skew(-6deg);
}

.hero__intro {
  max-width: 39rem;
  margin: 2.4rem 0 1.8rem;
  color: #c6cbbf;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.hero__intro strong {
  color: var(--paper);
}

.event-facts {
  display: grid;
  max-width: 43rem;
  margin: 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.event-facts > div {
  display: flex;
  min-height: 5.8rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.2rem;
}

.event-facts > div + div {
  border-left: 1px solid var(--line);
}

.event-facts dt {
  margin-bottom: 0.4rem;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.availability {
  margin: 0;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability > span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero__visual {
  display: flex;
  min-height: 42rem;
  align-items: center;
  justify-content: center;
}

.poster-frame {
  position: relative;
  width: min(100%, 29.5rem);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgb(157 255 0 / 46%);
  background: #10150d;
  box-shadow:
    1.3rem 1.55rem 0 rgb(157 255 0 / 7%),
    0 2rem 6rem rgb(0 0 0 / 68%);
  transform: rotate(1.8deg);
}

.poster-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgb(255 255 255 / 11%), transparent 27%),
    linear-gradient(0deg, rgb(4 8 2 / 20%), transparent 40%);
  content: "";
  pointer-events: none;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-stamp {
  position: absolute;
  right: -1.5rem;
  bottom: 4rem;
  display: flex;
  width: 10.5rem;
  height: 10.5rem;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  background: var(--acid);
  box-shadow:
    0 0 0 2px var(--acid),
    0.6rem 0.75rem 0 rgb(0 0 0 / 72%);
  color: var(--ink);
  flex-direction: column;
  transform: rotate(-7deg);
}

.price-stamp span,
.price-stamp small {
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-stamp strong {
  margin: -0.05em 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 4.2rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.open-bar-stamp {
  position: absolute;
  top: 7rem;
  left: -3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgb(255 255 255 / 24%);
  background: rgb(5 7 5 / 88%);
  box-shadow: 0 0.7rem 2.5rem rgb(0 0 0 / 45%);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.open-bar-stamp span {
  color: var(--acid);
}

.ticker {
  position: relative;
  z-index: 2;
  width: 106%;
  margin-left: -3%;
  overflow: hidden;
  border-block: 2px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-1deg);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 2.5rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.ticker i {
  font-family: Arial, sans-serif;
  font-style: normal;
}

.section {
  width: min(calc(100% - 5rem), var(--max-width));
  margin: 0 auto;
  padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.section-heading {
  max-width: 50rem;
}

.section-heading .kicker,
.details__heading .kicker,
.final-cta .kicker {
  margin: 0 0 1rem;
}

.section-heading h2,
.details__heading h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.details__heading > p:last-child {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.countdown {
  display: grid;
  align-items: end;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.countdown .section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.countdown__grid {
  display: grid;
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.countdown__grid > div {
  display: flex;
  min-height: 9.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.countdown__grid > div + div {
  border-left: 1px solid var(--line);
}

.countdown__grid strong {
  color: var(--acid);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.countdown__grid span {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.feature-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 22rem;
  border: 1px solid var(--line);
  padding: 2rem;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.feature-card + .feature-card {
  border-left: 0;
}

.feature-card:hover {
  background: var(--panel);
  transform: translateY(-0.5rem);
}

.feature-card > span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgb(157 255 0 / 42%);
  border-radius: 50%;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 6rem 0 1rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-card--accent {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.feature-card--accent > span {
  border-color: var(--ink);
  color: var(--ink);
}

.feature-card--accent p {
  color: #304219;
}

.feature-card--accent:hover {
  background: var(--acid-bright);
}

.details {
  display: grid;
  align-items: start;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.details__heading {
  position: sticky;
  top: 2.5rem;
}

.details__heading h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.details__content {
  display: grid;
  gap: 4rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 9rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 2rem 0 2rem 1.8rem;
}

.timeline li::before {
  position: absolute;
  top: 2.45rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 1rem rgb(157 255 0 / 60%);
  content: "";
}

.timeline time,
.timeline > li > span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: -0.3rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ticket-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 4rem);
}

.ticket-card::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 15rem;
  height: 15rem;
  border: 1.8rem solid rgb(5 7 5 / 10%);
  border-radius: 50%;
  content: "";
}

.ticket-card > p,
.ticket-card > span {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket-card > strong {
  display: block;
  margin: 0.3rem 0 -0.1rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(6rem, 13vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.ticket-card sup {
  font-size: 0.42em;
  vertical-align: top;
}

.ticket-card ul {
  display: grid;
  margin: 2.4rem 0;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.ticket-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.ticket-card li::before {
  display: grid;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
}

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

.gallery__grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.gallery figure {
  position: relative;
  margin: 0;
}

.gallery figure::before {
  position: absolute;
  z-index: -1;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid rgb(157 255 0 / 45%);
  content: "";
}

.gallery figure img {
  width: 100%;
  aspect-ratio: 0.706 / 1;
  object-fit: cover;
}

.gallery__statement {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.gallery__statement > span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery blockquote {
  margin: 2rem 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.gallery__statement p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq .section-heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

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

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  color: var(--acid);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 40rem;
  margin: 1rem 2.5rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 30%, rgb(157 255 0 / 22%), transparent 22rem),
    linear-gradient(120deg, #0d1309, #030403);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 18rem;
  height: 1px;
  background: var(--acid);
  content: "";
  opacity: 0.5;
}

.final-cta::before {
  top: 25%;
  left: -3rem;
  transform: rotate(-12deg);
}

.final-cta::after {
  right: -2rem;
  bottom: 25%;
  transform: rotate(9deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), 61rem);
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--acid);
  font-size: clamp(5rem, 13vw, 12rem);
}

.final-cta__inner > p:not(.kicker) {
  margin: 1.2rem 0 2.2rem;
  color: #c5cabd;
  font-size: 1.05rem;
}

.final-cta .button {
  min-width: min(100%, 20rem);
}

.final-cta small {
  display: block;
  margin-top: 1.6rem;
  color: var(--muted);
}

footer {
  display: flex;
  width: min(calc(100% - 5rem), var(--max-width));
  min-height: 8rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.brand--footer {
  font-size: 1.25rem;
}

.mobile-whatsapp {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section,
  footer {
    width: min(calc(100% - 3rem), 68rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 23rem;
    gap: 2.5rem;
  }

  .price-stamp {
    right: -0.5rem;
    width: 8.5rem;
    height: 8.5rem;
  }

  .price-stamp strong {
    font-size: 3.4rem;
  }

  .open-bar-stamp {
    left: -1.5rem;
  }

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

  .feature-card:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .feature-card:nth-child(4) {
    border-top: 0;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 5rem;
  }

  .site-header {
    position: relative;
    width: calc(100% - 2.25rem);
    min-height: 4.9rem;
  }

  .site-header nav,
  .site-header .button {
    display: none;
  }

  .hero {
    width: calc(100% - 2.25rem);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3.5rem 0 5rem;
  }

  .hero__visual {
    min-height: auto;
  }

  .poster-frame {
    width: min(90%, 29rem);
  }

  .open-bar-stamp {
    top: 4rem;
    left: 0;
  }

  .price-stamp {
    right: 1rem;
    bottom: 2.5rem;
  }

  .section,
  footer {
    width: calc(100% - 2.25rem);
  }

  .countdown,
  .details,
  .faq {
    grid-template-columns: 1fr;
  }

  .countdown__grid {
    margin-top: 0.5rem;
  }

  .details__heading {
    position: static;
  }

  .gallery__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.8rem;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 50;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    background: var(--acid);
    box-shadow: 0 0.8rem 2.8rem rgb(0 0 0 / 65%);
    color: var(--ink);
    padding: 0.75rem 1rem 0.75rem 1.2rem;
  }

  .mobile-whatsapp > span {
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-whatsapp small {
    display: block;
    margin-top: 0.16rem;
    font-size: 0.66rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-whatsapp strong {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--acid);
  }
}

@media (max-width: 620px) {
  .title-script {
    margin-left: 0.4em;
  }

  .title-neon {
    font-size: clamp(5.2rem, 26vw, 8rem);
  }

  .title-white {
    margin-left: 0.15em;
    font-size: clamp(2.8rem, 14.5vw, 4.7rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .availability {
    text-align: center;
  }

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

  .event-facts > div {
    min-height: 5rem;
    padding: 0.85rem;
  }

  .event-facts > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 1 / -1;
  }

  .poster-frame {
    width: 100%;
  }

  .open-bar-stamp {
    top: 3rem;
    left: -0.3rem;
    font-size: 1rem;
  }

  .price-stamp {
    right: -0.2rem;
    bottom: 2rem;
    width: 7.7rem;
    height: 7.7rem;
  }

  .price-stamp strong {
    font-size: 3.05rem;
  }

  .section {
    padding-block: 5rem;
  }

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

  .countdown__grid > div {
    min-height: 7.8rem;
  }

  .countdown__grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .countdown__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .feature-card {
    min-height: 17rem;
  }

  .feature-card + .feature-card,
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .feature-card--accent {
    border-color: var(--acid) !important;
  }

  .feature-card h3 {
    margin-top: 3.8rem;
  }

  .timeline li {
    grid-template-columns: 5.8rem 1fr;
    padding-left: 1.5rem;
  }

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

  .gallery__statement {
    padding-top: 2rem;
  }

  .gallery blockquote {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 2.2rem;
  }

  footer p {
    margin: 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
