/* ============================================
   UMB Music Production Club
   Palette tokens are driven by data-theme on <html>
============================================ */

:root {
  /* default: Warm Studio */
  --bg: #F4EFE6;
  --bg-2: #EDE5D3;
  --ink: #141210;
  --ink-2: #2A2520;
  --muted: #7a7063;
  --line: #141210;

  --c1: #F23827;  /* hot red   */
  --c2: #00B8D4;  /* electric cyan */
  --c3: #F5C518;  /* acid yellow */
  --c4: #E5429C;  /* magenta */
  --c5: #2B6BF3;  /* blue */
  --c6: #3BA55C;  /* green */

  --shadow-hard: 6px 6px 0 var(--ink);
  --radius: 14px;

  --font-display: "Instrument Serif", "DM Serif Display", ui-serif, Georgia, serif;
  --font-body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --font-poster: "Bungee", "Space Grotesk", sans-serif;
}

html[data-theme="neon"] {
  --bg: #0a0a0f;
  --bg-2: #15151d;
  --ink: #f5f2ea;
  --ink-2: #d9d4c6;
  --muted: #9a9488;
  --line: #f5f2ea;
  --c1: #FF2D6F;
  --c2: #00F0FF;
  --c3: #E8FF3A;
  --c4: #B14DFF;
  --c5: #3D7CFF;
  --c6: #24FF9A;
  --shadow-hard: 6px 6px 0 #000;
}

html[data-theme="lofi"] {
  --bg: #E8DFCB;
  --bg-2: #D9CEB4;
  --ink: #2B231A;
  --ink-2: #4A3D2E;
  --muted: #8b7f6a;
  --line: #2B231A;
  --c1: #C94F3A;
  --c2: #6B8E9B;
  --c3: #C8A94A;
  --c4: #B56C8C;
  --c5: #5B7894;
  --c6: #7A8D60;
  --shadow-hard: 5px 5px 0 var(--ink);
}

html[data-theme="y2k"] {
  --bg: #F7F1FB;
  --bg-2: #F0E4F7;
  --ink: #2A0A3A;
  --ink-2: #431260;
  --muted: #8b7aa0;
  --line: #2A0A3A;
  --c1: #FF3DB1;
  --c2: #2DD4FF;
  --c3: #FFD629;
  --c4: #9B3DFF;
  --c5: #3D6BFF;
  --c6: #3DFFAE;
  --shadow-hard: 6px 6px 0 var(--ink);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Global grain / scanline overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  opacity: var(--scanline-opacity, 0.5);
}
html[data-theme="neon"] body::after { mix-blend-mode: screen; opacity: calc(var(--scanline-opacity, 0.5) * 1.4); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.poster { font-family: var(--font-poster); letter-spacing: 0.02em; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  max-width: 1320px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-poster); font-size: 14px;
  position: relative; flex-shrink: 0;
}
.nav-logo-mark::after {
  content: ""; position: absolute; inset: 14px;
  border-radius: 50%; background: var(--bg);
}
.nav-logo-mark::before {
  content: ""; position: absolute; inset: 19px;
  border-radius: 50%; background: var(--ink); z-index: 1;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text b { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.01em; }
.nav-logo-text span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; margin-top: 4px; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; gap: 26px; font-family: var(--font-body); font-weight: 500; font-size: 14px; }
.nav-links a { text-decoration: none; position: relative; padding: 4px 2px; }
.nav-links a:hover { color: var(--c1); }

.nav-socials { display: flex; gap: 6px; }
.nav-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; color: var(--ink);
  background: var(--bg);
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.nav-socials a:hover { background: var(--c1); color: #fff; transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.nav-socials a[title="Instagram"]:hover { background: var(--c4); }
.nav-socials a[title="TikTok"]:hover { background: var(--ink); color: var(--c2); }
.nav-socials a[title="YouTube"]:hover { background: var(--c1); }
.nav-socials a[title="Discord"]:hover { background: var(--c5); color: #fff; }

.hero-socials {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em;
}
.hero-socials-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted);
}
.hero-socials a {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  text-transform: uppercase;
  transition: all 0.15s;
}
.hero-socials a:hover { background: var(--ink); color: var(--bg); transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }

.nav-cta {
  background: var(--ink); color: var(--bg);
  border: none; padding: 10px 18px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  cursor: pointer; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--c1); }
.nav-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c3); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 2px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 40px; align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  background: var(--ink); color: var(--bg);
  padding: 6px 12px; border-radius: 999px;
}
.hero-eyebrow .live { width: 8px; height: 8px; border-radius: 50%; background: var(--c1); animation: pulse 1.2s infinite; }

.hero-title {
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.88;
  margin: 24px 0 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.hero-title .line { display: block; }
.hero-title .chunk { display: inline-block; }
.hero-title em { font-style: italic; color: var(--c1); }
.hero-title .tight { letter-spacing: -0.05em; }

.hero-sub {
  margin-top: 28px;
  font-size: 19px; line-height: 1.45;
  max-width: 520px;
  color: var(--ink-2);
}

.hero-cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px;
  border: 2px solid var(--line); background: var(--bg); color: var(--ink);
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary:hover { background: var(--c1); border-color: var(--c1); }
.btn.accent-1 { background: var(--c1); color: #fff; border-color: var(--ink); }
.btn.accent-2 { background: var(--c2); color: var(--ink); border-color: var(--ink); }
.btn.accent-3 { background: var(--c3); color: var(--ink); border-color: var(--ink); }

/* Hero cassette card */
.hero-cassette {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  border-radius: 18px;
  padding: 22px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  transform: rotate(2deg);
}
.hero-cassette .cass-label {
  background: var(--c3); color: var(--ink);
  padding: 10px 14px; border-radius: 8px;
  border: 2px solid var(--bg);
  font-family: var(--font-mono); font-size: 12px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cass-reels { display: flex; justify-content: space-between; padding: 8px 16px; }
.cass-reel {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--bg-2);
  border: 3px solid var(--bg);
  position: relative;
  display: grid; place-items: center;
}
.cass-reel::before {
  content: ""; position: absolute; inset: 28px;
  border-radius: 50%; background: var(--ink);
}
.cass-reel.spin { animation: spin 3s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.cass-reel span {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; color: var(--muted);
  letter-spacing: 0.2em;
}
.cass-screws { display: flex; justify-content: space-between; padding: 0 10px; margin-top: 12px; }
.cass-screws span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bg-2); opacity: 0.5;
}
.cass-bottom {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  display: flex; justify-content: space-between;
  color: var(--muted);
}

/* Mini player */
.mini-player {
  margin-top: 18px;
  background: var(--bg); color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-hard);
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
}
.mini-player button.play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c1); border: 2px solid var(--ink); color: #fff;
  cursor: pointer; display: grid; place-items: center;
  font-size: 14px;
}
.mini-player .track-info { overflow: hidden; }
.mini-player .track-info b { display: block; font-family: var(--font-display); font-size: 20px; line-height: 1.1; }
.mini-player .track-info span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.mini-player .wave {
  display: flex; align-items: center; gap: 2px; height: 32px;
}
.mini-player .wave i {
  display: block; width: 3px; background: var(--ink); border-radius: 2px;
  transition: height 0.08s, background 0.3s;
}

/* Sticker row */
.hero-stickers {
  position: absolute; pointer-events: none;
  font-family: var(--font-poster);
}
.sticker {
  position: absolute;
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  background: var(--c3); color: var(--ink);
  box-shadow: var(--shadow-hard);
  white-space: nowrap;
}

.marquee {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--ink); color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--font-poster);
  font-size: 28px;
  letter-spacing: 0.02em;
}
.marquee-track {
  display: inline-flex; gap: 40px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 40px;
}
.marquee span { display: inline-flex; align-items: center; gap: 40px; }
.marquee .sep { color: var(--c1); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTION HEADERS ---------- */
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 72px 0 24px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 36px;
}
.sec-head .sec-num { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.18em; }
.sec-head h2 { font-size: clamp(48px, 7vw, 92px); line-height: 0.95; }
.sec-head h2 em { color: var(--c1); font-style: italic; }
.sec-head .sec-sub { font-size: 15px; color: var(--ink-2); max-width: 340px; text-align: right; font-family: var(--font-body); }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.about-lead { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; }
.about-lead em { color: var(--c1); font-style: italic; }
.about-body { margin-top: 24px; font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 540px; }


.drum-pads {
  margin-top: 18px;
  background: var(--ink); color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-hard);
}
.drum-pads .head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.drum-pads .head b { color: var(--c3); }
.drum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.drum-pad {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid var(--bg);
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--font-mono); font-size: 10px;
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 8px;
  transition: transform 0.06s, background 0.1s, box-shadow 0.1s;
  position: relative;
  user-select: none;
}
.drum-pad:hover { background: var(--bg); }
.drum-pad.active { background: var(--c3); transform: scale(0.96); box-shadow: 0 0 24px var(--c3); }
.drum-pad .kbd {
  position: absolute; top: 6px; right: 6px;
  font-size: 9px; color: var(--muted);
}
.drum-pad b { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- EVENTS / TICKETS ---------- */
.tickets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  padding-bottom: 60px;
}
.ticket {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 14px;
  position: relative;
  display: grid; grid-template-columns: 80px 1fr;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ticket:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.ticket .stub {
  background: var(--ink); color: var(--bg);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 14px 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.ticket .stub::before, .ticket .stub::after {
  content: ""; position: absolute; right: -8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
}
.ticket .stub::before { top: -7px; }
.ticket .stub::after { bottom: -7px; }
.ticket .body { padding: 20px 22px; }
.ticket .body .meta { display: flex; gap: 10px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 10px; }
.ticket .body .meta .tag { background: var(--c3); color: var(--ink); padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); }
.ticket h3 { font-size: 32px; line-height: 1.05; margin-bottom: 10px; }
.ticket .lineup { font-size: 14px; color: var(--ink-2); }
.ticket .date-block {
  display: flex; gap: 18px; margin-top: 16px; align-items: center;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.ticket .date-block .day { font-family: var(--font-display); font-size: 48px; line-height: 0.9; }
.ticket .date-block .mo { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; display: block; }
.ticket .date-block .when { flex: 1; }
.ticket .date-block .when b { display: block; font-size: 14px; }
.ticket .date-block .when span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.ticket .rsvp {
  background: var(--c1); color: #fff; border: 2px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  cursor: pointer;
}
.ticket.variant-2 { background: var(--c2); }
.ticket.variant-3 { background: var(--c3); }
.ticket.variant-4 { background: var(--c4); color: #fff; }
.ticket.variant-4 .body .meta { color: rgba(255,255,255,0.8); }
.ticket.variant-4 .body .meta .tag { background: var(--c3); color: var(--ink); }
.ticket.variant-4 .date-block { border-top-color: rgba(255,255,255,0.4); }
.ticket.variant-4 .lineup { color: rgba(255,255,255,0.9); }

/* ---------- GALLERY ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
  padding-bottom: 60px;
}
.gallery-tile {
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  transition: transform 0.2s;
  cursor: pointer;
}
.gallery-tile:hover { transform: scale(1.02) rotate(-0.5deg); z-index: 5; }
.gallery-tile .placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--bg-2) 0 12px, var(--bg) 12px 24px);
  display: flex; align-items: flex-end;
  padding: 14px;
}
.gallery-tile .caption {
  position: relative;
  background: var(--ink); color: var(--bg);
  padding: 6px 10px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  max-width: 100%;
}
.gallery-tile.t-a { grid-column: span 5; grid-row: span 2; }
.gallery-tile.t-b { grid-column: span 4; grid-row: span 2; background: var(--c1); }
.gallery-tile.t-c { grid-column: span 3; grid-row: span 2; background: var(--c2); }
.gallery-tile.t-d { grid-column: span 3; grid-row: span 2; background: var(--c3); }
.gallery-tile.t-e { grid-column: span 4; grid-row: span 2; }
.gallery-tile.t-f { grid-column: span 5; grid-row: span 2; background: var(--c4); }
.gallery-tile.t-g { grid-column: span 6; grid-row: span 2; }
.gallery-tile.t-h { grid-column: span 6; grid-row: span 2; background: var(--c5); }

.gallery-tile.colored .placeholder { background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.15) 0 12px, transparent 12px 24px); }
.gallery-tile.colored .caption { background: rgba(0,0,0,0.6); }

/* ---------- SPOTLIGHTS ---------- */
.spotlights {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 60px;
}
.spot {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s;
}
.spot:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.spot .cover {
  aspect-ratio: 1;
  position: relative;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}
.spot .cover .ph {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.1) 0 10px, transparent 10px 20px);
}
.spot:nth-child(1) .cover { background: var(--c1); }
.spot:nth-child(2) .cover { background: var(--c2); }
.spot:nth-child(3) .cover { background: var(--c4); color: #fff; }
.spot .cover-label {
  position: absolute; top: 16px; left: 16px;
  background: var(--bg); color: var(--ink);
  padding: 4px 10px; border-radius: 999px; border: 2px solid var(--line);
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
}
.spot .body { padding: 18px 20px; }
.spot .body h4 { font-size: 28px; line-height: 1; }
.spot .body .role { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px; }
.spot .body .bio { margin-top: 12px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.spot .body .tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.spot .body .tags span { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px; }

.spot .mini-wave {
  display: flex; gap: 2px; align-items: flex-end; height: 40px;
  margin-top: 14px;
  padding: 10px;
  background: var(--ink); border-radius: 8px;
}
.spot .mini-wave i {
  flex: 1;
  background: var(--c3);
  border-radius: 2px;
}

/* ---------- RESOURCES ---------- */
.resources {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 60px;
}
.res-card {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.res-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.res-card .num {
  font-family: var(--font-display); font-size: 84px; line-height: 0.8;
  color: var(--c1); opacity: 0.9;
}
.res-card h3 { margin-top: 12px; font-size: 28px; }
.res-card .desc { font-size: 14px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.res-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.res-card li { font-family: var(--font-mono); font-size: 12px; padding: 8px 0; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; }
.res-card li span { color: var(--muted); }
.res-card.big { grid-column: span 1; background: var(--ink); color: var(--bg); }
.res-card.big .num { color: var(--c3); }
.res-card.big .desc { color: var(--muted); }
.res-card.big li { border-top-color: rgba(255,255,255,0.2); }

/* ---------- STUDIO ---------- */
.studio-booking {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 60px;
}
.studio-panel {
  background: var(--ink); color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-hard);
  position: relative;
  overflow: hidden;
}
.studio-panel h3 { font-size: 42px; color: var(--bg); line-height: 1; }
.studio-panel .screws {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 10px;
}
.studio-panel .screws span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg-2); opacity: 0.4;
  position: relative;
}
.studio-panel .screws span::before {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%; background: var(--ink);
}

.knob-rack {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  background: var(--bg-2); color: var(--ink);
  border-radius: 12px;
  border: 2px solid var(--bg);
}
.knob-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.knob {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(145deg, var(--bg), var(--bg-2));
  border: 3px solid var(--ink);
  position: relative;
  cursor: grab;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.2);
  touch-action: none;
}
.knob:active { cursor: grabbing; }
.knob::after {
  content: ""; position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 20px;
  background: var(--c1);
  border-radius: 2px;
  transform: translateX(-50%);
  transform-origin: 50% 24px;
}
.knob-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.knob-val { font-family: var(--font-mono); font-size: 11px; color: var(--c1); font-weight: 700; }

.fader-bank {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  background: var(--bg-2); color: var(--ink);
  border-radius: 12px;
  border: 2px solid var(--bg);
}
.fader-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fader-track {
  width: 28px; height: 130px;
  background: var(--ink); border-radius: 4px;
  position: relative;
  display: flex; justify-content: center;
}
.fader-track::before {
  content: ""; position: absolute;
  top: 10px; bottom: 10px; width: 2px;
  background: var(--bg-2);
}
.fader-cap {
  position: absolute;
  width: 36px; height: 20px;
  background: var(--c3); border: 2px solid var(--ink);
  border-radius: 4px;
  cursor: grab;
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.fader-cap::before {
  content: ""; position: absolute; inset: 6px 4px;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.fader-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }

.booking-form {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-hard);
}
.booking-form h3 { font-size: 36px; }
.booking-form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.field label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-body); font-size: 14px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c1); }
.field.full { grid-column: 1 / -1; }

.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.slot {
  padding: 8px; text-align: center;
  border: 2px solid var(--line); border-radius: 8px;
  background: var(--bg);
  font-family: var(--font-mono); font-size: 11px;
  cursor: pointer;
  transition: all 0.15s;
}
.slot:hover { background: var(--bg-2); }
.slot.selected { background: var(--c1); color: #fff; border-color: var(--ink); }
.slot.taken { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ---------- JOIN ---------- */
.join-block {
  background: var(--ink); color: var(--bg);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 60px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
}
.join-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--c1) 0%, transparent 70%);
  opacity: 0.6; filter: blur(40px);
}
.join-block h2 { font-size: clamp(48px, 6vw, 88px); line-height: 0.95; color: var(--bg); position: relative; }
.join-block h2 em { color: var(--c3); }
.join-block p { font-size: 17px; color: rgba(255,255,255,0.8); margin-top: 20px; max-width: 420px; position: relative; }
.join-form {
  position: relative;
  background: var(--bg); color: var(--ink);
  border-radius: 16px;
  padding: 24px;
}
.join-form h4 { font-size: 22px; }
.join-form .fieldset { display: grid; gap: 12px; margin-top: 14px; }
.join-form .interests { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.interest-chip {
  font-family: var(--font-mono); font-size: 11px;
  padding: 6px 10px; border: 2px solid var(--line);
  border-radius: 999px; cursor: pointer;
  background: var(--bg); transition: all 0.15s;
  user-select: none;
}
.interest-chip:hover { background: var(--bg-2); }
.interest-chip.active { background: var(--c1); color: #fff; border-color: var(--ink); }
.join-submit {
  width: 100%; margin-top: 14px;
  background: var(--ink); color: var(--bg);
  border: 2px solid var(--ink);
  padding: 14px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer;
}
.join-submit:hover { background: var(--c1); border-color: var(--c1); }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 60px;
}
.post {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg-2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.post:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.post .meta { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: flex; gap: 8px; }
.post .meta .cat { padding: 2px 8px; background: var(--ink); color: var(--bg); border-radius: 999px; }
.post h3 { margin-top: 12px; font-size: 28px; line-height: 1.05; }
.post .excerpt { margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.post.featured { grid-row: span 1; background: var(--c3); }
.post.featured h3 { font-size: 40px; }
.post.featured .cover {
  aspect-ratio: 16/9;
  margin: -20px -20px 16px;
  background: var(--ink);
  position: relative;
  border-bottom: 2px solid var(--line);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 14px, transparent 14px 28px);
}
.post.featured .cover::after {
  content: "COVER // STUDIO B"; position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  background: var(--c3); color: var(--ink); padding: 4px 8px; border-radius: 4px;
}
.post .read { margin-top: auto; padding-top: 14px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; display: flex; align-items: center; gap: 6px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink); color: var(--bg);
  border-top: 2px solid var(--line);
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 16px; }
.footer .big-title { font-family: var(--font-display); font-size: clamp(64px, 8vw, 108px); line-height: 0.9; color: var(--bg); }
.footer .big-title em { color: var(--c1); }
.footer a { display: block; padding: 4px 0; font-size: 14px; text-decoration: none; color: var(--bg); }
.footer a:hover { color: var(--c3); }
.footer .legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em;
}

/* ---------- WATCH ---------- */
.watch-wrap { padding-bottom: 60px; }
.watch-hero {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.yt-frame {
  position: relative;
  background: var(--ink);
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column;
}
.yt-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--ink); color: var(--bg);
  border-bottom: 2px solid var(--line);
}
.yt-chrome .yt-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-2); opacity: 0.3;
}
.yt-chrome .yt-dot:nth-child(1) { background: var(--c1); opacity: 0.85; }
.yt-chrome .yt-dot:nth-child(2) { background: var(--c3); opacity: 0.85; }
.yt-chrome .yt-dot:nth-child(3) { background: var(--c6); opacity: 0.85; }
.yt-chrome .yt-tag {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent, var(--c3));
}
.yt-hold {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.yt-hold iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.yt-caption {
  padding: 12px 16px;
  background: var(--ink); color: var(--bg);
  border-top: 2px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.yt-caption b { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.01em; }
.yt-caption span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; text-align: right; }

.watch-meta {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-hard);
  transform: rotate(-0.8deg);
}
.watch-meta h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }
.watch-meta > p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.watch-controls { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.watch-controls .btn { padding: 10px 16px; font-size: 13px; }
.watch-ticker {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
}

.watch-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.watch-thumb {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  transition: transform 0.15s, box-shadow 0.15s;
  color: var(--ink);
}
.watch-thumb:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.watch-thumb.on { background: var(--accent, var(--c3)); border-color: var(--ink); }
.thumb-img {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  display: grid; place-items: center;
}
.thumb-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.thumb-play {
  position: relative; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.watch-thumb.on .thumb-play { background: var(--c1); }
.thumb-meta { display: flex; flex-direction: column; gap: 4px; }
.thumb-meta .mono { font-size: 9px; letter-spacing: 0.16em; color: var(--muted); }
.watch-thumb.on .thumb-meta .mono { color: rgba(0,0,0,0.6); }
.thumb-meta b { font-family: var(--font-display); font-weight: 400; font-size: 17px; line-height: 1.1; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .watch-hero { grid-template-columns: 1fr; }
  .watch-strip { grid-template-columns: repeat(2, 1fr); }
  .nav-socials { display: none; }
}

/* ---------- TWEAKS PANEL ---------- */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), var(--shadow-hard);
  padding: 16px;
  width: 280px;
  z-index: 1000;
  font-family: var(--font-body);
}
.tweaks-panel h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 12px; }
.tweaks-panel .row { margin-bottom: 14px; }
.tweaks-panel label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: block; margin-bottom: 6px; }
.tweaks-panel .swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.tweaks-panel .swatches button {
  height: 44px; border-radius: 8px; border: 2px solid var(--line); cursor: pointer;
  padding: 0; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  overflow: hidden;
}
.tweaks-panel .swatches button.active { outline: 3px solid var(--c1); outline-offset: 2px; }
.tweaks-panel input[type="range"] { width: 100%; accent-color: var(--c1); }

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid, .studio-booking, .join-block, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .resources, .spotlights { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .sec-head .sec-sub { text-align: left; }
  .nav-links { display: none; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery-tile { grid-column: span 3 !important; }
}
