/* ============================================================
   ROCCOMUSIC.COM — shared styles
   ============================================================
   COLORWAY — change the site's entire palette by editing this
   one block. Alternates Rocco is considering:

   B. Turquoise & tobacco: bg #191410  panel #221B14  cream #EFE7D6
      accent #3EC1AE  accent-ink #062A25  second #C08A4A  dim #A6947D  line #3A2F22
   G. Aubergine & amber:   bg #1A1119  panel #241722  cream #F2E9DC
      accent #E39B3B  accent-ink #2A1B05  second #A58E96  dim #A58E96  line #3E2C3A
   ------------------------------------------------------------ */
:root{
  --bg:         #120D1C;   /* page background */
  --panel:      #1A1328;   /* card background */
  --panel-2:    #211936;   /* deeper card */
  --cream:      #EFE9F8;   /* main text */
  --accent:     #A96BFF;   /* buttons, highlights */
  --accent-ink: #160E26;   /* text on accent */
  --second:     #8D7FAD;   /* secondary accent */
  --dim:        #8D7FAD;   /* muted text */
  --line:       #2F2547;   /* borders */
  --glow:       169,107,255; /* accent as r,g,b for glows/tints */
}

*{ box-sizing:border-box; margin:0; padding:0; }
[hidden]{ display:none !important; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--cream);
  font-family:'Questrial', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; }
img{ max-width:100%; }
::selection{ background:var(--accent); color:var(--accent-ink); }

/* ---------- Aurora backdrop ---------- */
.aurora{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.aurora span{
  position:absolute; border-radius:50%;
  filter:blur(90px); opacity:.5;
  animation:drift 26s ease-in-out infinite alternate;
}
.aurora span:nth-child(1){ width:56vw; height:56vw; left:-14vw; top:-18vw;
  background:radial-gradient(circle, rgba(var(--glow), .32) 0%, transparent 70%); }
.aurora span:nth-child(2){ width:44vw; height:44vw; right:-10vw; top:8vh;
  background:radial-gradient(circle, rgba(var(--glow), .45) 0%, transparent 70%);
  animation-delay:-8s; animation-duration:32s; }
.aurora span:nth-child(3){ width:50vw; height:50vw; left:22vw; bottom:-28vw;
  background:radial-gradient(circle, rgba(var(--glow), .2) 0%, transparent 70%);
  animation-delay:-16s; animation-duration:38s; }
@keyframes drift{
  from{ transform:translate3d(0,0,0) scale(1); }
  to{   transform:translate3d(6vw,4vh,0) scale(1.15); }
}
.grain{
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main{ position:relative; z-index:2; }
.wrap{ max-width:1060px; margin:0 auto; padding:0 24px; }

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:10;
  background:rgba(0,0,0,.25);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav .bar{
  max-width:1160px; margin:0 auto;
  display:flex; align-items:center; gap:20px;
  padding:12px 24px;
}
.nav .brand img{ height:34px; width:auto; display:block; }
.nav ul{
  list-style:none; display:flex; gap:4px; margin-left:auto;
  overflow-x:auto; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nav ul::-webkit-scrollbar{ display:none; }
.nav a.link{
  display:block; padding:9px 13px;
  font-size:12px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--dim); text-decoration:none; border-radius:999px;
  white-space:nowrap;
  transition:color .15s, background .15s;
}
.nav a.link:hover{ color:var(--cream); }
.nav a.link.on{ color:var(--accent); background:rgba(var(--glow), .1); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ padding:150px 0 40px; text-align:left; }
.page-hero h1{
  font-size:clamp(34px, 5.4vw, 56px); font-weight:400; line-height:1.08;
}
.page-hero .lede{ margin-top:18px; }

/* ---------- Type ---------- */
.eyebrow{
  font-size:12px; letter-spacing:.34em; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px;
}
h2{ font-size:clamp(30px, 4.6vw, 46px); font-weight:400; line-height:1.12; margin-bottom:22px; }
.lede{ color:var(--dim); font-size:18px; line-height:1.75; max-width:640px; }
.lede b{ color:var(--cream); font-weight:400; }
.prose p{ color:var(--dim); font-size:17px; line-height:1.8; }
.prose p + p{ margin-top:20px; }
.prose b{ color:var(--cream); font-weight:400; }
.prose .aside{ font-size:15px; font-style:italic; }
section{ padding:90px 0; }

/* ---------- Buttons ---------- */
.cta-row{ display:flex; gap:14px; flex-wrap:wrap; }
.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border-radius:999px;
  font-size:15px; letter-spacing:.14em; text-transform:uppercase;
  text-decoration:none;
  transition:transform .18s, box-shadow .18s, border-color .18s, color .18s;
}
.cta.primary{
  background:var(--accent); color:var(--accent-ink);
  box-shadow:0 8px 30px rgba(var(--glow), .35);
}
.cta.primary:hover{ transform:translateY(-2px); box-shadow:0 12px 40px rgba(var(--glow), .5); }
.cta.ghost{ border:1px solid var(--line); color:var(--cream); background:rgba(255,255,255,.03); }
.cta.ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }
.cta svg{ width:15px; height:15px; fill:currentColor; }

/* ---------- Cards / glass ---------- */
.glass{
  background:linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid var(--line); border-radius:18px; padding:36px;
}
.glass ul{ list-style:none; }
.glass li{
  display:flex; gap:14px; align-items:baseline;
  padding:13px 0; border-bottom:1px solid var(--line);
  font-size:15.5px; color:var(--cream);
}
.glass li:last-child{ border-bottom:none; }
.glass li::before{ content:"\25C6"; font-size:9px; color:var(--accent); flex:0 0 auto; transform:translateY(-1px); }
.glass li span{ color:var(--dim); }

/* ---------- Video wall ---------- */
.vids{ display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)); gap:24px; }
.vid{
  position:relative; aspect-ratio:16/9;
  border:1px solid rgba(255,255,255,.28); border-radius:20px;
  overflow:hidden; cursor:pointer; background:var(--panel-2);
  transition:transform .22s, border-color .22s, box-shadow .22s;
}
.vid:hover{ transform:translateY(-5px); border-color:rgba(255,255,255,.55); box-shadow:0 18px 44px rgba(0,0,0,.45); }
.vid img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.vid iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.vid .scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.55) 68%, rgba(0,0,0,.88) 100%);
  transition:opacity .25s;
}
.vid:hover .scrim{ opacity:.85; }
.vid .overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
  text-align:center; padding:18px 22px 18px; gap:3px;
}
.vid .t{
  font-size:17px; letter-spacing:.1em; text-transform:uppercase;
  color:#fff; line-height:1.35;
  text-shadow:0 1px 10px rgba(0,0,0,.65);
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.vid .s{
  font-size:14px; color:rgba(255,255,255,.78); line-height:1.4;
  text-shadow:0 1px 8px rgba(0,0,0,.6);
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.vid .play{
  position:absolute; top:16px; right:16px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(0,0,0,.55); backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.4);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(.85);
  transition:opacity .2s, transform .2s, background .2s;
}
.vid:hover .play, .vid:focus-visible .play{ opacity:1; transform:scale(1); background:var(--accent); border-color:var(--accent); }
.vid:hover .play svg, .vid:focus-visible .play svg{ fill:var(--accent-ink); }
.vid .play svg{ width:15px; height:15px; fill:#fff; margin-left:2px; }
.vid:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }

/* ---------- Track list (playlist-fed compact rows) ---------- */
.tracks{ display:grid; grid-template-columns:1fr; gap:9px; }
@media (min-width:760px){ .tracks{ grid-template-columns:1fr 1fr; gap:10px 14px; } }
.trackrow{
  display:flex; align-items:center; gap:14px;
  padding:9px 16px 9px 14px;
  background:rgba(255,255,255,.03); border:1px solid var(--line);
  border-radius:13px; cursor:pointer;
  transition:border-color .18s, background .18s, transform .18s;
}
.trackrow:hover{ border-color:rgba(var(--glow), .55); transform:translateY(-1px); }
.trackrow .cover{
  width:46px; height:46px; flex:0 0 46px; object-fit:cover; display:block;
  border-radius:8px; border:1px solid var(--line); background:var(--panel-2);
}
.trackrow .info{ min-width:0; flex:1 1 auto; display:flex; flex-direction:column; }
.trackrow .t{ font-size:15px; color:var(--cream); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.trackrow .a{ margin-top:2px; font-size:12.5px; color:var(--dim); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.trackrow .state{ flex:0 0 auto; display:flex; align-items:center; }
.trackrow .state svg{ width:14px; height:14px; fill:var(--dim); transition:fill .18s; }
.trackrow:hover .state svg{ fill:var(--accent); }
.trackrow .state .ico-pause{ display:none; }
.trackrow.playing{ border-color:var(--accent); background:rgba(var(--glow), .1); }
.trackrow.playing .state svg{ fill:var(--accent); }
.trackrow.playing .state .ico-play{ display:none; }
.trackrow.playing .state .ico-pause{ display:block; }

/* ---------- Credits (records Rocco is on — display only) ---------- */
.credits{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
  gap:20px 18px;
}
.credit{ margin:0; }
.credit img{
  width:100%; aspect-ratio:1/1; object-fit:cover; display:block;
  border:1px solid var(--line); border-radius:14px; background:var(--panel-2);
}
.credit figcaption{ margin-top:9px; }
.credit b{ display:block; font-weight:400; color:var(--cream); font-size:13.5px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.credit span{ display:block; margin-top:2px; color:var(--dim); font-size:12px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.credits-hero{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:26px; max-width:640px; }
.credits-hero .credit b{ font-size:16px; }
.credits-hero .credit span{ font-size:13.5px; }

/* Home "Featured Projects" — four smaller covers, one per artist */
.credits-feat{ grid-template-columns:repeat(4, minmax(0, 1fr)); gap:20px; max-width:760px; }
@media (max-width:640px){ .credits-feat{ grid-template-columns:repeat(2, 1fr); } }

/* ---------- Home-page role teasers ---------- */
.home-bts, .starlite-banner{ display:block; }
.home-bts img{
  width:100%; display:block; border-radius:20px; border:1px solid var(--line);
  transition:border-color .2s, transform .2s;
}
.starlite-banner{ max-width:560px; }
.starlite-banner img{
  width:100%; display:block; border-radius:20px; border:1px solid var(--line);
  transition:border-color .2s, transform .2s;
}
.home-bts:hover img, .starlite-banner:hover img{
  border-color:rgba(var(--glow), .55); transform:translateY(-3px);
}

/* Home photographer peek — four smaller photos in a row */
.gallery-peek{ columns:auto; display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; max-width:760px; }
.gallery-peek a{ margin:0; }
.gallery-peek img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:12px; display:block; }
@media (max-width:640px){ .gallery-peek{ grid-template-columns:repeat(2, 1fr); } }

/* ---------- Featured video (BTS hero) ---------- */
.feature-video{ position:relative; cursor:pointer; display:block; }
.feature-video .play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.feature-video .play i{
  width:74px; height:74px; border-radius:50%;
  background:rgba(0,0,0,.55); backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.4);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .2s;
}
.feature-video:hover .play i, .feature-video:focus-visible .play i{ background:var(--accent); transform:scale(1.08); }
.feature-video:hover .play svg, .feature-video:focus-visible .play svg{ fill:var(--accent-ink); }
.feature-video .play svg{ width:26px; height:26px; fill:#fff; margin-left:3px; }
.feature-video iframe{ display:block; width:100%; aspect-ratio:16/9; border:0; }

/* ---------- Tabs (BTS photos) ---------- */
.tabs{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-bottom:30px;
  border-bottom:1px solid var(--line);
  padding-bottom:18px;
}
.tab{
  font-family:inherit; cursor:pointer;
  display:inline-flex; align-items:center; gap:9px;
  padding:10px 18px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.03);
  color:var(--dim);
  font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  transition:color .18s, border-color .18s, background .18s;
}
.tab:hover{ color:var(--cream); border-color:var(--accent); }
.tab.on{ color:var(--accent-ink); background:var(--accent); border-color:var(--accent); }
.tab span{
  font-size:11px; letter-spacing:.05em;
  padding:1px 8px; border-radius:999px;
  background:rgba(0,0,0,.18); color:inherit;
}
.tab:not(.on) span{ background:rgba(var(--glow),.14); color:var(--accent); }
.tab:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
#bts-panels .gallery{ animation:fade .35s ease; }
@keyframes fade{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion:reduce){ #bts-panels .gallery{ animation:none; } }

/* ---------- Photo gallery ---------- */
.gallery{ columns:3 300px; column-gap:18px; }
.gallery a{ display:block; margin-bottom:18px; border-radius:12px; overflow:hidden; border:1px solid var(--line); }
.gallery img{ display:block; width:100%; transition:transform .3s, opacity .3s; }
.gallery a:hover img{ transform:scale(1.03); opacity:.92; }
.lightbox{
  position:fixed; inset:0; z-index:50; background:rgba(8,5,14,.94);
  display:none; align-items:center; justify-content:center; padding:30px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:100%; max-height:92vh; border-radius:8px; }
.lightbox .x{
  position:absolute; top:18px; right:22px; font-size:34px; line-height:1;
  color:var(--cream); cursor:pointer; background:none; border:none;
  font-family:inherit;
}

/* ---------- Footer ---------- */
body > footer{
  border-top:1px solid var(--line); padding:44px 24px 38px;
  text-align:center; color:var(--dim);
  font-size:12.5px; letter-spacing:.18em; text-transform:uppercase;
  position:relative; z-index:2;
}
body > footer img{ height:30px; width:auto; opacity:.9; display:block; margin:0 auto 16px; }
.badge{
  display:inline-block;
  font-size:14px; letter-spacing:.18em; text-transform:none;
  color:var(--accent);
  border:1px solid rgba(var(--glow), .35);
  border-radius:999px;
  padding:9px 20px 8px 23px;
  background:rgba(var(--glow), .07);
  backdrop-filter:blur(4px);
  margin-bottom:44px;
}
body > footer .badge{ display:block; width:fit-content; margin:30px auto 0; }
body > footer .socials{ display:flex; gap:14px; justify-content:center; margin:0 0 22px; }
body > footer .socials a{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .18s, transform .18s;
}
body > footer .socials a:hover{ border-color:var(--accent); transform:translateY(-3px); }
body > footer .socials svg{ width:17px; height:17px; fill:var(--cream); }
body > footer .foot-nav{
  display:flex; flex-wrap:wrap; gap:8px 26px; justify-content:center;
  margin:0 0 24px;
}
body > footer .foot-nav a{
  color:var(--dim); text-decoration:none; font-size:12.5px;
  transition:color .18s;
}
body > footer .foot-nav a:hover{ color:var(--accent); }

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (max-width:760px){
  section{ padding:70px 0; }
  .page-hero{ padding:130px 0 30px; }
  .nav .brand img{ height:28px; }
}
@media (prefers-reduced-motion:reduce){
  .aurora span{ animation:none; }
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   Page sections (moved from per-page styles so the router can
   swap pages without losing their styling)
   ============================================================ */

/* ---------- Home hero ---------- */
.hero{
  min-height:100svh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:120px 24px 96px;
  position:relative;
}
.logo{
  width:min(560px, 86vw); height:auto; display:block;
  filter:drop-shadow(0 0 60px rgba(var(--glow), .28)) drop-shadow(0 24px 60px rgba(0,0,0,.55));
}
.hero h1{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.tagline{
  margin-top:40px;
  font-size:clamp(17px, 2.4vw, 22px);
  color:var(--dim); letter-spacing:.12em; text-transform:uppercase;
}
.tagline b{ color:var(--cream); font-weight:400; }
.tagline .dot{ color:var(--accent); padding:0 .55em; }
.hero .cta-row{ margin-top:44px; justify-content:center; }
.scroll-cue{
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  color:var(--dim); font-size:11px; letter-spacing:.3em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  text-decoration:none;
}
.scroll-cue::after{
  content:""; width:1px; height:44px;
  background:linear-gradient(var(--accent), transparent);
  animation:cue 2.2s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ opacity:.25; transform:scaleY(.6); transform-origin:top; }
  50%{ opacity:1; transform:scaleY(1); }
}
.stats{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.025); backdrop-filter:blur(6px);
}
.stats .wrap{ display:grid; grid-template-columns:repeat(3, 1fr); text-align:center; }
.stat{ padding:38px 16px; }
.stat + .stat{ border-left:1px solid var(--line); }
.stat .num{ font-size:clamp(26px, 3.6vw, 38px); color:var(--cream); }
.stat .num em{ font-style:normal; color:var(--accent); }
.stat .lbl{ margin-top:8px; font-size:12px; letter-spacing:.26em; text-transform:uppercase; color:var(--dim); }
#listen .head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:44px; }
#listen-fallback{ color:var(--dim); font-size:15px; display:none; }
#about .cols{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:start; }
#story .prose{ max-width:720px; }
.endorse{ margin-top:64px; padding-top:40px; border-top:1px solid var(--line); }
.endorse .lbl{
  font-size:11px; letter-spacing:.3em; text-transform:uppercase;
  color:var(--accent); text-align:center; margin-bottom:22px;
}
.endorse ul{
  list-style:none; display:flex; flex-wrap:wrap; justify-content:center;
  gap:14px 34px; max-width:860px; margin:0 auto;
}
.endorse li{ font-size:13px; letter-spacing:.18em; text-transform:uppercase; color:var(--dim); white-space:nowrap; }
.endorse-logos{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:16px; max-width:960px; margin:0 auto;
}
.endorse-logos .chip{
  display:flex; align-items:center; justify-content:center;
  width:150px; height:76px; padding:10px 18px;
  background:rgba(245,242,250,.92);
  border-radius:12px;
  opacity:.82;
  transition:opacity .2s, transform .2s, box-shadow .2s;
}
.endorse-logos .chip img{ max-width:100%; max-height:100%; object-fit:contain; display:block; }
.endorse-logos .chip:hover{ opacity:1; }
.endorse-logos a.chip{ cursor:pointer; }
.endorse-logos a.chip:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(var(--glow), .35);
}
#contact{ text-align:center; padding-bottom:70px; }
#contact .lede{ margin:0 auto; }
#contact .cta-row{ justify-content:center; margin-top:34px; }

/* ---------- Contact form ---------- */
.contact-form{ max-width:560px; margin:14px auto 0; text-align:left; }
.contact-form .hp{ position:absolute; left:-9999px; height:0; width:0; opacity:0; }
.contact-form label{
  display:block; font-size:12px; letter-spacing:.24em; text-transform:uppercase;
  color:var(--dim); margin:22px 0 9px;
}
.contact-form input:not([type=hidden]):not(.hp), .contact-form textarea{
  width:100%; padding:14px 16px; border-radius:14px;
  background:rgba(255,255,255,.04); border:1px solid var(--line);
  color:var(--cream); font:inherit; font-size:16px;
  transition:border-color .18s, box-shadow .18s;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none; border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(var(--glow), .18);
}
.contact-form textarea{ resize:vertical; min-height:130px; }
button.cta{ cursor:pointer; font-family:inherit; background:none; }
button.cta.primary{ border:0; background:var(--accent); }
button.cta[disabled]{ opacity:.6; cursor:default; transform:none; }
.form-note{ min-height:1.5em; margin-top:18px; color:var(--dim); font-size:15px; text-align:center; }
.form-note.ok{ color:var(--accent); }

/* ---------- Testimonials ---------- */
.quotes{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:16px; align-items:start;
}
.quotes.collapsed .quote:nth-child(n+7){ display:none; }
.quote{
  position:relative; margin:0;
  background:linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid var(--line); border-radius:16px;
  padding:24px 22px 20px;
}
.quote::before{
  content:"\201C";
  position:absolute; top:3px; left:15px;
  font-size:46px; line-height:1; color:var(--accent); opacity:.55;
}
.quote p{
  position:relative;
  color:var(--cream); font-size:14.5px; line-height:1.65;
}
.quote footer{ margin-top:14px; }
.quote footer b{ display:block; font-weight:400; color:var(--accent); font-size:14px; letter-spacing:.06em; }
.quote footer span{ display:block; margin-top:2px; color:var(--dim); font-size:12.5px; }
.quotes-more-row{ justify-content:center; margin-top:28px; }

/* ---------- Songwriter networks ---------- */
.nets{ list-style:none; display:flex; flex-wrap:wrap; gap:14px 34px; margin-top:44px; }
.nets li{ font-size:15px; letter-spacing:.22em; text-transform:uppercase; color:var(--cream); }
.nets + .gallery-peek{ margin-top:44px; }

@media (max-width:760px){
  .stats .wrap{ grid-template-columns:1fr; }
  .stat + .stat{ border-left:none; border-top:1px solid var(--line); }
  #about .cols{ grid-template-columns:1fr; gap:36px; }
}
@media (prefers-reduced-motion:reduce){
  .scroll-cue::after{ animation:none; }
}

/* ============================================================
   The dock — persistent frosted-glass player
   ============================================================ */
#dock{
  position:fixed; left:0; right:0; bottom:0; z-index:40;
  padding:0 14px;
  transform:translateY(120%);
  transition:transform .38s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}
#dock.on{ transform:none; pointer-events:auto; }
#dock .inner{
  position:relative; isolation:isolate;
  max-width:1060px; margin:0 auto 14px;
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel);
  display:flex; align-items:center; gap:14px;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
}
#dock-bg{
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center;
  filter:blur(44px) saturate(1.6);
  transform:scale(1.3);
}
#dock-tint{
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(rgba(18,13,28,.58), rgba(18,13,28,.78));
}
#dock .inner > *:not(#dock-bg):not(#dock-tint){ position:relative; z-index:1; }
#dock .art{
  width:52px; height:52px; flex:0 0 52px;
  border:1px solid var(--line); border-radius:6px;
  background:var(--bg); object-fit:cover;
}
#dock .meta{ min-width:0; width:200px; flex:0 1 auto; }
#dock .meta .t{ font-size:15px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
#dock .meta .a{ font-size:12.5px; color:var(--dim); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:2px; }
#dock .transport{ display:flex; align-items:center; gap:8px; flex:0 0 auto; }
#dock .btn{
  background:none; border:1px solid var(--line); color:var(--cream);
  width:34px; height:34px; border-radius:50%;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:border-color .15s, color .15s;
}
#dock .btn:hover{ border-color:var(--accent); color:var(--accent); }
#dock .btn:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
#dock .btn svg{ width:12px; height:12px; fill:currentColor; }
#dock .btn.play{ width:42px; height:42px; border-color:var(--accent); color:var(--accent); }
#dock .btn.play svg{ width:15px; height:15px; }
#dock .rail{
  position:relative; flex:1 1 auto; height:26px; cursor:pointer;
  display:flex; align-items:center; min-width:60px;
  touch-action:none;
}
#dock .rail:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:4px; }
#dock .groove{
  position:absolute; left:0; right:0; top:50%;
  height:4px; transform:translateY(-50%);
  background:rgba(0,0,0,.4); border-radius:2px;
}
#dock .fill{
  position:absolute; left:0; top:50%;
  height:4px; transform:translateY(-50%);
  width:0%;
  background:var(--accent); border-radius:2px;
}
#dock .thumb{
  position:absolute; top:50%; left:-5px;
  width:10px; height:22px; transform:translateY(-50%);
  background:var(--cream); border-radius:3px;
  box-shadow:0 2px 8px rgba(0,0,0,.5);
}
#dock .time{
  font-size:12.5px; color:var(--dim); letter-spacing:.06em;
  font-variant-numeric:tabular-nums; white-space:nowrap; flex:0 0 auto;
}
#dock .time b{ color:var(--cream); font-weight:400; }
body.has-dock > footer{ padding-bottom:120px; }
#dock .art, #dock .meta{ cursor:pointer; }
@media (max-width:700px){
  #dock .time{ display:none; }
  #dock .meta{ width:auto; flex:1 1 auto; }
  #dock .rail{ display:none; }
  #dock .inner{ gap:11px; padding:10px 14px; }
}
@media (prefers-reduced-motion:reduce){
  #dock{ transition:none; }
}
