:root {
  --ink: #191211;
  --paper: #f4eadf;
  --line: rgba(25, 18, 17, 0.22);
  --white-line: rgba(255, 255, 255, 0.42);
  --brand-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--brand-font);
  font-synthesis: none;
}

body.music-prompt-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 22px clamp(20px, 4vw, 64px) 30px;
  display: flex;
  flex-direction: column;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 72%, rgba(255, 211, 73, 0.95), transparent 27%),
    radial-gradient(circle at 10% 20%, rgba(196, 0, 91, 0.88), transparent 44%),
    linear-gradient(130deg, #b50065 0%, #ed3a37 47%, #f88a20 78%, #ffc83b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.artist-texture {
  position: absolute;
  inset: -1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: rotate(-1.5deg) scale(1.03);
  font-size: clamp(2.1rem, 5.5vw, 6.8rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
  white-space: nowrap;
  opacity: 0.075;
  overflow: hidden;
  pointer-events: none;
}

.artist-texture span {
  display: block;
  width: max-content;
  will-change: transform;
}

@supports (animation-timeline: scroll()) {
  .artist-texture span:nth-child(odd) {
    animation: ghost-drift-left linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 100vh;
  }

  .artist-texture span:nth-child(even) {
    animation: ghost-drift-right linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 100vh;
  }
}

@keyframes ghost-drift-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-7vw, -1.5vh, 0);
  }
}

@keyframes ghost-drift-right {
  from {
    transform: translate3d(-5vw, 0, 0);
  }

  to {
    transform: translate3d(3vw, 1.5vh, 0);
  }
}

.topbar,
.hero-content,
.scroll-cue {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--white-line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a {
  text-decoration: none;
}

.wordmark span {
  opacity: 0.65;
}

.top-link span {
  margin-left: 0.25rem;
}

.hero-content {
  margin: auto 0;
  padding: 12vh 0 8vh;
}

.eyebrow,
.section-number,
.card-label {
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 1500px;
  margin: 0;
  font-size: clamp(3.4rem, 11.1vw, 10.8rem);
  line-height: 0.84;
  letter-spacing: -0.078em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.scroll-cue {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(64px, 10vw, 150px) clamp(20px, 4vw, 64px);
}

.details-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: 0.89;
  letter-spacing: -0.065em;
}

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

.detail-card {
  display: grid;
  grid-template-columns: 0.72fr 1.25fr;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 30px 0 40px;
  border-bottom: 1px solid var(--line);
}

.detail-card h3 {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.detail-card > p:last-child {
  grid-column: 2;
  margin: 0;
  max-width: 520px;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.45;
}

.when-where {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 82svh;
  background: var(--ink);
  color: #fff;
}

.date-lockup,
.venue {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 4vw, 64px);
}

.date-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.date-lockup p {
  margin: 0;
  font-size: clamp(3.5rem, 8.5vw, 9.5rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.072em;
}

.venue {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.venue h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.8rem, 5.6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.venue address {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.45;
  font-style: normal;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button.primary,
.button:hover {
  color: var(--ink);
  background: #fff;
}

.button:hover {
  transform: translateY(-2px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(48px, 7vw, 90px) clamp(20px, 4vw, 64px);
  color: white;
  background:
    linear-gradient(120deg, rgba(184, 0, 96, .95), rgba(242, 74, 42, .92) 50%, rgba(247, 151, 36, .92)),
    var(--ink);
}

.footer-mark {
  margin: 0 0 0.6rem;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.065em;
}

footer p {
  margin: 0;
}

.footer-links {
  min-width: min(100%, 360px);
  border-top: 1px solid var(--white-line);
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-line);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links span {
  opacity: 0.74;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: 92svh;
  }

  .top-link {
    font-size: 0;
  }

  .top-link span {
    font-size: 1rem;
  }

  .hero-content {
    padding: 15vh 0 10vh;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17.3vw, 7rem);
    line-height: 0.87;
  }

  .details,
  .when-where {
    grid-template-columns: 1fr;
  }

  .details {
    gap: 4rem;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card > p:last-child {
    grid-column: 1;
  }

  .when-where {
    min-height: auto;
  }

  .date-lockup {
    min-height: 62svh;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .venue {
    min-height: 62svh;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .eyebrow {
    max-width: 16rem;
    line-height: 1.25;
  }

  .button {
    width: 100%;
  }

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

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

  .button {
    transition: none;
  }

  .artist-texture span {
    animation: none !important;
    transform: none !important;
  }
}

.music-gate {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(25, 18, 17, 0.22), rgba(25, 18, 17, 0.92)),
    radial-gradient(circle at 80% 15%, #ffc83b, transparent 34%),
    linear-gradient(130deg, #b50065, #ed3a37 52%, #f88a20);
}

.music-gate[hidden],
.music-toggle[hidden] {
  display: none;
}

.music-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.music-gate h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.music-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(36px, 6vw, 72px);
}

.music-gate button,
.music-toggle {
  border: 1px solid rgba(255,255,255,0.58);
  color: #fff;
  background: transparent;
  font: 800 0.76rem/1 var(--brand-font);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.music-gate button {
  min-width: 220px;
  padding: 18px 20px;
  text-align: left;
}

.music-gate button:first-child {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  background: #fff;
}

.music-toggle {
  position: fixed;
  z-index: 10;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(25, 18, 17, 0.92);
  backdrop-filter: blur(10px);
}

.music-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.42;
}

.music-toggle.is-playing .music-status-dot {
  opacity: 1;
  animation: music-pulse 1.1s ease-in-out infinite alternate;
}

@keyframes music-pulse {
  to {
    transform: scale(1.65);
  }
}

@media (max-width: 520px) {
  .music-gate-actions,
  .music-gate button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-toggle.is-playing .music-status-dot {
    animation: none;
  }
}
