:root {
  --bg: #09090f;
  --bg-soft: #0f1018;
  --panel: rgba(255,255,255,.055);
  --panel-border: rgba(255,255,255,.11);
  --text: #f4f4f7;
  --muted: #a2a4b3;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --accent-3: #ec4899;
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

::selection { background: rgba(139, 92, 246, .45); color: white; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: .035;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  transition: background .3s, padding .3s, border .3s;
}
.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(9,9,15,.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Space Grotesk", sans-serif; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  box-shadow: 0 0 35px rgba(139,92,246,.25);
}
.brand-text { font-weight: 700; letter-spacing: .12em; font-size: 14px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; color: #d6d6de; transition: color .2s; }
.nav a:hover { color: white; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px auto;
  transition: .25s;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 130px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .24; }
.glow-one { width: 460px; height: 460px; background: var(--accent); top: 10%; left: -10%; }
.glow-two { width: 400px; height: 400px; background: var(--accent-2); right: -10%; top: 15%; }

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  color: #c8c9d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}
.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: .8;
  letter-spacing: -.07em;
  font-size: clamp(84px, 12vw, 170px);
}
.hero h1 span {
  display: block;
  font-size: .34em;
  letter-spacing: .16em;
  color: #a9aabc;
  margin: 0 0 10px 8px;
}
.hero h1 strong {
  display: block;
  background: linear-gradient(110deg, #fff 10%, #b7a2ff 45%, #70edff 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #6d5dfc);
  box-shadow: 0 16px 38px rgba(139,92,246,.22);
}
.btn-primary:hover { box-shadow: 0 20px 46px rgba(139,92,246,.33); }
.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.3); }

.hero-meta {
  margin-top: 30px;
  color: #858797;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dot { width: 4px; height: 4px; background: var(--accent-2); border-radius: 50%; }

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 430px;
  width: 100%;
  justify-self: end;
  padding: 32px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.vinyl {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255,255,255,.06) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 40% 35%, #272836 0%, #101116 48%, #040406 72%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 35px 70px rgba(0,0,0,.48);
  animation: spin 16s linear infinite;
}
.vinyl:after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-2), var(--accent) 40%, #12121c 41%);
  box-shadow: inset 0 0 20px rgba(0,0,0,.35);
}
.vinyl-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  font-family: "Space Grotesk";
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.07em;
}
.vinyl-ring { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.ring-1 { inset: 5%; }.ring-2 { inset: 22%; }.ring-3 { inset: 35%; }

.now-playing { padding-top: 28px; }
.np-label, .mini-label { color: #8f91a3; font-size: 10px; letter-spacing: .2em; font-weight: 700; }
.now-playing strong { display: block; font-size: 14px; margin-top: 8px; }
.wave { height: 30px; display: flex; align-items: center; gap: 4px; margin-top: 14px; }
.wave i { width: 3px; height: 8px; border-radius: 10px; background: linear-gradient(var(--accent-2), var(--accent)); animation: wave 1s ease-in-out infinite; }
.wave i:nth-child(2n) { animation-delay: .15s; }
.wave i:nth-child(3n) { animation-delay: .3s; }

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #777988;
  font-size: 9px;
  letter-spacing: .25em;
}
.scroll-down i { width: 1px; height: 35px; background: linear-gradient(#777988, transparent); }

.section { padding: 120px max(24px, calc((100vw - var(--max)) / 2)); position: relative; }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading h2 {
  font-family: "Space Grotesk";
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0;
}
.section-heading > p:last-child:not(.eyebrow) { color: var(--muted); max-width: 650px; line-height: 1.7; font-size: 17px; }

.about { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; }
.about-copy p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.about-copy .lead { color: #e2e2e8; font-size: 23px; line-height: 1.55; margin-top: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.stats article {
  padding: 24px 18px;
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
}
.stats strong { display: block; font-family: "Space Grotesk"; font-size: 28px; }
.stats span { color: var(--muted); font-size: 12px; }
.about-panel {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  background: var(--panel);
}
.about-panel > div + div { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); }
.about-panel p { margin-bottom: 0; line-height: 1.65; color: #d5d6df; }

.music-section { overflow: hidden; }
.music-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mix-card {
  position: relative;
  display: block;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 18px;
  background: var(--panel);
  transition: transform .25s, border-color .25s, background .25s;
}
.mix-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.23); background: rgba(255,255,255,.075); }
.mix-art {
  aspect-ratio: 1.15;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  position: relative;
}
.mix-art:before {
  content: "";
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: -15px;
  border: 35px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 24px rgba(255,255,255,.035), 0 0 0 48px rgba(255,255,255,.02);
}
.mix-art span { font-family: "Space Grotesk"; font-size: 52px; font-weight: 800; opacity: .85; }
.mix-art-a { background: linear-gradient(135deg, #6d4aff, #161928 70%); }
.mix-art-b { background: linear-gradient(135deg, #ec4899, #19141d 70%); }
.mix-art-c { background: linear-gradient(135deg, #1ccfe5, #101b20 70%); }
.mix-info { padding: 22px 3px 5px; }
.mix-info h3 { font-family: "Space Grotesk"; margin: 9px 0 8px; font-size: 23px; }
.mix-info p { margin: 0; color: var(--muted); font-size: 13px; }
.play {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #0b0b10;
  font-size: 12px;
}

.events-section { background: #0c0d14; }
.events-list { border-top: 1px solid rgba(255,255,255,.1); }
.event {
  min-height: 125px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding .2s, background .2s;
}
.event:hover { padding-left: 16px; background: rgba(255,255,255,.025); }
.date { display: flex; align-items: baseline; gap: 10px; }
.date strong { font-family: "Space Grotesk"; font-size: 42px; }
.date span { color: var(--accent-2); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.event-main h3 { margin: 0 0 7px; font-size: 22px; }
.event-main p { margin: 0; color: var(--muted); }
.event-type { border: 1px solid rgba(255,255,255,.15); border-radius: 99px; padding: 8px 12px; color: #b9bac6; font-size: 10px; letter-spacing: .16em; }
.edit-note { color: #6f7180; font-size: 12px; margin-top: 20px; }
code { color: #c5baff; }

.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 260px 260px; gap: 16px; }
.gallery-item { margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--panel-border); }
.g1 { grid-row: span 2; }
.g4 { grid-column: span 2; }
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,.35), transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(34,211,238,.25), transparent 35%),
    linear-gradient(135deg, #151622, #090a10);
}
.g2 .photo-placeholder { background: radial-gradient(circle at 60% 40%, rgba(236,72,153,.28), transparent 40%), linear-gradient(135deg,#18121a,#090a10); }
.g3 .photo-placeholder { background: radial-gradient(circle at 50% 30%, rgba(34,211,238,.28), transparent 40%), linear-gradient(135deg,#101a1e,#090a10); }
.g4 .photo-placeholder { background: radial-gradient(circle at 20% 60%, rgba(139,92,246,.28), transparent 35%), radial-gradient(circle at 80% 30%, rgba(236,72,153,.22), transparent 32%), linear-gradient(135deg,#12131b,#090a10); }
.photo-placeholder span { font-family: "Space Grotesk"; font-size: 26px; font-weight: 700; }
.photo-placeholder small { color: #9c9ead; margin-top: 6px; }

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  overflow: hidden;
  background: #0b0b12;
}
.contact-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  background: var(--accent);
  opacity: .13;
  left: -120px;
  bottom: -180px;
}
.contact-intro, .contact-form { position: relative; z-index: 2; }
.contact-intro h2 {
  font-family: "Space Grotesk";
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 24px;
}
.contact-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-size: 17px; }
.contact-links { margin-top: 40px; display: grid; gap: 10px; }
.contact-links a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 16px; }
.contact-links span { color: var(--muted); font-size: 12px; }
.contact-links strong { font-size: 13px; }

.contact-form {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(12px);
}
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; color: #bbbcc7; font-size: 12px; margin-bottom: 8px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  color: white;
  background: #0c0d14;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: rgba(139,92,246,.8);
  box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}
.contact-form select { color-scheme: dark; }
.contact-form textarea { resize: vertical; }
.form-submit { width: 100%; }
.form-note { color: #777988; text-align: center; font-size: 11px; margin: 12px 0 0; }
.hidden { position: absolute; left: -9999px; }

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,255,255,.08);
  color: #777988;
  font-size: 12px;
}
.footer-brand { justify-self: start; }
.footer-links { justify-self: end; display: flex; gap: 20px; }
.footer-links a:hover { color: white; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes wave { 0%,100% { height: 6px; } 50% { height: 27px; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; position: relative; z-index: 120; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(9,9,15,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-family: "Space Grotesk"; font-size: 26px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; padding-top: 140px; gap: 55px; }
  .hero-card { justify-self: start; max-width: 500px; }
  .scroll-down { display: none; }
  .about-grid, .contact-section { grid-template-columns: 1fr; gap: 45px; }
  .music-grid { grid-template-columns: 1fr; }
  .mix-card { display: grid; grid-template-columns: 180px 1fr; gap: 20px; }
  .mix-art { aspect-ratio: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .g1 { grid-row: span 2; }
  .g4 { grid-column: span 2; }
  footer { grid-template-columns: 1fr; text-align: center; padding-top: 45px; padding-bottom: 45px; }
  .footer-brand, .footer-links { justify-self: center; }
}

@media (max-width: 640px) {
  .section { padding-top: 90px; padding-bottom: 90px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(76px, 26vw, 118px); }
  .hero-card { padding: 22px; border-radius: 26px; }
  .hero-meta { line-height: 1.5; }
  .stats { grid-template-columns: 1fr; }
  .mix-card { display: block; }
  .mix-art { aspect-ratio: 1.35; }
  .event { grid-template-columns: 78px 1fr; gap: 15px; padding: 20px 0; }
  .date strong { font-size: 34px; }
  .event-type { grid-column: 2; justify-self: start; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .g1, .g4 { grid-row: auto; grid-column: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .contact-links a { flex-direction: column; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
