@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text'), local('ElzaText-Regular'), local('Elza');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text Medium'), local('ElzaText-Medium');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text Bold'), local('ElzaText-Bold');
  font-weight: 700; font-display: swap;
}

:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #131313;
  --fg: #f4f1ea;
  --fg-dim: rgba(244, 241, 234, 0.55);
  --fg-faint: rgba(244, 241, 234, 0.12);
  --accent: #C8FF00;
  --hair: rgba(244, 241, 234, 0.14);
  --pad: clamp(20px, 3.5vw, 56px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
html { overflow-x: clip; }
body {
  font-family: "Elza Text", "Inter", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px; padding: 14px var(--pad);
}
.nav .logo img { height: clamp(48px, 6vh, 64px); width: auto; display: block; }
.nav ul {
  display: flex; gap: 28px;
  list-style: none; padding: 0; margin: 0; justify-content: center;
}
.nav a {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); text-decoration: none;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color 120ms, border-color 120ms;
}
.nav a:hover, .nav a.active { color: var(--fg); border-color: var(--fg); }
.nav .back {
  grid-column: 3; justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fg); color: var(--bg);
  padding: 11px 18px;
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 700; transition: background 120ms;
}
.nav .back:hover { background: var(--accent); color: #000; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: flex-end;
  padding: var(--pad); overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #000; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
}
.hero-bg .placeholder-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(200,255,0,0.03) 0 10px, transparent 10px 22px),
    linear-gradient(180deg, #0a0a08 0%, #050505 100%);
}
.hero-bg .vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: "Public Pixel", monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 24px;
}
.hero .kicker .vol { border: 1px solid var(--accent); color: var(--accent); padding: 4px 8px; }
.hero h1 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700; font-size: clamp(52px, 10vw, 160px);
  line-height: 0.9; letter-spacing: -0.045em; margin: 0 0 8px;
}
.hero h1 .it { font-weight: 300; font-style: italic; color: var(--accent); }
.hero .sub {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-top: 16px;
}
.hero .awards { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.hero .award-pill {
  font-family: "Public Pixel", monospace;
  font-size: 7px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 5px 10px; white-space: nowrap;
}
.hero .bracket {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--fg); border-style: solid; border-width: 0; z-index: 2;
}
.hero .bracket.tl { top: 18px; left: 18px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hero .bracket.tr { top: 18px; right: 18px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hero .bracket.bl { bottom: 18px; left: 18px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hero .bracket.br { bottom: 18px; right: 18px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* ---------- SECTION SHELL ---------- */
section.s { padding: clamp(72px, 10vh, 130px) var(--pad); border-bottom: 1px solid var(--hair); }
.s-head {
  display: grid; grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px; margin-bottom: 56px; align-items: start;
}
.s-head .id { font-family: "Public Pixel", monospace; font-size: 9px; letter-spacing: 0.14em; color: var(--accent); }
.s-head h2 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700; font-size: clamp(32px, 5vw, 76px);
  line-height: 0.95; letter-spacing: -0.035em; margin: 0; max-width: 20ch;
}
.s-head h2 .it { font-weight: 300; font-style: italic; }
.s-head .sub {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; color: var(--fg-dim);
  text-transform: uppercase; margin-top: 14px;
}

/* ---------- VIDEO SECTION ---------- */
.video-block {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #0a0a0a; overflow: hidden;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
}
.video-block video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-block .video-overlay {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.video-block .play-btn {
  width: 72px; height: 72px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 26px; cursor: pointer; transition: background 150ms;
}
.video-block .play-btn:hover { background: rgba(200,255,0,0.1); }
.video-block .video-label {
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-dim);
}
.video-caption {
  margin-top: 18px;
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim);
}

/* ---------- PHILOSOPHY ---------- */
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.philosophy-grid .lede {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.35; letter-spacing: -0.01em; color: var(--fg);
}
.philosophy-grid .lede em { font-style: italic; font-weight: 300; color: var(--fg-dim); }
.philosophy-grid .body { font-size: 15px; line-height: 1.6; color: var(--fg-dim); }
.philosophy-grid .body p + p { margin-top: 14px; }
.philosophy-grid .body a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 1px;
}

/* ---------- STATS BAR ---------- */
.cc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-top: 80px;
}
.cc-stat {
  background: var(--bg); padding: 36px 28px; display: flex; flex-direction: column; gap: 8px;
}
.cc-stat .n {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; color: var(--fg);
}
.cc-stat .l {
  font-family: "Public Pixel", monospace;
  font-size: 9px; color: var(--fg-dim); letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- ARTISTS GRID ---------- */
.cc-artists {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.cc-artist {
  background: var(--bg); padding: 18px; position: relative;
  aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
}
.cc-artist .artist-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; z-index: 0;
  filter: brightness(0.72) contrast(1.08) grayscale(0.15); transition: filter 300ms ease;
}
.cc-artist:hover .artist-photo { filter: brightness(0.85) contrast(1.05) grayscale(0); }
.cc-artist .top, .cc-artist .bot {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: start;
}
.cc-artist .bot { align-items: end; }
.cc-artist .num { font-family: "Public Pixel", monospace; font-size: 8px; color: var(--accent); letter-spacing: 0.14em; }
.cc-artist .name {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700; font-size: 20px; line-height: 1; letter-spacing: -0.02em; color: var(--fg);
}
.cc-artist .handle { font-family: "Public Pixel", monospace; font-size: 8px; color: var(--fg-dim); letter-spacing: 0.14em; margin-top: 6px; }
.cc-artist .style {
  font-family: "Public Pixel", monospace; font-size: 8px;
  color: var(--accent); letter-spacing: 0.14em; border: 1px solid var(--accent); padding: 4px 6px;
}

/* ---------- BUTTON ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--fg); color: var(--fg);
  text-decoration: none; padding: 16px 24px;
  font-family: "Public Pixel", monospace; font-size: 10px;
  letter-spacing: 0.14em; background: transparent; cursor: pointer;
  transition: all 150ms; text-transform: uppercase;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #000; }
.btn.primary:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- EVENT CTA BAND ---------- */
.event-band {
  padding: clamp(60px, 8vh, 100px) var(--pad);
  background: var(--bg-3); border-bottom: 1px solid var(--hair);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.event-band h2 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700; font-size: clamp(28px, 4vw, 60px);
  line-height: 1; letter-spacing: -0.035em; margin: 0;
}
.event-band h2 .it { font-weight: 300; font-style: italic; }
.event-band .meta {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); margin-top: 14px;
}
.event-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px var(--pad); background: #000;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--hair);
}
.footer .copy {
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim);
}
.footer .links { display: flex; gap: 24px; }
.footer .links a {
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: color 120ms, border-color 120ms;
}
.footer .links a:hover { color: var(--fg); border-color: var(--fg); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero .awards { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .s-head { grid-template-columns: 1fr; gap: 16px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .cc-stats { grid-template-columns: repeat(3, 1fr); }
  .cc-artists { grid-template-columns: repeat(2, 1fr); }
  .event-band { grid-template-columns: 1fr; }
  .nav ul { display: none; }
}
@media (max-width: 520px) {
  :root { --pad: 18px; }
  .hero { min-height: 75svh; }
  .hero h1 { font-size: clamp(44px, 13vw, 80px); }
  .cc-stats { grid-template-columns: 1fr 1fr; }
  .cc-artists { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
