/* ─────────────────────────────────────────
   ALPHAJAY CAMPAIGN HUB — STYLESHEET
   ───────────────────────────────────────── */

:root {
  --black: #050505;
  --panel: #0d0d0f;
  --panel-soft: #121216;
  --white: #f5f2ee;
  --muted: rgba(245,242,238,.62);
  --faint: rgba(245,242,238,.07);
  --line: rgba(245,242,238,.13);
  --line-mid: rgba(245,242,238,.22);
  --cyan: #00AEFF;
  --pink: #FC00D6;
  --violet: #C800FF;
  --grad: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));

  /* Platform brand colours */
  --spotify: #1DB954;
  --soundcloud: #FF5500;
  --youtube: #FF0000;
  --instagram: #E1306C;
  --tiktok: #00F2EA;
  --mixcloud: #5000FF;
  --twitch: #9146FF;
  --beatport: #01FF95;

  /* Label colours */
  --lc-bf: var(--cyan);
  --lc-cd: var(--pink);
  --lc-gm: var(--violet);
  --lc-su: rgba(245,242,238,.55);
  --lc-mg: #FFB800;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: .88;
}

/* ── SIGNAL RAIL ── */
.signal-rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--pink));
  background-size: 100% 300%;
  animation: railShift 8s ease-in-out infinite;
  z-index: 1000;
}

@keyframes railShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 5px;
  height: 82px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .3s ease, height .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5,5,5,.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img.icon,
.brand img.text {
  display: block;
  height: auto;
  transition: max-height .3s ease;
  max-height: 34px;
}

.site-header.is-scrolled .brand img.icon,
.site-header.is-scrolled .brand img.text { max-height: 28px; }

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--white); }
.main-nav a svg { opacity: .6; }

.header-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  border: 1px solid var(--line-mid);
  padding: 11px 18px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}

.header-cta:hover {
  background: var(--faint);
  border-color: rgba(245,242,238,.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 132px 48px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 18%, rgba(0,174,255,.22), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(252,0,214,.14), transparent 32%),
    linear-gradient(180deg, rgba(5,5,5,.08), var(--black) 92%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/alphajay-adjusting-cap-portrait.jpg');
  background-size: cover;
  background-position: center 28%;
  animation: slowZoom 18s ease-out forwards;
}

@keyframes slowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25) 0%, transparent 25%, transparent 50%, rgba(0,0,0,.88) 80%, #000 100%),
    linear-gradient(to right, rgba(0,0,0,.35) 0%, transparent 40%);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: .85;
  pointer-events: none;
}

.pulse {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.pulse-one {
  width: 520px;
  height: 520px;
  right: 10%; top: 12%;
  background: rgba(0,174,255,.1);
}

.pulse-two {
  width: 460px;
  height: 460px;
  left: 4%; bottom: 8%;
  background: rgba(252,0,214,.08);
}

.hero-device-bg {
  position: absolute;
  right: -6%; bottom: -8%;
  width: 54%;
  opacity: .028;
  pointer-events: none;
}

.waveform {
  position: absolute;
  left: 48px; right: 48px;
  bottom: 15%;
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .14;
}

.waveform span {
  flex: 1;
  height: 120px;
  background: var(--white);
  transform-origin: bottom;
}

.waveform span:nth-child(3n) { height: 240px; }
.waveform span:nth-child(4n) { height: 70px; }
.waveform span:nth-child(5n) { height: 180px; }

.hero-content,
.campaign-card,
.section,
.ticker { position: relative; z-index: 2; }

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.micro-row span,
.section-kicker,
.card-type,
.ticker-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.micro-row span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--cyan);
  vertical-align: 1px;
  flex-shrink: 0;
}

.micro-row span:nth-child(2)::before { background: var(--violet); }
.micro-row span:nth-child(3)::before { background: var(--pink); }

h1 {
  max-width: 880px;
  font-size: clamp(78px, 11vw, 178px);
  letter-spacing: -.04em;
}

.hero-sub {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity .2s;
}

.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { opacity: .88; }
.btn-secondary { color: var(--white); }
.btn-secondary:hover { background: var(--faint); border-color: var(--line-mid); }

/* ── CAMPAIGN CARD ── */
.campaign-card {
  align-self: stretch;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 560px;
  background: rgba(13,13,15,.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.campaign-art {
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0,174,255,.4), rgba(200,0,255,.2) 45%, rgba(252,0,214,.35)),
    radial-gradient(circle at center, rgba(255,255,255,.12), transparent 60%);
}

.art-inner {
  width: min(72%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.3);
  box-shadow: 0 0 80px rgba(0,174,255,.18);
}

.art-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.campaign-meta { padding: 28px 30px 30px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.campaign-meta h2 { font-size: 72px; margin: 10px 0 6px; }

.campaign-meta > p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }

.campaign-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.campaign-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 9px 14px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .2s, border-color .2s;
}

.campaign-buttons a:hover { color: var(--white); border-color: var(--line-mid); }
.cb-spotify:hover  { color: var(--spotify) !important; border-color: var(--spotify) !important; }
.cb-beatport:hover { color: var(--beatport) !important; border-color: var(--beatport) !important; }
.cb-apple:hover    { color: #FC3C44 !important; border-color: #FC3C44 !important; }

/* ── TICKER ── */
.ticker {
  margin-left: 5px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.ticker > div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.ticker > div:last-child { border-right: 0; }

.ticker strong {
  display: block;
  margin-top: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

/* ── SECTIONS ── */
.section { padding: 100px 48px; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: end;
}

.section h2 {
  font-size: clamp(58px, 7vw, 112px);
  letter-spacing: -.03em;
}

.section p { color: var(--muted); font-size: 16px; line-height: 1.75; }

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Artwork background card */
.feature-release .card-img-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: opacity .4s ease;
}

.feature-release:hover .card-img-bg { opacity: .5; }

.feature-release::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(5,5,5,.92) 80%);
  pointer-events: none;
}

/* Live set card - animated waveform */
.feature-live {
  background: var(--panel);
}

.card-waveform {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 0 20px;
  opacity: .12;
}

.card-waveform span {
  flex: 1;
  background: var(--cyan);
  border-radius: 1px;
  animation: wfAnim 1.4s ease-in-out infinite;
  transform-origin: center;
}

.card-waveform span:nth-child(3n)  { height: 60%;  animation-delay: .1s; }
.card-waveform span:nth-child(4n)  { height: 30%;  animation-delay: .25s; }
.card-waveform span:nth-child(5n)  { height: 80%;  animation-delay: .05s; }
.card-waveform span:nth-child(7n)  { height: 45%;  animation-delay: .35s; }
.card-waveform span:nth-child(1)   { height: 50%; }
.card-waveform span:nth-child(2)   { height: 70%; }
.card-waveform span:nth-child(6)   { height: 90%; }
.card-waveform span:nth-child(8)   { height: 55%; }

@keyframes wfAnim {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.55); opacity: .6; }
}

.feature-live::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,174,255,.15), transparent 40%),
    linear-gradient(to bottom, transparent 30%, rgba(5,5,5,.88) 80%);
  pointer-events: none;
}

/* BBC card - frequency visual */
.feature-bbc {
  background: var(--panel);
}

.card-freq {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 40px 30px;
  opacity: .18;
}

.freq-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--white) 20%, var(--white) 80%, transparent);
  position: relative;
  animation: freqScan 3s ease-in-out infinite;
}

.freq-line:nth-child(2) { animation-delay: .6s; opacity: .6; }
.freq-line:nth-child(3) { animation-delay: 1.2s; opacity: .35; }

@keyframes freqScan {
  0%,100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(.7); opacity: .4; }
}

.freq-pulse {
  position: absolute;
  top: 38%;
  left: 30%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  animation: freqPulse 2s ease-in-out infinite;
}

@keyframes freqPulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(2.5); opacity: .1; }
}

.feature-bbc::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(252,0,214,.1), transparent 40%),
    linear-gradient(to bottom, transparent 30%, rgba(5,5,5,.88) 80%);
  pointer-events: none;
}

/* Card content (sits above all backgrounds) */
.card-content {
  position: relative;
  z-index: 3;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.card-type { margin-bottom: 12px; }

.card-content h3 {
  margin: 0 0 12px;
  font-size: 52px;
  line-height: .9;
}

.card-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}

.card-content a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
  transition: letter-spacing .2s;
}

.card-content a:hover { letter-spacing: .22em; }

/* ── MUSIC SECTION ── */
.music-section {
  background: var(--panel-soft);
  /*border-block: 1px solid var(--line);*/
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: end;
}

/* Label legend */
.label-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 36px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  background: var(--black);
}

.ll-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ll-bf .ll-dot { background: var(--lc-bf); }
.ll-cd .ll-dot { background: var(--lc-cd); }
.ll-gm .ll-dot { background: var(--lc-gm); }
.ll-su .ll-dot { background: var(--lc-su); }
.ll-mg .ll-dot { background: var(--lc-mg); }

/* Music category labels */
.music-category-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin: 48px 0 14px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow-x: auto;
}

.timeline--remixes {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.timeline article {
  min-height: 280px;
  padding: 28px;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-top: 3px solid transparent;
  overflow: hidden;
  transition: background-size .6s ease;
  isolation: isolate;
}

.timeline article .darken {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.78) 60%, rgba(0,0,0,.92) 100%);
  z-index: 0;
  transition: background .5s ease;
}

.timeline article:hover .darken {
  background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.88) 60%, rgba(0,0,0,.95) 100%);
}

/* Label colour accents */
.tl-bf { border-top-color: var(--lc-bf) !important; }
.tl-cd { border-top-color: var(--lc-cd) !important; }
.tl-gm { border-top-color: var(--lc-gm) !important; }
.tl-su { border-top-color: var(--lc-su) !important; }
.tl-mg { border-top-color: var(--lc-mg) !important; }

.timeline span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.tl-bf span { color: var(--lc-bf); }
.tl-cd span { color: var(--lc-cd); }
.tl-gm span { color: var(--lc-gm); }
.tl-su span { color: var(--lc-su); }
.tl-mg span { color: var(--lc-mg); }

.timeline h3 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Edit list */
.edit-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.edit-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
  padding: 15px 24px;
  background: var(--black);
  text-decoration: none;
  color: inherit;
  border-left: 2px solid transparent;
  transition: background .15s, border-color .15s;
}

.edit-row:hover {
  background: var(--panel);
  border-left-color: var(--cyan);
}

.edit-year {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

.edit-title { font-size: 14px; color: var(--white); font-weight: 300; }
.edit-title em { color: var(--muted); font-style: normal; }

/* ── FULL-BLEED DIVIDER ── */
.section-divider-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.sdi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-color: var(--panel);
  filter: grayscale(40%);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.section-divider-image:hover .sdi-bg { transform: scale(1); }

.sdi-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--black) 0%, transparent 25%, transparent 75%, var(--black) 100%),
    rgba(5,5,5,.55);
}

.sdi-label {
  position: absolute;
  bottom: 28px;
  right: 48px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

/* ── LIVE SECTION ── */
.live-section { }

.live-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
  padding: 52px;
  /*border: 1px solid var(--line);*/
  background:
    radial-gradient(circle at 85% 30%, rgba(200,0,255,.12), transparent 35%),
    var(--panel);
}

.sc-embed-wrap {
  margin-bottom: 1px;
  border: 1px solid var(--line);
}

.sc-embed-wrap iframe { display: block; }

.set-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
}

.set-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: var(--black);
  text-decoration: none;
  transition: background .15s;
}

.set-list a:hover { background: var(--panel); }

.set-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: var(--muted);
}

.set-info { display: flex; flex-direction: column; gap: 3px; }

.set-info strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.set-info em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.set-icon {
  color: #FF5500; /* SoundCloud orange */
  opacity: .7;
  flex-shrink: 0;
}

/* ── SUBSCRIBE SECTION ── */
.subscribe-section {
  background: var(--panel-soft);
  border-block: 1px solid var(--line);
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.subscribe-inner h2 {
  font-size: clamp(52px, 6vw, 88px);
  margin-bottom: 18px;
}

.subscribe-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* Platform links */
.platform-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.platform-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--black);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: var(--muted);
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
}

.platform-links a:hover { background: var(--panel); }

/* Platform brand colour hovers */
.pl-spotify:hover    { color: var(--spotify) !important; border-left-color: var(--spotify); }
.pl-soundcloud:hover { color: var(--soundcloud) !important; border-left-color: var(--soundcloud); }
.pl-youtube:hover    { color: var(--youtube) !important; border-left-color: var(--youtube); }
.pl-instagram:hover  { color: var(--instagram) !important; border-left-color: var(--instagram); }
.pl-tiktok:hover     { color: var(--tiktok) !important; border-left-color: var(--tiktok); }
.pl-mixcloud:hover   { color: var(--mixcloud) !important; border-left-color: var(--mixcloud); }
.pl-twitch:hover     { color: var(--twitch) !important; border-left-color: var(--twitch); }
.pl-beatport:hover   { color: var(--beatport) !important; border-left-color: var(--beatport); }

/* Email capture */
.email-capture { }

.email-capture .section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
}

.email-row {
  display: flex;
  border: 1px solid var(--line);
  transition: border-color .2s;
}

.email-row:focus-within { border-color: rgba(245,242,238,.32); }

.email-row input {
  flex: 1;
  min-width: 0;
  border: none;
  background: var(--black);
  color: var(--white);
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
}

.email-row input::placeholder { color: var(--muted); }
.email-row input:focus { outline: none; }

.email-row button {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity .2s;
}

.email-row button:hover { opacity: .88; }

.email-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  opacity: .65;
}

/* ── PRESS SECTION ── */
.press-section {
  background: var(--panel-soft);
  /*border-block: 1px solid var(--line);*/
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: start;
}

.press-copy { }

.press-photo-wrap {
  margin-top: 32px;
  border: 1px solid var(--line);
}

.press-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 380px;
  overflow: hidden;
}

.press-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
}

.press-photo-inner span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  opacity: .6;
  line-height: 1.6;
}

/* Asset grid */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-self: start;
}

.ag-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--black);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}

.ag-item:hover {
  background: var(--panel);
  color: var(--white);
  border-left-color: var(--cyan);
}

.ag-item svg { color: var(--muted); transition: color .2s; }
.ag-item:hover svg { color: var(--cyan); }

/* ── BOOKING ── */
.booking-card {
  border: 1px solid var(--line);
  padding: 56px;
  background:
    radial-gradient(circle at top right, rgba(0,174,255,.1), transparent 35%),
    var(--panel);
}

.booking-card h2 {
  font-size: clamp(58px, 7vw, 104px);
  margin-bottom: 16px;
}

.booking-form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.booking-form label { display: grid; gap: 8px; }
.booking-form .full { grid-column: 1 / -1; }

.booking-form span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  padding: 15px;
  font: inherit;
  transition: border-color .2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(245,242,238,.3);
}

select option { background: var(--black); }

textarea { min-height: 140px; resize: vertical; }

.booking-form button {
  justify-self: start;
  grid-column: 1 / -1;
  border: 0;
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
}

.booking-form button:hover { opacity: .88; }

/* ── FOOTER ── */
.site-footer {
  margin-left: 5px;
  padding: 36px 48px;
  /*border-top: 1px solid var(--line);*/
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: var(--muted);
}

.footer-left strong {
  display: block;
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 4px;
}

.footer-left span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-labels span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .65;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-socials a {
  color: var(--muted);
  text-decoration: none;
  opacity: .6;
  transition: opacity .2s, color .2s;
}

.footer-socials a:hover { opacity: 1; }
.fs-spotify:hover    { color: var(--spotify) !important; }
.fs-soundcloud:hover { color: var(--soundcloud) !important; }
.fs-instagram:hover  { color: var(--instagram) !important; }
.fs-youtube:hover    { color: var(--youtube) !important; }
.fs-tiktok:hover     { color: var(--tiktok) !important; }
.fs-twitch:hover     { color: var(--twitch) !important; }

.footer-email {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-email:hover { color: var(--white); }

.back-top {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.back-top:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .timeline {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .campaign-card {
    min-height: auto;
    grid-template-columns: .8fr 1fr;
    grid-template-rows: auto;
  }

  .ticker {
    grid-template-columns: repeat(3, 1fr);
  }

  .ticker > div { border-bottom: 1px solid var(--line); }

  .feature-grid,
  .section-heading,
  .split-heading,
  .press-section,
  .live-panel,
  .subscribe-inner {
    grid-template-columns: 1fr;
  }

  .booking-form { grid-template-columns: 1fr; }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .footer-labels { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-right  { align-items: center; }
}

@media (max-width: 760px) {
  .site-header { padding: 0 22px; }
  .main-nav { display: none; }
  .brand img.text { display: none; }

  .hero,
  .section { padding-left: 24px; padding-right: 24px; }

  h1 { font-size: clamp(70px, 22vw, 110px); }

  .campaign-card { grid-template-columns: 1fr; }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker > div { border-right: 0; }
  .ticker > div:last-child { border-bottom: 0; }

  .campaign-meta h2 { font-size: 58px; }

  .feature-grid { grid-template-columns: 1fr; }

  .asset-grid { grid-template-columns: 1fr; }

  .live-panel,
  .booking-card { padding: 28px; }

  .set-list a { grid-template-columns: 28px 1fr; }
  .set-icon { display: none; }

  .platform-links { grid-template-columns: 1fr 1fr; }

  .edit-row {
    grid-template-columns: 40px 1fr;
    padding: 13px 16px;
    gap: 10px;
  }

  .edit-title { font-size: 13px; }

  .timeline { grid-template-columns: minmax(200px, 1fr); }
  .timeline--remixes { grid-template-columns: 1fr; }

  .section-divider-image { height: 180px; }
  .sdi-label { right: 24px; }

  .site-footer { padding: 28px 24px; }
  .footer-labels { flex-direction: column; }
  .press-photo-placeholder { max-height: 260px; }
}
