/* ==========================================================
   DJ SPINKING — black / gold / red, pulled from the logo
   ========================================================== */
:root {
  --bg: #070604;
  --bg2: #0d0a06;
  --surface: #14100a;
  --line: rgba(240, 168, 33, 0.16);
  --gold: #f0a821;
  --gold-hi: #ffd76a;
  --gold-deep: #b97a10;
  --red: #c1271e;
  --text: #ede4d2;
  --muted: #a3977f;
  --display: "Anton", sans-serif;
  --body: "Space Grotesk", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #140d02; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 130px 0; position: relative; }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 10px 0 34px;
}
.display .w {
  display: inline-block;
  will-change: transform;
  background: linear-gradient(178deg, #fff6dd 4%, var(--gold-hi) 30%, var(--gold) 52%, #7e5407 78%, #e8b23c 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kicker {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
em { font-style: italic; }
strong { color: var(--gold-hi); font-weight: 700; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(160deg, var(--gold-hi), var(--gold) 55%, var(--gold-deep));
  color: #140d02;
  box-shadow: 0 6px 26px rgba(240, 168, 33, 0.28);
}
.btn-gold:hover { box-shadow: 0 10px 36px rgba(240, 168, 33, 0.45); }
.btn-line {
  border: 1px solid rgba(240, 168, 33, 0.55);
  color: var(--gold-hi);
}
.btn-line:hover { background: rgba(240, 168, 33, 0.1); }
.btn-big { font-size: 1.05rem; padding: 19px 38px; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.pre-logo { height: 64px; width: auto; filter: drop-shadow(0 6px 24px rgba(240, 168, 33, 0.4)); }
.pre-bar {
  width: min(240px, 60vw);
  height: 2px;
  background: rgba(240, 168, 33, 0.18);
  overflow: hidden;
}
.pre-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -60px;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-24px, 18px); }
  66% { transform: translate(18px, -30px); }
  100% { transform: translate(0, 0); }
}

/* ---------- vinyl scroll widget ---------- */
.vinyl-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}
.vinyl-widget.on { opacity: 1; pointer-events: auto; }
.vinyl-widget:hover { transform: scale(1.08); }
.vinyl-widget svg { width: 100%; height: 100%; display: block; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(7, 6, 4, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold-hi); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-book { padding: 11px 22px; font-size: 0.82rem; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 26px;
  margin: 0 auto;
  background: var(--gold-hi);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(7, 6, 4, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-menu a:hover, .mobile-menu .mm-book { color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 120%, #1a1206 0%, var(--bg) 60%);
}
#vinyl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 24px 60px;
}
.hero-logo {
  width: min(680px, 88vw);
  margin: 0 auto 26px;
  filter: drop-shadow(0 18px 60px rgba(240, 168, 33, 0.35));
}
.hero-line {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-line-dim { color: var(--muted); font-size: clamp(0.85rem, 1.6vw, 1rem); margin-top: 8px; }
.hero-ctas { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-corner {
  position: absolute;
  bottom: 26px;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-corner-l { left: 30px; }
.hero-corner-r { right: 30px; }

/* ---------- about ---------- */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.about-frame {
  position: absolute;
  inset: -22px auto auto -22px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(240, 168, 33, 0.4);
  border-radius: 4px;
}
.about-copy p + p { margin-top: 18px; }
.facts {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.facts li { background: var(--bg2); padding: 20px 22px; }
.facts strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--gold-hi);
  font-weight: 400;
  text-transform: uppercase;
}
.facts span { color: var(--muted); font-size: 0.88rem; }

/* ---------- timeline ---------- */
.run { background: var(--bg); overflow: hidden; }
.timeline { position: relative; margin-top: 60px; padding-left: 46px; }

/* desktop: horizontal crate-dig cards, pinned + scrubbed by JS */
@media (min-width: 961px) {
  .run { padding: 70px 0 50px; }
  .timeline { padding-left: 0; margin-top: 44px; }
  .tl-line { display: none; }
  .tl-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    padding: 10px 4px 26px;
  }
  .tl-item {
    min-width: 380px;
    max-width: 380px;
    padding: 40px 36px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .tl-item::before {
    content: "";
    position: static;
    display: block;
    width: 40px;
    height: 3px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin-bottom: 22px;
  }
  .tl-item::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid rgba(240, 168, 33, 0.12);
    background:
      radial-gradient(circle at center, transparent 32%, rgba(240, 168, 33, 0.05) 33%, transparent 36%,
        rgba(240, 168, 33, 0.05) 42%, transparent 45%, rgba(240, 168, 33, 0.05) 52%, transparent 55%);
  }
  .tl-item h3 { font-size: 2.4rem; }
  .tl-item h4 { font-size: 1.5rem; }
}
.tl-line {
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(240, 168, 33, 0.14);
}
.tl-line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--gold-hi), var(--red));
  transform-origin: top;
  transform: scaleY(0);
}
.tl-item { position: relative; padding: 26px 0; max-width: 640px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 40px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
}
.tl-item h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--red);
  letter-spacing: 0.14em;
  font-weight: 400;
}
.tl-item h4 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  margin: 4px 0 8px;
}
.tl-item p { color: var(--muted); max-width: 520px; }

/* ---------- music ---------- */
.music { background: var(--bg2); }
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 20px;
}
.music-feature {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 46px 42px;
  background:
    radial-gradient(circle at 85% 12%, rgba(193, 39, 30, 0.16), transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(240, 168, 33, 0.12), transparent 50%),
    var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mf-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.mf-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 4.6rem);
  color: var(--gold-hi);
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0 12px;
}
.mf-copy { color: var(--muted); margin-bottom: 28px; }
.music-feature .btn { align-self: flex-start; }
.mf-platforms { margin-top: 30px; display: flex; gap: 24px; flex-wrap: wrap; }
.mf-platforms a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(240, 168, 33, 0.35);
  padding: 10px 2px 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.mf-platforms a:hover { color: var(--gold-hi); border-color: var(--gold-hi); }
.music-embed iframe { border-radius: 12px; display: block; }

/* ---------- collaborators ---------- */
.collabs { background: var(--bg); }
.collab-wall {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  max-width: 1050px;
}
.collab-wall span {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: #3b3426;
  cursor: default;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.collab-wall span:hover {
  color: var(--gold-hi);
  text-shadow: 0 0 26px rgba(240, 168, 33, 0.45);
}
.collab-wall span:nth-child(4n+2):hover { color: var(--red); text-shadow: 0 0 26px rgba(193, 39, 30, 0.5); }

/* ---------- gallery ---------- */
.gallery { background: var(--bg); padding-bottom: 60px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 0 24px;
}
.gal-item {
  overflow: hidden;
  border-radius: 4px;
  grid-column: span 5;
  aspect-ratio: 3 / 3.6;
  transform-style: preserve-3d;
  will-change: transform;
}
.gal-grid { perspective: 1200px; }
.gal-item.gal-wide { grid-column: span 7; aspect-ratio: 16 / 10.5; }
.gal-item img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-item:hover img { transform: scale(1.045); }

/* ---------- radio ---------- */
.radio { background: var(--bg2); }
.radio-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: center;
}
.radio-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.radio-tags span {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 3px;
}
.radio-follow {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 50px 30px;
  background: var(--surface);
}
.rf-num {
  font-family: var(--display);
  font-size: 3.6rem;
  color: var(--gold-hi);
  line-height: 1;
}
.rf-label { color: var(--muted); margin: 8px 0 26px; }

/* ---------- booking ---------- */
.book {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 170px 0;
  background: radial-gradient(ellipse at 50% -30%, #1c1306 0%, var(--bg) 55%);
}
#bookCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.book-inner { position: relative; z-index: 2; }
.book-display { font-size: clamp(3rem, 9vw, 7rem); margin-bottom: 18px; }
.book .reveal { max-width: 560px; margin-left: auto; margin-right: auto; color: var(--muted); }
.book-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.socials { margin-top: 54px; display: flex; gap: 26px; justify-content: center; }
.socials a {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.socials svg { width: 22px; height: 22px; }
.socials a:hover { color: var(--gold-hi); border-color: var(--gold); transform: translateY(-3px); }
.snap { margin-top: 22px; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.08em; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 24px;
  text-align: center;
}
.footer-logo { height: 40px; width: auto; margin: 0 auto 16px; }
.footer p { color: var(--muted); font-size: 0.85rem; }

/* ---------- reveal defaults (JS animates in) ---------- */
.reveal { opacity: 0; transform: translateY(34px); }
.no-js .reveal, .no-anim .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 90px 0; }
  .about-grid, .music-grid, .radio-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-media { max-width: 460px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .gal-item, .gal-item.gal-wide { grid-column: span 12; aspect-ratio: 4 / 3.4; }
  .facts strong { font-size: 1.25rem; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav { padding: 12px 18px; }
  .nav-logo img { height: 40px; }
  .nav-book { display: none; }
  .hero-inner { padding: 96px 20px 48px; }
  .hero-ctas { margin-top: 30px; }
  .hero-ctas .btn { width: 100%; }
  .facts { grid-template-columns: 1fr; }
  .facts li { padding: 16px 18px; }
  .timeline { padding-left: 36px; margin-top: 40px; }
  .tl-item { padding: 20px 0; }
  .tl-item::before { left: -34px; }
  .music-feature { padding: 34px 26px; }
  .music-embed iframe { height: 380px; }
  .gal-grid { gap: 12px; padding: 0 16px; }
  .book { padding: 120px 0; }
  .book-ctas .btn { width: 100%; }
  .btn-big { font-size: 0.92rem; padding: 17px 20px; }
  .radio-follow { padding: 38px 22px; }
  .rf-num { font-size: 3rem; }
  .vinyl-widget { width: 46px; height: 46px; right: 14px; bottom: 14px; }
  .hero-corner { display: none; }
  .collab-wall { gap: 8px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .preloader { display: none; }
  .tl-track { flex-wrap: wrap; width: auto; }
}
/* dev-only: ?qa pins hero height for full-page capture */
.qa .hero { min-height: 900px; }

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