/*
Theme Name:  Pitchmanmusic
Theme URI:   https://pitchmanmusic.com
Author:      Peter Wagner
Author URI:  https://pitchmanmusic.com
Description: Official WordPress theme for Pitchmanmusic — dark cinematic music-artist theme with live Spotify embeds, artist sub-pages, YouTube integration and all social links.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pitchmanmusic
Tags:        music, dark, one-page, artist, portfolio, custom-header, full-width-template
*/

/* ============================================================
   BRAND TOKENS
============================================================ */
:root {
  --brand-primary:     #C9A84C;
  --brand-accent:      #B8833A;
  --brand-text:        #F0F0F0;
  --brand-text-subtle: #8A8A9A;
  --brand-bg:          #0A0A0F;
  --brand-surface:     #111118;
  --brand-border:      rgba(201, 168, 76, 0.12);
  --font-heading:      'Space Grotesk', sans-serif;
  --font-body:         'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* WP admin bar */
.admin-bar #pm-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #pm-nav { top: 46px; } }

/* ============================================================
   PAGE LOADER
============================================================ */
#pm-loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--brand-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#pm-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--brand-primary);
  animation: pm-pulse 1s ease-in-out infinite;
}
.loader-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(201,168,76,.15);
  border-radius: 99px; margin-top: 1.5rem; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: var(--brand-primary);
  border-radius: 99px;
  animation: pm-loadbar 1.4s ease forwards;
}
@keyframes pm-pulse  { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes pm-loadbar { to { width: 100%; } }

/* ============================================================
   NAV
============================================================ */
#pm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,15,.95) 0%, transparent 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background .4s;
}
#pm-nav.scrolled { background: rgba(10,10,15,.97); }

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-primary);
}
.nav-logo span { color: var(--brand-text); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: var(--brand-text-subtle);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--brand-primary); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.3rem;
  background: var(--brand-primary); color: #000;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 0 20px rgba(201,168,76,.2);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(201,168,76,.4); }
.nav-cta svg { width: 14px; height: 14px; fill: #000; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brand-text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: rgba(10,10,15,.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand-text-subtle); transition: color .2s;
}
.nav-mobile-drawer a:hover { color: var(--brand-primary); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border-radius: 4px;
  font-family: var(--font-heading);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--brand-primary); color: #000;
  box-shadow: 0 0 30px rgba(201,168,76,.25);
}
.btn-primary svg { fill: #000; }
.btn-primary:hover { box-shadow: 0 0 45px rgba(201,168,76,.45); }

.btn-ghost {
  background: transparent; color: var(--brand-text);
  border: 1px solid rgba(240,240,240,.2);
}
.btn-ghost:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.btn-outline-accent {
  background: transparent; color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.btn-outline-accent:hover {
  background: rgba(201,168,76,.08);
  box-shadow: 0 0 25px rgba(201,168,76,.15);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   SECTION BASE
============================================================ */
.pm-section {
  padding: 7rem 3rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.section-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand-primary); font-weight: 600; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1rem;
}
.section-sub {
  color: var(--brand-text-subtle); max-width: 540px; line-height: 1.75; font-size: .95rem;
}

/* ============================================================
   HERO
============================================================ */
#pm-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3rem 6rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(184,131,58,.07) 0%, transparent 55%),
    var(--brand-bg);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; z-index: 1;
  display: flex; align-items: flex-end; gap: 3px; padding: 0 1rem; opacity: .15;
}
.hero-wave span {
  flex: 1; background: var(--brand-primary); border-radius: 2px 2px 0 0;
  animation: pm-wave var(--d, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}
@keyframes pm-wave { from{height:var(--h-from,20%)} to{height:var(--h-to,80%)} }

.hero-content { position: relative; z-index: 2; max-width: 960px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.08); border: 1px solid var(--brand-border);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 1.8rem;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-primary); animation: pm-blink 1.4s ease-in-out infinite;
}
@keyframes pm-blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 700; line-height: .88; letter-spacing: -.025em; text-transform: uppercase;
}
.hero-title .line-accent { color: var(--brand-primary); display: block; }
.hero-title .line-outline {
  display: block; -webkit-text-stroke: 2px rgba(201,168,76,.35); color: transparent;
}
.hero-sub {
  margin-top: 2rem; font-size: 1.05rem;
  color: var(--brand-text-subtle); max-width: 500px; line-height: 1.7;
}
.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
============================================================ */
#pm-stats {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 2.5rem 3rem;
  display: flex; gap: 3rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 700; color: var(--brand-primary); line-height: 1;
}
.stat-label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-text-subtle); margin-top: .4rem;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); }

/* ============================================================
   MUSIC / SPOTIFY SECTION
============================================================ */
#pm-music { background: var(--brand-bg); }
.music-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.music-card {
  background: var(--brand-surface); border: 1px solid var(--brand-border);
  border-radius: 12px; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.music-card:hover {
  transform: translateY(-6px); border-color: rgba(201,168,76,.3);
  box-shadow: 0 20px 60px rgba(201,168,76,.07);
}
.music-card-header {
  padding: 1.2rem 1.4rem .8rem;
  display: flex; align-items: center; gap: .8rem;
}
.music-card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(29,185,84,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.music-card-icon svg { width: 16px; height: 16px; }
.music-card-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-text-subtle);
}
.music-card-title { font-family: var(--font-heading); font-weight: 600; font-size: .9rem; margin-top: .1rem; color: var(--brand-text); }
.music-card iframe { width: 100%; border: none; display: block; }

/* ============================================================
   ARTISTS SECTION (homepage)
============================================================ */
#pm-artists { background: var(--brand-bg); }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.artist-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 24px 70px rgba(201,168,76,.08);
}

.artist-card-number {
  position: absolute; top: 1rem; left: 1.2rem; z-index: 2;
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,.08); letter-spacing: -.04em;
  pointer-events: none;
}

.artist-card iframe { width: 100%; border: none; display: block; flex-shrink: 0; }

.artist-card-footer {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: .8rem;
  background: var(--brand-surface);
  border-top: 1px solid rgba(255,255,255,.05);
}

.artist-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700; color: var(--brand-text);
}

.artist-card-meta {
  font-size: .75rem; color: var(--brand-text-subtle);
  letter-spacing: .06em; text-transform: uppercase;
}

.artist-card-actions {
  display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .3rem;
}

.artist-btn-spotify {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem;
  background: #1DB954; color: #000;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.artist-btn-spotify:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,185,84,.35); }
.artist-btn-spotify svg { width: 13px; height: 13px; fill: #000; flex-shrink: 0; }

.artist-btn-profile {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem;
  background: transparent; color: var(--brand-primary);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.artist-btn-profile:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(201,168,76,.12);
}
.artist-btn-profile svg { width: 13px; height: 13px; fill: var(--brand-primary); flex-shrink: 0; }

/* ============================================================
   VIDEO SECTION
============================================================ */
#pm-videos { background: linear-gradient(180deg, var(--brand-bg) 0%, #0d0d14 100%); }
.video-feature {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 3.5rem;
}
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 12px;
  border: 1px solid var(--brand-border);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.video-embed-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.2rem;
}
.video-info p { color: var(--brand-text-subtle); line-height: 1.75; margin-bottom: 2rem; font-size: .95rem; }

/* ============================================================
   SOCIAL SECTION
============================================================ */
#pm-social { background: var(--brand-surface); text-align: center; }
#pm-social .section-sub { margin: 0 auto; }
.social-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 3rem;
}
.social-pill {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .9rem 1.8rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; color: var(--brand-text); background: transparent;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.social-pill:hover {
  transform: translateY(-3px); border-color: var(--brand-primary);
  background: rgba(201,168,76,.06); box-shadow: 0 8px 30px rgba(201,168,76,.1);
}
.social-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
#pm-footer {
  padding: 3rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brand-primary);
}
.footer-copy { font-size: .75rem; color: var(--brand-text-subtle); letter-spacing: .05em; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-size: .75rem; color: var(--brand-text-subtle); letter-spacing: .06em; transition: color .2s;
}
.footer-links a:hover { color: var(--brand-primary); }

/* ============================================================
   ARTIST SUBPAGE TEMPLATE
============================================================ */
.artist-page-hero {
  position: relative; min-height: 70vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3rem 5rem; overflow: hidden;
}
.artist-page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.artist-page-hero .hero-content { position: relative; z-index: 2; max-width: 800px; }

.artist-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-text-subtle); margin-bottom: 2rem;
  transition: color .2s;
}
.artist-back:hover { color: var(--brand-primary); }
.artist-back svg { width: 14px; height: 14px; fill: currentColor; }

.artist-page-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700; line-height: .88;
  letter-spacing: -.025em; text-transform: uppercase;
}
.artist-page-title .accent { color: var(--brand-primary); }

.artist-page-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.08); border: 1px solid var(--brand-border);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 1.5rem;
}

.artist-page-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  padding: 5rem 3rem; max-width: 1400px; margin: 0 auto;
}

.artist-embed-col {}
.artist-embed-col iframe {
  width: 100%; border: none; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.artist-info-col {}
.artist-info-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: 1.2rem;
}
.artist-info-col p {
  color: var(--brand-text-subtle); line-height: 1.8; margin-bottom: 1.5rem; font-size: .95rem;
}
.artist-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.artist-page-playlist { padding: 0 3rem 5rem; max-width: 1400px; margin: 0 auto; }
.artist-page-playlist h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem;
}

/* ============================================================
   404 PAGE
============================================================ */
.pm-404 {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem;
}

/* ============================================================
   WP HELPERS
============================================================ */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin: 0 auto; display: block; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-page-body { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .video-feature { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  #pm-nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #pm-hero, .artist-page-hero { padding: 0 1.5rem 4rem; }
  .pm-section { padding: 4rem 1.5rem; }
  #pm-stats { padding: 2rem 1.5rem; gap: 1.5rem; }
  .stat-divider { display: none; }
  #pm-footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .artist-page-body { padding: 3rem 1.5rem; }
  .artist-page-playlist { padding: 0 1.5rem 3rem; }
}
@media (max-width: 700px) {
  .artists-grid { grid-template-columns: 1fr; }
  .hero-cta, .artist-cta-row { flex-direction: column; }
  .btn { justify-content: center; }
  .music-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   ARTIST PHOTO
============================================================ */
.artist-photo-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border: 1px solid var(--brand-border);
  aspect-ratio: 1 / 1;
  position: relative;
}
.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.artist-photo-wrap:hover .artist-photo {
  transform: scale(1.03);
}

/* ============================================================
   YOUTUBE EMBED SECTION
============================================================ */
.artist-page-youtube {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.artist-page-youtube .section-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .6rem;
}
.artist-page-youtube h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.yt-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  background: #000;
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* YouTube button */
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  background: #FF0000;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-youtube:hover { opacity: .85; }

/* ============================================================
   ARTIST PROFILE — STATS, TRACKLIST, BIO
============================================================ */
.artist-stat-row {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
}
.artist-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.artist-stat-label {
  font-size: .75rem;
  color: var(--brand-text-subtle);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.artist-bio {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--brand-text-subtle);
  margin-bottom: 1.8rem;
}
.artist-bio em {
  color: var(--brand-text);
  font-style: normal;
  font-weight: 500;
}

.artist-tracklist {
  margin-bottom: 2rem;
}
.artist-tracklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  overflow: hidden;
}
.artist-tracklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
.artist-tracklist li:last-child { border-bottom: none; }
.artist-tracklist li:hover { background: rgba(255,255,255,.03); }
.track-num {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  min-width: 24px;
  opacity: .7;
}
.track-title {
  flex: 1;
  font-size: .88rem;
  font-weight: 500;
  color: var(--brand-text);
}
.track-year {
  font-size: .72rem;
  color: var(--brand-text-subtle);
  letter-spacing: .06em;
}

/* ============================================================
   YOUTUBE — MULTI-VIDEO LAYOUT
============================================================ */
.yt-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.yt-section-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
}
.yt-main-wrap {
  margin-bottom: 1.5rem;
}
.yt-main-title {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--brand-text-subtle);
  font-weight: 500;
}
.yt-grid-rest {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.yt-grid-item {}
.yt-grid-title {
  margin-top: .6rem;
  font-size: .8rem;
  color: var(--brand-text-subtle);
}

/* ============================================================
   LEGAL PAGES — Impressum & Datenschutz
============================================================ */
.legal-hero {
  position: relative;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}
.legal-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 60%),
    #0A0A0F;
}
.legal-hero-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.legal-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
  border-radius: 999px; padding: .3rem .9rem;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 1.4rem;
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--brand-text); margin-bottom: .8rem;
}
.legal-hero p {
  color: var(--brand-text-subtle); font-size: .95rem;
}

.legal-body {
  padding: 3rem 2rem 6rem;
}
.legal-container {
  max-width: 800px; margin: 0 auto;
}
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.legal-block:last-child {
  border-bottom: none;
}
.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem; letter-spacing: -.01em;
}
.legal-block h3 {
  font-family: var(--font-heading);
  font-size: .9rem; font-weight: 600;
  color: var(--brand-text);
  margin: 1.2rem 0 .5rem;
  letter-spacing: .02em;
}
.legal-block p {
  font-size: .9rem; line-height: 1.8;
  color: var(--brand-text-subtle);
  margin-bottom: .8rem;
}
.legal-block p strong { color: var(--brand-text); }
.legal-block a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.3);
  transition: border-color .2s;
}
.legal-block a:hover { border-color: var(--brand-primary); }
