@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-400.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/space-grotesk-300.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/space-grotesk-400.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-700.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/space-mono-400.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-mono-700.ttf") format("truetype");
}

:root {
  --surface: #ffffff;
  --surface-low: #f9f6e9;
  --surface-mid: #ede9d8;
  --surface-high: #dcd8c5;
  --text: #23211b;
  --muted: #5d5743;
  --line: #c8c4b2;
  --strong-line: #23211b;
  --accent: #23211b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
}

body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  background: var(--surface);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
}

.eyebrow,
.track-count {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 104px);
  letter-spacing: 0;
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 0.9;

}
.lineup-intro {
  text-align: center;
}
h3 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 860px;
  margin: 36px auto 0;
  text-align: center;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 28px;
  background: var(--strong-line);
  color: var(--surface);
  font-family: "Anton", Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.ticket-button:hover,
.ticket-button:focus {
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-1px);
}

.teaser-card {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}

.teaser-image {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
}

.playlist-section {
  background: var(--surface);
}

.lineup-section {
  padding-top: 32px;
}

.playlist-container {
  max-width: 980px;
}

.lineup-intro {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--strong-line);
}

.lineup-intro p:last-child,
.lineup-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.lineup-grid article {
  padding: 24px;
  background: var(--surface-low);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--strong-line);
}

.playlist {
  border: 0;
  background: var(--surface-low);
}

.track {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 520px) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.track:last-child {
  border-bottom: 0;
}

.track-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.track-number,
.download-link,
.track-meta p {
  font-family: "Space Mono", monospace;
}

.track-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.track-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

audio {
  width: 100%;
  min-width: 240px;
  accent-color: var(--accent);
}

.download-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 2px solid var(--strong-line);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.download-link:hover,
.download-link:focus {
  background: var(--strong-line);
  color: var(--surface);
  text-decoration: none;
}

.site-footer {
  padding: 28px 0;
  border-top: 2px solid var(--strong-line);
  background: var(--surface-low);
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .uk-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 70vh;
  padding: 96px 0;
}

.back-button {
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 12px 16px;
  border: 2px solid var(--strong-line);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-button:hover,
.back-button:focus {
  background: var(--strong-line);
  color: var(--surface);
  text-decoration: none;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page p {
  max-width: 680px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 959px) {
  .hero {
    min-height: auto;
  }

  .section-head,
  .site-footer .uk-container {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  audio {
    min-width: 0;
  }
}

.xtrack-meta > div > p {
  display: none;
}