/* ──────────────────────────────────────────────
   DJ GQ WORLDWIDE — Music page (page-specific)
   Shared chrome lives in base.css / nav.css.
   Layout: intro → Spotify + featured-video embeds → platform cards.
   ────────────────────────────────────────────── */

.music{
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 10vh, 120px) var(--pad) clamp(48px, 8vw, 90px);
}

/* ── Intro ─────────────────────────────────── */
.music__title{
  font-size: clamp(44px, 7.5vw, 96px); font-weight: 600;
  letter-spacing: -.02em; line-height: .95; margin: 0 0 22px; color: var(--ink);
}
.music__lead{
  font-size: clamp(17px, 1.6vw, 21px); font-weight: 300; line-height: 1.6;
  color: var(--ink-2); max-width: 52ch; margin: 0;
}

/* ── Embeds (Spotify player + featured video) ── */
.music__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 64px);
  align-items: start;
}
.embed__label{
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500; color: var(--dim); margin: 0 0 14px;
}
.embed__label em{ letter-spacing: .26em; }

/* Platform headline (logo + "DJ GQ on …") */
.embed__brand{
  display: inline-flex; align-items: center; gap: 15px;
  margin: 0 0 18px;
}
.embed__brand-logo{
  width: 36px; height: 36px; flex: 0 0 36px;
  display: block; color: #1ED760;
}
.embed__brand-logo--apple{ color: var(--ink); }
.embed__brand-logo--yt{ width: 44px; flex: 0 0 44px; color: #FF0000; }
.embed__brand-name{
  font-size: clamp(20px, 2.2vw, 25px); letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
  transition: color .25s ease;
}
.embed__brand:hover .embed__brand-name{ color: var(--accent); }

/* Player + clickable track list */
.player iframe{ width: 100%; border: 0; border-radius: 12px; display: block; }
.player + .player{ margin-top: 14px; }

.tracks{
  list-style: none; margin: 14px 0 0; padding: 0;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg-2); overflow: hidden;
}
.track{
  display: flex; align-items: center; gap: 14px; width: 100%;
  text-align: left; background: none; border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px; cursor: pointer;
  font-family: var(--body); color: var(--ink);
  transition: background .2s ease;
}
.tracks li:last-child .track{ border-bottom: 0; }
.track:hover{ background: rgba(255,255,255,.04); }
.track--active{ background: rgba(201,162,75,.09); }
.track__num{
  font-size: 11px; letter-spacing: .1em; color: var(--ink-3);
  flex: 0 0 22px;
}
.track--active .track__num{ color: var(--accent); }
.track__meta{ display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.track__title{ font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.track__artists{ font-size: 12.5px; font-weight: 300; color: var(--ink-2); }
.track__badge{
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #0B0B0B; background: var(--accent);
  border-radius: 4px; padding: 3px 8px; flex: 0 0 auto;
}

.embed__links{ display: flex; gap: 26px; flex-wrap: wrap; margin-top: 18px; }
.drop__all{
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-2); border-bottom: 1px solid var(--line); padding-bottom: 5px;
  transition: color .25s ease, border-color .25s ease;
}
.drop__all:hover{ color: var(--accent); border-color: var(--accent); }
.embed__frame{
  aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2);
}
.embed__frame iframe{ width: 100%; height: 100%; border: 0; display: block; }

/* ── Featured video (YouTube) ───────────────── */
.video{
  margin-top: clamp(44px, 6vw, 70px);
  max-width: 860px;
}

/* ── Platform cards ─────────────────────────── */
.plats{
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 5vw, 56px);
}
.plats__title{
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500; color: var(--dim); margin: 0 0 26px;
}
.plats__grid{
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.plat{
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-2);
  transition: border-color .25s ease, transform .25s ease;
}
.plat:hover{ border-color: var(--accent); transform: translateY(-3px); }
.plat__head{ display: flex; align-items: center; gap: 10px; }
.plat__logo{ width: 18px; height: 18px; flex: 0 0 18px; display: block; }
.plat__logo--spotify{ color: #1ED760; }
.plat__logo--apple{ color: var(--ink); }
.plat__logo--yt{ width: 21px; flex-basis: 21px; color: #FF0000; }
.plat__name{
  font-size: 15px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
}
.plat__blurb{
  font-size: 15px; font-weight: 300; line-height: 1.6;
  color: var(--ink-2); flex: 1;
}
.plat__cta{
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--dim);
  padding-bottom: 5px; align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.plat:hover .plat__cta{ color: var(--accent); border-color: var(--accent); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 980px){
  .music__grid{ grid-template-columns: 1fr; }
  .plats__grid{ grid-template-columns: 1fr; }
}
