/* ==========================================================================
   BAQUAS — Design tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --black:        #0a0a0b;
  --charcoal:     #17171a;
  --graphite:     #232326;
  --steel:        #3a3a3f;
  --silver:       #b7b7bd;
  --bone:         #ede9e2;
  --paper:        #f2efe9;

  --red:          #b91c34;
  --red-dim:      #7a1524;
  --purple:       #5a3b8c;
  --purple-dim:   #3a2660;
  --green:        #2f7d52;
  --green-dim:    #1f5638;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body{
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

::selection{ background: var(--red-dim); color: var(--bone); }

:focus-visible{
  outline: 1.5px solid var(--silver);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------------------------------------------------------------------- */
/* Texture — a faint grain layer over everything, cinematic not clean     */
/* ---------------------------------------------------------------------- */
.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------- */
/* Typography                                                              */
/* ---------------------------------------------------------------------- */
h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

.kicker{
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}

.eyebrow-line{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line::before{
  content: '';
  width: 28px;
  height: 1px;
  background: var(--silver);
  opacity: .55;
}

p{ margin: 0 0 1em; color: var(--silver); max-width: 62ch; }
p:last-child{ margin-bottom: 0; }

.lede{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--bone);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13.5px;
  letter-spacing: .06em;
  border: 1px solid var(--silver);
  color: var(--bone);
  background: transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn:hover{ background: var(--bone); color: var(--black); border-color: var(--bone); }

.btn.solid{
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
}
.btn.solid:hover{ background: transparent; color: var(--bone); }

.btn.accent-red:hover{ background: var(--red); border-color: var(--red); color: var(--bone); }
.btn.accent-purple:hover{ background: var(--purple); border-color: var(--purple); color: var(--bone); }
.btn.accent-green:hover{ background: var(--green); border-color: var(--green); color: var(--bone); }

.btn-row{ display: flex; flex-wrap: wrap; gap: 14px; }

.text-link{
  position: relative;
  padding-bottom: 3px;
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--bone);
  border-bottom: 1px solid var(--steel);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.text-link:hover{ border-color: var(--bone); }

/* ---------------------------------------------------------------------- */
/* Navigation                                                              */
/* ---------------------------------------------------------------------- */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  background: linear-gradient(to bottom, rgba(10,10,11,.75), transparent);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-nav.scrolled{
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(183,183,189,.12);
}

.wordmark{
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--bone);
}

.nav-links{
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.nav-links a::after{
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--bone);
  transition: right .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--bone); }
.nav-links a:hover::after, .nav-links a.active::after{ right: 0; }

.nav-toggle{
  display: none;
  background: none; border: none; color: var(--bone);
  width: 30px; height: 20px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ''; position: absolute; left: 0; width: 100%; height: 1px; background: var(--bone);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span{ top: 9px; }
.nav-toggle span::before{ top: -8px; }
.nav-toggle span::after{ top: 8px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span::after{ transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 0 0 0 auto; width: min(320px, 78vw);
    background: var(--charcoal);
    flex-direction: column;
    padding: 110px 40px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    border-left: 1px solid rgba(183,183,189,.12);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-toggle{ display: block; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-field{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(90,59,140,.16), transparent 60%),
    radial-gradient(ellipse 55% 45% at 78% 78%, rgba(185,28,52,.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(47,125,82,.10), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #101012 55%, #0a0a0b 100%);
}

.hero-vignette{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(0,0,0,.65) 100%);
}

.hero-inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 24px;
  animation: heroReveal 1.6s var(--ease) both;
}

@keyframes heroReveal{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-kicker{
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-word{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(64px, 15vw, 168px);
  letter-spacing: .01em;
  line-height: .92;
  background: linear-gradient(180deg, #fdfcfa 0%, #ede9e2 45%, #b7b7bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tag{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--bone);
}

.hero-scroll{
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--silver);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.hero-scroll .line{
  width: 1px; height: 42px;
  background: linear-gradient(var(--silver), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse{ 0%,100%{opacity:.25} 50%{opacity:1} }

/* ---------------------------------------------------------------------- */
/* Section scaffolding                                                    */
/* ---------------------------------------------------------------------- */
section{ position: relative; }

.section{
  padding: clamp(80px, 12vw, 150px) 0;
}
.section-charcoal{ background: var(--charcoal); }
.section-black{ background: var(--black); }

.section-head{
  margin-bottom: clamp(40px, 6vw, 70px);
  max-width: 620px;
}
.section-head h2{
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 14px;
}

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------- */
/* Release / music cards                                                  */
/* ---------------------------------------------------------------------- */
.release-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 760px){ .release-grid{ grid-template-columns: 1fr; } }

.release-card{
  position: relative;
  border: 1px solid rgba(183,183,189,.16);
  padding: 28px;
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.release-card:hover{ border-color: rgba(237,233,226,.4); }

.release-art{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 26px;
  background: var(--graphite);
}
.release-art img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .9s var(--ease);
  filter: saturate(.94);
}
.release-card:hover .release-art img{ transform: scale(1.035); }

.release-art::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55) 100%);
}

.release-glow-red .release-art{ box-shadow: inset 0 0 0 1px rgba(185,28,52,.0); }
.release-meta{ display:flex; align-items:baseline; justify-content:space-between; gap: 16px; margin-bottom: 10px;}
.release-meta .kicker{ color: var(--red); }
.release-glow-purple .release-meta .kicker{ color: var(--purple-dim); }

.release-title{ font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 6px; }
.release-date{ font-size: 13px; color: var(--silver); letter-spacing: .04em; }
.release-desc{ margin: 16px 0 22px; font-size: 14.5px; }

/* platform pill row */
.platform-row{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.platform-pill{
  font-size: 12px;
  letter-spacing: .04em;
  padding: 9px 16px;
  border: 1px solid rgba(183,183,189,.28);
  color: var(--silver);
  transition: all .3s var(--ease);
}
.platform-pill:hover{ color: var(--bone); border-color: var(--bone); }

/* ---------------------------------------------------------------------- */
/* About teaser (home)                                                    */
/* ---------------------------------------------------------------------- */
.about-teaser{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 860px){ .about-teaser{ grid-template-columns: 1fr; } }

.about-teaser-frame{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--graphite);
}
.about-teaser-frame img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.92);
}
.about-teaser-frame::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(90,59,140,.22), transparent 55%);
  mix-blend-mode: screen;
}
.about-teaser-frame .frame-tag{
  position: absolute; left: 18px; bottom: 18px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); opacity: .85;
  background: rgba(10,10,11,.55);
  padding: 6px 12px;
  backdrop-filter: blur(3px);
}

/* ---------------------------------------------------------------------- */
/* Artwork / visual identity                                              */
/* ---------------------------------------------------------------------- */
.artwork-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
@media (max-width: 860px){ .artwork-section{ grid-template-columns: 1fr; min-height: auto; } }

.artwork-visual{
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.artwork-visual img{
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.artwork-visual::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,10,11,.15), transparent 30%);
}

.artwork-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px);
  background: var(--charcoal);
}

/* ---------------------------------------------------------------------- */
/* Video grid                                                             */
/* ---------------------------------------------------------------------- */
.video-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (max-width: 900px){ .video-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .video-grid{ grid-template-columns: 1fr; } }

.video-tile{
  position: relative;
  aspect-ratio: 16/10;
  background: var(--graphite);
  overflow: hidden;
  cursor: pointer;
}
.video-tile img{
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.8) brightness(.75);
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.video-tile:hover img{ transform: scale(1.06); filter: saturate(1) brightness(.6); }

.video-tile .play{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.play-ring{
  width: 58px; height: 58px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.video-tile:hover .play-ring{ transform: scale(1.1); background: rgba(237,233,226,.1); }
.play-ring::before{
  content: '';
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--bone);
  margin-left: 4px;
}
.video-caption{
  position: absolute; left: 18px; bottom: 16px;
  font-size: 12.5px; letter-spacing: .04em;
  color: var(--bone);
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.video-tile.coming::after{
  content: 'Coming Soon';
  position: absolute; top: 16px; right: 16px;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(183,183,189,.4);
  padding: 5px 10px;
}

/* ---------------------------------------------------------------------- */
/* Signature line                                                          */
/* ---------------------------------------------------------------------- */
.signature-line{
  font-family: var(--serif);
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .02em;
  color: var(--bone);
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
}
.signature-line span{ position: relative; }
.signature-line span:not(:last-child)::after{
  content: '·';
  margin-left: 14px;
  color: var(--steel);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{
  background: var(--black);
  border-top: 1px solid rgba(183,183,189,.14);
  padding: 60px 0 34px;
}
.footer-top{
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 46px;
}
.footer-social{
  display: flex; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.footer-social a{
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.footer-social a:hover{ color: var(--bone); border-color: var(--bone); }

.footer-bottom{
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 11.5px; color: var(--steel); letter-spacing: .03em;
  border-top: 1px solid rgba(183,183,189,.1);
  padding-top: 24px;
}

/* ---------------------------------------------------------------------- */
/* Page hero (inner pages)                                                */
/* ---------------------------------------------------------------------- */
.page-hero{
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #0a0a0b 0%, #121214 100%);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-field{ opacity: .7; }
.page-hero-inner{ position: relative; z-index: 2; }
.page-hero h1{ font-size: clamp(40px, 7vw, 76px); margin-top: 16px; }

/* ---------------------------------------------------------------------- */
/* About page specific                                                    */
/* ---------------------------------------------------------------------- */
.about-grid{
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 900px){ .about-grid{ grid-template-columns: 1fr; } }

.about-photo-col{ position: sticky; top: 120px; align-self: start; }
@media (max-width: 900px){ .about-photo-col{ position: static; } }

.about-photo{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--graphite);
}
.about-photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(.9);
}
.about-photo-cap{
  margin-top: 16px;
  font-size: 12px; color: var(--steel); letter-spacing: .03em;
}

.bio-copy p{ max-width: 60ch; }
.bio-copy .lede{ margin-bottom: 30px; }
.bio-copy .pullquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 28px);
  color: var(--bone);
  border-left: 1px solid var(--red);
  padding-left: 26px;
  margin: 40px 0;
}

.signature-block{
  margin-top: 54px;
  padding-top: 40px;
  border-top: 1px solid rgba(183,183,189,.16);
}

/* ---------------------------------------------------------------------- */
/* Song landing pages                                                      */
/* ---------------------------------------------------------------------- */
.song-hero{
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.song-hero-bg{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.4) saturate(.85);
  transform: scale(1.04);
}
.song-hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.85) 78%, var(--black) 100%);
}
.song-hero-inner{
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
  padding-top: 90px;
}
@media (max-width: 820px){ .song-hero-inner{ grid-template-columns: 1fr; } }

.song-art{
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.song-art img{ width: 100%; height: 100%; object-fit: cover; }

.song-title{ font-size: clamp(38px, 6vw, 70px); margin: 16px 0 20px; }
.song-status{
  display: inline-block;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(183,183,189,.4);
  margin-bottom: 18px;
}

.platform-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
}
@media (max-width: 480px){ .platform-grid{ grid-template-columns: 1fr; } }

.platform-btn{
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  border: 1px solid rgba(183,183,189,.3);
  font-size: 13px; letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.platform-btn:hover{ border-color: var(--bone); background: rgba(237,233,226,.05); }
.platform-btn .arrow{ opacity: .6; transition: transform .3s var(--ease); }
.platform-btn:hover .arrow{ transform: translateX(4px); opacity: 1; }

.song-section{ padding: clamp(70px, 10vw, 120px) 0; }

/* ---------------------------------------------------------------------- */
/* Contact page                                                            */
/* ---------------------------------------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 800px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-block{ padding-bottom: 30px; border-bottom: 1px solid rgba(183,183,189,.14); margin-bottom: 30px; }
.contact-block:last-child{ border-bottom: none; }
.contact-block h3{ font-size: 21px; margin-bottom: 10px; }
.contact-block a.email{
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--bone);
  border-bottom: 1px solid var(--steel);
}
.contact-block a.email:hover{ border-color: var(--bone); }

/* ---------------------------------------------------------------------- */
/* Misc                                                                    */
/* ---------------------------------------------------------------------- */
.divider-brush{
  height: 2px;
  margin: 0 auto;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(185,28,52,.5) 20%, rgba(90,59,140,.5) 50%, rgba(47,125,82,.5) 80%, transparent);
  opacity: .5;
}

.tag-list{ display:flex; flex-wrap:wrap; gap: 10px 0; }

/* ---------------------------------------------------------------------- */
/* Catalog numbering                                                       */
/* ---------------------------------------------------------------------- */
.cat-no{
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--steel);
}

/* ---------------------------------------------------------------------- */
/* Custom audio player                                                     */
/* ---------------------------------------------------------------------- */
.player{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(183,183,189,.24);
  background: rgba(237,233,226,.03);
}

.player-btn{
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--bone);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  transition: background .3s var(--ease), transform .2s var(--ease);
  position: relative;
}
.player-btn:hover{ background: rgba(237,233,226,.1); }
.player-btn:active{ transform: scale(.94); }

.player-btn .icon-play,
.player-btn .icon-pause{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s var(--ease);
}
.player-btn .icon-pause{ opacity: 0; }
.player.is-playing .player-btn .icon-play{ opacity: 0; }
.player.is-playing .player-btn .icon-pause{ opacity: 1; }

.icon-play::before{
  content: '';
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--bone);
  margin-left: 3px;
}
.icon-pause::before, .icon-pause::after{
  content: '';
  width: 4px; height: 15px;
  background: var(--bone);
  display: block;
}
.icon-pause{ gap: 4px; }
.icon-pause::after{ margin-left: 4px; }

.player-body{ flex: 1 1 auto; min-width: 0; }

.player-meta{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
  font-size: 12px; letter-spacing: .04em; color: var(--silver);
}
.player-meta .player-title{ color: var(--bone); font-family: var(--serif); font-size: 14.5px; letter-spacing: 0; }

.player-track{
  position: relative;
  height: 3px;
  background: rgba(183,183,189,.22);
  cursor: pointer;
}
.player-progress{
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--bone);
  pointer-events: none;
}
.player-track:hover .player-progress{ background: var(--red); }

.player-time{
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--steel); letter-spacing: .04em;
  margin-top: 7px;
}

/* Compact variant for cards */
.player.compact{ padding: 12px 14px; gap: 14px; }
.player.compact .player-btn{ width: 38px; height: 38px; }
.player.compact .player-meta{ margin-bottom: 6px; }

/* ---------------------------------------------------------------------- */
/* Platform buttons — pending (not yet live) state                        */
/* ---------------------------------------------------------------------- */
.platform-btn.is-pending{
  cursor: default;
  color: var(--steel);
  border-color: rgba(183,183,189,.16);
}
.platform-btn.is-pending:hover{
  border-color: rgba(183,183,189,.16);
  background: none;
}
.platform-btn.is-pending .arrow{ display: none; }
.platform-btn .pending-tag{
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
}
.platform-note{
  font-size: 12px;
  color: var(--steel);
  margin-top: 14px;
}
.platform-toast{
  display: inline-block;
  font-size: 11.5px;
  color: var(--bone);
  opacity: 0;
  margin-left: 10px;
  transition: opacity .3s var(--ease);
}
.platform-toast.show{ opacity: .8; }

.download-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--silver);
  border-bottom: 1px solid var(--steel);
  margin-top: 18px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.download-link:hover{ color: var(--bone); border-color: var(--bone); }

/* ---------------------------------------------------------------------- */
/* Catalog footer note (home / music)                                     */
/* ---------------------------------------------------------------------- */
.catalog-note{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(183,183,189,.14);
  color: var(--steel);
  font-size: 13px;
}
