:root {
  --ink: #171412;
  --paper: #f5f0e8;
  --salt: #fffaf1;
  --sea: #1f8178;
  --coral: #ef6655;
  --sun: #f1c84b;
  --violet: #7d6bd6;
  --line: rgba(23, 20, 18, 0.16);
  --shadow: 0 22px 70px rgba(23, 20, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  min-height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  color: var(--salt);
  background: rgba(23, 20, 18, 0.56);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.facts,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--sun);
  color: var(--ink);
  font-family: Unbounded, sans-serif;
  font-size: 13px;
}

.nav {
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 250, 241, 0.82);
}

.nav a:hover,
.ticket-mini:hover {
  color: var(--sun);
}

.ticket-mini,
.button,
.ticket-panel {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.ticket-mini {
  display: grid;
  place-items: center;
  padding: 0 18px;
  background: var(--coral);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(20px, calc((100vw - 1160px) / 2)) 64px;
  color: var(--salt);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.92), rgba(23, 20, 18, 0.42) 58%, rgba(23, 20, 18, 0.2)),
    linear-gradient(0deg, rgba(23, 20, 18, 0.8), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sea);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 8vw, 116px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

h3 {
  font-size: clamp(25px, 4vw, 46px);
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--coral);
  color: var(--salt);
}

.button.ghost {
  border-color: rgba(255, 250, 241, 0.38);
  background: rgba(255, 250, 241, 0.1);
  color: var(--salt);
}

.event-card {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 58px;
  z-index: 1;
  width: min(290px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.13);
  backdrop-filter: blur(16px);
}

.event-card span,
.artist-card span,
.ticket-panel span,
.event-card small,
.ticket-panel small {
  display: block;
  color: rgba(255, 250, 241, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.event-card strong {
  display: block;
  margin: 8px 0;
  font-family: Unbounded, sans-serif;
  font-size: 28px;
}

.feature-section,
.lineup-section,
.sound-section,
.venue-section,
.tickets-section {
  padding: 96px max(20px, calc((100vw - 1160px) / 2));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.jouravlie-grid,
.venue-section,
.sound-section,
.tickets-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.poster-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.story p,
.sound-copy p,
.venue-section p,
.tickets-section p {
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.quote-panel {
  margin-top: 28px;
  padding: 24px;
  border-left: 8px solid var(--coral);
  border-radius: 8px;
  background: var(--salt);
}

.quote-panel span,
.quote-panel strong {
  display: block;
}

.quote-panel span {
  margin-bottom: 8px;
  color: var(--sea);
  font-weight: 800;
}

.lineup {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.artist-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--salt);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(23, 20, 18, 0.14);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.artist-card-main img {
  aspect-ratio: 16 / 10;
}

.artist-card div {
  padding: 20px;
}

.artist-card span {
  margin-bottom: 8px;
  color: var(--sea);
}

.artist-card p {
  margin: 12px 0 0;
  line-height: 1.45;
}

.artist-card-main {
  background: var(--ink);
  color: var(--salt);
}

.sound-section {
  background: #dbe9df;
}

.mixer {
  display: grid;
  gap: 12px;
}

.mix-button,
.audio-player {
  width: 100%;
}

.mix-button {
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--salt);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.mix-button span,
.mix-button strong {
  display: block;
}

.mix-button span {
  font-weight: 900;
}

.mix-button strong {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(23, 20, 18, 0.62);
}

.mix-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--salt);
}

.mix-button.active strong {
  color: rgba(255, 250, 241, 0.68);
}

.audio-player {
  height: 46px;
  margin-top: 6px;
  accent-color: var(--coral);
}

.visualizer {
  height: 116px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  padding-top: 12px;
}

.visualizer i {
  display: block;
  min-height: 20px;
  border-radius: 6px 6px 0 0;
  background: var(--sea);
  transform-origin: bottom;
  animation: pulse 900ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

body.is-playing .visualizer i {
  animation-play-state: running;
}

.visualizer i:nth-child(2n) {
  background: var(--coral);
  animation-duration: 760ms;
}

.visualizer i:nth-child(3n) {
  background: var(--violet);
  animation-duration: 1100ms;
}

.visualizer i:nth-child(4n) {
  background: var(--sun);
  animation-duration: 640ms;
}

@keyframes pulse {
  from { height: 24px; }
  to { height: 104px; }
}

.venue-section {
  background: var(--salt);
}

.venue-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.facts {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.facts div {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts dt {
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.tickets-section {
  background: var(--coral);
  color: var(--salt);
}

.tickets-section .eyebrow {
  color: var(--sun);
}

.ticket-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--ink);
  color: var(--salt);
  box-shadow: var(--shadow);
}

.ticket-panel strong {
  font-family: Unbounded, sans-serif;
  font-size: clamp(28px, 5vw, 54px);
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: var(--salt);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .event-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .jouravlie-grid,
  .venue-section,
  .sound-section,
  .tickets-section,
  .lineup {
    grid-template-columns: 1fr;
  }

  .feature-section,
  .lineup-section,
  .sound-section,
  .venue-section,
  .tickets-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .story p,
  .sound-copy p,
  .venue-section p,
  .tickets-section p {
    font-size: 18px;
  }
}
