@font-face {
  font-family: Gilroy;
  src: url("/assets/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url("/assets/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #17121f;
  --paper: #f6f2fa;
  --purple: #8f00ff;
  --acid: #ddff00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Gilroy, Arial, sans-serif;
}
a { color: inherit; }

.header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 80px);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid white;
  font-size: 28px;
  line-height: 1;
}

nav { display: flex; gap: 28px; }
nav a {
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
nav a:hover { color: var(--acid); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: #190d25;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-shade {
  background: linear-gradient(90deg, rgba(17, 8, 28, .92) 0%, rgba(17, 8, 28, .62) 44%, rgba(17, 8, 28, .18) 100%), linear-gradient(0deg, rgba(17, 8, 28, .7), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px clamp(22px, 7vw, 112px) clamp(48px, 8vh, 90px);
}

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

h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(44px, 7.2vw, 116px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .88;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  gap: clamp(35px, 7vw, 110px);
  margin-top: clamp(42px, 8vh, 88px);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-size: clamp(30px, 4vw, 62px); line-height: 1; }
.hero-meta span { margin-top: 8px; font-size: 18px; }

.about {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) 2fr;
  gap: 50px;
  padding: clamp(70px, 10vw, 150px) clamp(22px, 7vw, 112px);
}
.section-label {
  color: var(--purple);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.about h2,
.venue h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  text-transform: uppercase;
}
.about p {
  max-width: 960px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.45;
}

.tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c9c1d0;
  border-bottom: 1px solid #c9c1d0;
}
.tracks article { padding: clamp(32px, 5vw, 72px); }
.tracks article + article { border-left: 1px solid #c9c1d0; }
.tracks span { color: var(--purple); font-size: 52px; font-weight: 800; }
.tracks h3 { margin: 38px 0 14px; font-size: 25px; text-transform: uppercase; }
.tracks p { margin: 0; font-size: 18px; line-height: 1.45; }

.venue {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 50px;
  padding: clamp(70px, 10vw, 150px) clamp(22px, 7vw, 112px);
  color: white;
  background: var(--purple);
}
.venue .eyebrow { color: var(--acid); }
.venue address { font-size: clamp(24px, 3vw, 42px); font-style: normal; line-height: 1.15; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 32px clamp(22px, 7vw, 112px);
  color: white;
  background: var(--ink);
  font-size: 14px;
}
footer a { color: var(--acid); text-decoration: none; }

@media (max-width: 760px) {
  .header { align-items: flex-start; }
  nav { display: none; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 40% center; }
  .hero-meta { flex-direction: column; gap: 22px; }
  .about { grid-template-columns: 1fr; }
  .tracks { grid-template-columns: 1fr; }
  .tracks article + article { border-left: 0; border-top: 1px solid #c9c1d0; }
  .venue { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
