/* ============================================================
   DIXIE D'AMELIO — artist site
   Cream + red-orange editorial, cinematic dark music sections.
   Fraunces (display) + Inter (body).
============================================================ */
:root {
  --cream:     #FFFFFF;   /* white */
  --cream-hi:  #FFFFFF;
  --cream-lo:  #F2F2F2;   /* light grey alt sections */
  --ink:       #0D0D0D;   /* near-black */
  --ink-2:     #555555;
  --ink-3:     #6E6E6E;   /* muted grey — darkened to pass WCAG AA contrast on white */
  --accent:    #0D0D0D;   /* monochrome — black is the accent */
  --dark:      #0A0A0A;   /* black sections */
  --line:      rgba(13, 13, 13, 0.16);
  --line-soft: rgba(13, 13, 13, 0.07);

  --serif: "Bricolage Grotesque", "Inter", system-ui, sans-serif;  /* display */
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1340px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 12vw, 170px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 100px; }
body {
  background: var(--cream); color: var(--ink);
  font-family: var(--sans); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

/* ---------- type ---------- */
.kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-2); }
.kicker--light { color: rgba(255,255,255,0.55); }
.dot { color: var(--ink); margin: 0 0.4em; }

/* ============================================================ ACCESSIBILITY */
/* Visible keyboard focus on every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px;
}
/* On dark surfaces, focus ring must be light to stay visible */
.section--dark a:focus-visible, .section--dark button:focus-visible, .section--dark input:focus-visible,
.lightbox a:focus-visible, .lightbox button:focus-visible {
  outline-color: #fff;
}
/* Skip-to-content link: hidden until focused by keyboard */
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 300;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }
.h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.7rem, 6.2vw, 5.4rem); line-height: 0.98; letter-spacing: -0.03em; color: var(--ink); }
.h2--light { color: var(--cream-hi); }
h2.h2--light em { color: inherit; }
.h2 em { font-style: normal; font-weight: 700; color: var(--accent); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--ink-2); max-width: 46ch; }
.lead--light { color: rgba(248,242,231,0.78); }
.body { font-size: 1.02rem; line-height: 1.75; color: var(--ink-2); max-width: 50ch; margin-top: 16px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-hi); background: var(--ink); padding: 1.05em 2em; border-radius: 100px; transition: transform .4s var(--ease), background .4s var(--ease); }
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream-hi); }
.btn--ghost-light { background: transparent; color: var(--cream-hi); border: 1px solid rgba(248,242,231,0.4); }
.btn--ghost-light:hover { background: var(--cream-hi); color: var(--ink); border-color: var(--cream-hi); }

/* ---------- sections ---------- */
.section { padding: var(--section-y) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.section--alt { padding: var(--section-y) var(--gutter); background: var(--cream-lo); }
.section--dark { padding: var(--section-y) var(--gutter); background: var(--dark); }
/* hairline break between adjacent dark sections (First Listen → Videos) */
.section--dark + .section--dark { position: relative; }
.section--dark + .section--dark::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(var(--maxw), calc(100% - 2 * var(--gutter))); height: 1px; background: rgba(255,255,255,0.16); }
.section__head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 84px); text-align: center; }
.section__head .kicker { display: block; margin-bottom: 16px; }
.section__head .lead { margin: 18px auto 0; }

/* ============================================================ NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line); box-shadow: 0 3px 18px rgba(26,23,20,0.05);
  transition: box-shadow .5s var(--ease); }
.nav.scrolled { box-shadow: 0 6px 24px rgba(26,23,20,0.09); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(16px,2.2vw,26px) var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 19px; width: auto; display: block; }
.nav__links { display: flex; gap: clamp(18px, 2.2vw, 36px); }
.nav__links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .4s var(--ease); }
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: var(--accent); color: #fff; border-radius: 100px; padding: 0.7em 1.5em; transition: transform .4s var(--ease), background .4s; white-space: nowrap; }
.nav__cta:hover { background: var(--ink); transform: translateY(-2px); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: transform .4s var(--ease); }
.nav__burger span:first-child { top: 4px; } .nav__burger span:last-child { bottom: 4px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; background: #FFFFFF; padding: 0 var(--gutter); max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), padding .5s var(--ease); }
.nav__mobile a { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.nav__mobile.open { max-height: 75vh; padding: 16px var(--gutter) 30px; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(24px,4vw,64px); padding: clamp(150px,18vh,220px) var(--gutter) clamp(40px,6vh,80px); max-width: var(--maxw); margin: 0 auto; }
.hero__kicker { margin-bottom: clamp(20px,3vh,32px); }
.hero__name { font-family: var(--serif); font-weight: 800; line-height: 0.9; letter-spacing: -0.045em; color: var(--ink); display: flex; flex-direction: column; }
.hero__name span { font-size: clamp(3.8rem, 11vw, 9.5rem); }
.hero__name-accent { font-style: normal; font-weight: 800; color: var(--accent); }
.hero__sub { font-size: clamp(1rem,1.3vw,1.2rem); color: var(--ink-2); max-width: 40ch; margin-top: clamp(20px,3vh,30px); line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px,4vh,40px); }
.hero__photo { position: relative; align-self: stretch; min-height: 60vh; }
.photo-credit { position: absolute; bottom: 8px; right: 9px; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.42); padding: 3px 8px; border-radius: 3px; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 4px; filter: drop-shadow(0 30px 60px rgba(26,23,20,0.22)); }

/* ============================================================ STATS BAND */
.stats {
  background: var(--dark);
  padding: clamp(44px, 6vw, 72px) var(--gutter);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
  gap: 10px;
}
.stats__item + .stats__item {
  border-left: 1px solid rgba(255,255,255,0.16);
}
.stats__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.stats__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .stats__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 5vw, 44px) 0;
  }
  .stats__item + .stats__item {
    border-left: none;
  }
  .stats__item:nth-child(3n+2),
  .stats__item:nth-child(3n+3) {
    border-left: 1px solid rgba(255,255,255,0.16);
  }
  .stats__item:nth-child(4),
  .stats__item:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: clamp(28px, 5vw, 44px);
  }
}
@media (max-width: 560px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 5vw, 40px) 0;
  }
  .stats__item + .stats__item {
    border-left: none;
  }
  .stats__item:nth-child(2n) {
    border-left: 1px solid rgba(255,255,255,0.16);
  }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4),
  .stats__item:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: clamp(24px, 5vw, 40px);
  }
  /* 5th item: center it alone in the last row */
  .stats__item:nth-child(5) {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

/* ============================================================ MUSIC */

/* ============================================================ VIDEOS (dark) */
.vidgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,28px); max-width: var(--maxw); margin: 0 auto; }
.vid { display: flex; flex-direction: column; gap: 12px; }
.vid__thumb { position: relative; display: block; aspect-ratio: 16/9; background-size: cover; background-position: center; border-radius: 6px; overflow: hidden; transition: transform .45s var(--ease); }
.vid:hover .vid__thumb { transform: translateY(-4px); }
.vid__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45)); opacity: 0; transition: opacity .4s; }
.vid:hover .vid__thumb::after { opacity: 1; }
.vid__play { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.94); color: var(--ink); border-radius: 100px; font-size: 0.9rem; padding-left: 3px; transform: scale(0.8); opacity: 0; transition: transform .4s var(--ease), opacity .4s; z-index: 2; }
.vid:hover .vid__play { transform: scale(1); opacity: 1; }
.vid__title { font-family: var(--serif); font-size: 1.05rem; color: var(--cream-hi); }
.videos__more { text-align: center; margin-top: clamp(40px,5vw,64px); }

/* ============================================================ TOUR */
.tour { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0 !important; max-width: none; }
.tour__media { position: absolute; inset: 0; z-index: 0; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 32%; display: block; }
.tour__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.68) 38%, rgba(10,10,10,0.22) 70%, rgba(10,10,10,0.05) 100%);
}
.tour__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px,9vw,110px) var(--gutter) clamp(64px,9vw,110px);
}
.tour__content .kicker { display: block; margin-bottom: 16px; }
.tour__content .h2 { max-width: 20ch; }
.tour__content .lead { margin: 22px 0 0; max-width: 48ch; }
.tour__content .btn { margin-top: clamp(24px,3vw,36px); }
.tour__credit { z-index: 3; }

/* ============================================================ THE SHOW */
.show__head { max-width: 720px; margin: 0 auto clamp(40px,5vw,64px); text-align: center; }
.show__head .kicker { display: block; margin-bottom: 18px; }
.show__head .lead { margin: 0 auto; }
.show__logo { width: 100%; max-width: 420px; height: auto; display: block; margin: 0 auto 26px; mix-blend-mode: multiply; }
.show__yt { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.yt-logo { display: inline-block; width: 40px; height: 28px; color: var(--ink); }
.yt-logo svg { display: block; width: 100%; height: 100%; }

.show__featured { max-width: 940px; margin: 0 auto clamp(40px,5vw,60px); }
.show__featured-frame { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #000; box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.show__featured-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.show__featured-cap { margin-top: 14px; text-align: center; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

.ep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,1.8vw,26px); max-width: var(--maxw); margin: 0 auto; }
.ep-grid--sm { grid-template-columns: repeat(4, 1fr); }
.ep { display: flex; flex-direction: column; gap: 11px; cursor: pointer; }
.ep__thumb { position: relative; display: block; aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--cream-lo); border-radius: 6px; overflow: hidden; transition: transform .45s var(--ease); }
.ep:hover .ep__thumb { transform: translateY(-4px); }
.ep__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.16); opacity: 0; transition: opacity .4s; }
.ep:hover .ep__thumb::after { opacity: 1; }
.ep__play { position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(13,13,13,0.9); color: #fff; border-radius: 100px; font-size: 0.82rem; padding-left: 3px; transform: scale(0.78); opacity: 0; transition: transform .4s var(--ease), opacity .4s; z-index: 2; }
.ep:hover .ep__play { transform: scale(1); opacity: 1; }
.ep__title { font-family: var(--serif); font-weight: 600; font-size: 0.98rem; line-height: 1.25; color: var(--ink); }

/* ============================================================ VIDEO LIGHTBOX */
body.noscroll { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(16px,4vw,56px); background: rgba(8,8,8,0.92); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner { width: 100%; max-width: 1040px; }
.lightbox__frame { position: relative; aspect-ratio: 16/9; width: 100%; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__close { position: absolute; top: clamp(14px,2.5vw,28px); right: clamp(14px,2.5vw,32px); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 2rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.1); border: 0; border-radius: 100px; cursor: pointer; transition: background .3s; }
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__yt { display: inline-block; margin-top: 16px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.lightbox__yt:hover { color: #fff; }

/* ============================================================ VAULT / FIRST LISTEN (dark) */
.vault__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(40px,6vw,90px); max-width: var(--maxw); margin: 0 auto; }
.vault__copy .h2 { margin: 16px 0 20px; }
.vault__form { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.vault__input { flex: 1; min-width: 220px; background: rgba(248,242,231,0.07); border: 1px solid rgba(248,242,231,0.25); color: var(--cream-hi); padding: 1.05em 1.3em; border-radius: 100px; font-family: var(--sans); font-size: 0.95rem; }
.vault__input::placeholder { color: rgba(248,242,231,0.45); }
.vault__input:focus { border-color: #fff; }
.vault__input:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.vault__hp { display: none; }
.vault__note { font-size: 0.8rem; color: rgba(248,242,231,0.5); margin-top: 14px; }
/* --- 20s unreleased previews (audio wired later via data-audio) --- */
.vault__tracks { display: flex; flex-direction: column; gap: 12px; }
.pv { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: rgba(248,242,231,0.05); border: 1px solid rgba(248,242,231,0.12); border-radius: 10px; }
.pv__play { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; padding-left: 2px; background: rgba(255,255,255,0.94); color: var(--ink); border: 0; border-radius: 100px; font-size: 0.72rem; cursor: pointer; transition: transform .3s var(--ease), background .3s; }
.pv__play:hover { transform: scale(1.06); }
.pv[data-audio=""] .pv__play { background: rgba(248,242,231,0.18); color: rgba(248,242,231,0.5); cursor: default; }
.pv[data-audio=""] .pv__play:hover { transform: none; }
.pv__title { font-family: var(--serif); font-weight: 600; font-size: 0.95rem; color: rgba(248,242,231,0.85); white-space: nowrap; }
.pv__bar { flex: 1; height: 4px; background: rgba(248,242,231,0.15); border-radius: 2px; overflow: hidden; }
.pv__fill { display: block; width: 0; height: 100%; background: #fff; border-radius: 2px; transition: width .2s linear; }
.pv__time { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(248,242,231,0.5); font-variant-numeric: tabular-nums; }
.vault__tracks-note { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,242,231,0.4); margin-top: 4px; text-align: center; }
/* gated (pre-signup) state */
.vault__tracks.gated .pv { opacity: 0.55; }
.vault__tracks.gated .pv__play { background: rgba(248,242,231,0.18); color: rgba(248,242,231,0.5); }
.vault__tracks.gated .pv__play:hover { transform: none; }
.vault__input.pulse { animation: inputPulse 0.9s var(--ease); }
@keyframes inputPulse { 0%, 100% { border-color: rgba(248,242,231,0.25); } 30% { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.15); } }

/* ============================================================ ABOUT */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(36px,6vw,90px); }
.about__photo { position: relative; }
.about__photo img { width: 100%; max-width: 520px; border-radius: 4px; filter: drop-shadow(0 30px 60px rgba(26,23,20,0.18)); }
.about__photo .photo-credit { right: auto; left: 9px; }
.about__copy .h2 { margin: 16px 0 24px; }
.pullquote { font-family: var(--serif); font-style: normal; font-weight: 600; font-size: clamp(1.4rem,2.2vw,1.95rem); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); margin-top: 34px; padding-left: 24px; border-left: 3px solid var(--accent); max-width: 38ch; }

/* Spotify players */
.music__players { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); max-width: var(--maxw); margin: 0 auto; }
.music__players iframe { display: block; box-shadow: 0 20px 50px rgba(26,23,20,0.18); }

/* ============================================================ FASHION */
.fashion__press { max-width: 680px; margin: 0 auto clamp(44px,5vw,64px); text-align: center; }
.fashion__press-label, .fashion__brands-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.press-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.press-list li { display: flex; align-items: baseline; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--line); }
.press-list li:first-child { border-top: 1px solid var(--line); }
.press-list__pub { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.press-list__detail { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.fashion__press-also { margin-top: 22px; font-size: 0.95rem; color: var(--ink-2); }
.fashion__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,1.4vw,18px); max-width: var(--maxw); margin: 0 auto; }
.fashion__gallery figure { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px; background: var(--cream-lo); margin: 0; }
.fashion__gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.fashion__gallery figure:hover img { transform: scale(1.03); }
.fashion__gallery figcaption { position: absolute; bottom: 8px; right: 9px; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.42); padding: 3px 8px; border-radius: 3px; }
.fashion__brands { max-width: 780px; margin: clamp(44px,5vw,64px) auto 0; text-align: center; }
.fashion__brands-list { font-family: var(--serif); font-size: clamp(1.15rem,1.9vw,1.55rem); line-height: 1.55; color: var(--ink); }

/* ============================================================ LISTEN / CONNECT */
.listen__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.listen__inner .kicker { display: block; margin-bottom: 16px; }
.listen__inner .h2 { margin-bottom: 40px; }
.dsp { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.dsp__btn { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.9em 1.6em; border: 1px solid var(--ink); border-radius: 100px; transition: background .4s var(--ease), color .4s var(--ease); }
.dsp__btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.listen__social { display: flex; justify-content: center; gap: 14px; margin-bottom: 36px; }
.soc { width: 46px; height: 46px; border-radius: 100px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: background .4s var(--ease), color .4s, border-color .4s, transform .4s var(--ease); }
.soc svg { width: 21px; height: 21px; }
.soc:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.listen__contact { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.connect__row-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.listen__email { font-family: var(--serif); font-style: normal; font-weight: 600; font-size: clamp(1.4rem,2.4vw,2rem); color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .4s var(--ease); }
.listen__email:hover { border-color: var(--accent); }

/* ============================================================ FOOTER */
.footer { background: var(--dark); color: var(--cream-hi); padding: clamp(40px,6vw,64px) var(--gutter); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__brand { display: inline-flex; align-items: center; }
.footer__logo { height: 20px; width: auto; display: block; filter: invert(1); }
.footer__nav { display: flex; gap: clamp(16px,2.4vw,34px); flex-wrap: wrap; justify-content: center; }
.footer__nav a { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--cream-hi); opacity: 0.8; transition: opacity .3s, color .3s; }
.footer__nav a:hover { opacity: 1; color: var(--accent); }
.footer__copy { font-size: 0.78rem; opacity: 0.55; }
.footer__mail { max-width: var(--maxw); margin: clamp(28px,3.5vw,40px) auto 0; padding-top: clamp(24px,3vw,32px); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer__mail-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-hi); opacity: 0.45; }
.footer__mail-addr { font-size: 0.82rem; line-height: 1.7; color: var(--cream-hi); opacity: 0.7; }

/* ============================================================ MOTION */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero__kicker, .hero__name span, .hero__sub, .hero__cta, .hero__photo { opacity: 0; transform: translateY(26px); }
body.loaded .hero__kicker { animation: rise .9s var(--ease) .1s forwards; }
body.loaded .hero__name span:first-child { animation: rise 1s var(--ease) .22s forwards; }
body.loaded .hero__name span:last-child { animation: rise 1s var(--ease) .34s forwards; }
body.loaded .hero__sub { animation: rise .9s var(--ease) .5s forwards; }
body.loaded .hero__cta { animation: rise .9s var(--ease) .62s forwards; }
body.loaded .hero__photo { animation: riseFig 1.3s var(--ease) .3s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes riseFig { from { opacity: 0; transform: translateY(36px) scale(1.02); } to { opacity: 1; transform: none; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; } .nav__mobile { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; gap: 30px; }
  .hero__photo { order: 2; min-height: 56vh; max-height: 600px; }
  .hero__copy { order: 1; }
  .vidgrid { grid-template-columns: repeat(2, 1fr); }
  .ep-grid, .ep-grid--sm { grid-template-columns: repeat(2, 1fr); }
  .fashion__gallery { grid-template-columns: repeat(2, 1fr); }
  .show__inner, .vault__inner, .about { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { order: 2; max-width: 440px; margin: 0 auto; }
  .music__players { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vidgrid { grid-template-columns: 1fr; }
  .ep-grid, .ep-grid--sm { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fashion__gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .press-list li { flex-direction: column; gap: 2px; }
  .ep__title { font-size: 0.86rem; }
  .footer__inner { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__kicker,.hero__name span,.hero__sub,.hero__cta,.hero__photo { opacity: 1; transform: none; animation: none; }
}

/* One-word mood tag on preview rows */
.pv__mood { font-style: italic; font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(248,242,231,0.45); white-space: nowrap; }

/* Anchor tall portraits to the top of the 4/5 frame so faces never crop */
.fashion__gallery img.pos-top { object-position: center 8%; }

/* Spotify Top 10 (Claude Design layout) */
/* Spotify players — top 10 track grid */
.music__grid { max-width: 1180px; margin: 0 auto; }
.music__col-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin-bottom: clamp(20px, 3vw, 36px); }
.music__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px clamp(24px, 3vw, 48px); }
.music__row { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 14px; }
.music__num { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink-3); letter-spacing: 0.02em; border-top: 1px solid var(--line-soft); padding-top: 6px; align-self: start; margin-top: 18px; }
.music__row iframe { display: block; }
.music__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px); }


@media (max-width: 900px) {
  .music__list { grid-template-columns: 1fr; }
}

/* One-tap track hearts */
.pv__love { background: none; border: 0; cursor: pointer; font-size: 0.95rem; color: rgba(248,242,231,0.28); transition: color .3s var(--ease), transform .3s var(--ease); padding: 4px 6px; flex: none; }
.pv__love:hover { color: rgba(248,242,231,0.7); transform: scale(1.15); }
.pv.loved .pv__love { color: #fff; }
