@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&display=swap");

:root {
  --bg: #0b0d0f;
  --bg-soft: #12100e;
  --panel: rgba(19, 16, 14, .76);
  --panel-strong: rgba(9, 10, 11, .88);
  --text: #f2e6d0;
  --muted: #bba98e;
  --gold: #d7b778;
  --gold-deep: #9b7650;
  --bronze: #6c4b2f;
  --line: rgba(215, 183, 120, .26);
  --shadow: 0 28px 90px rgba(0, 0, 0, .55);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", "Segoe Script", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #111;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9,10,11,.94), rgba(9,10,11,.62) 45%, rgba(9,10,11,.92)),
    radial-gradient(circle at 24% 20%, rgba(215,183,120,.22), transparent 34%),
    url('../img/lily-cover.jpeg') center right / cover no-repeat;
  filter: saturate(.9);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,15,.1), rgba(11,13,15,.86));
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .12;
  background-image:
    repeating-radial-gradient(circle at 17% 23%, rgba(255,255,255,.18) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }

.topbar {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, .42);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
  transform: translateY(0);
  opacity: 1;
  transition: transform .42s ease, opacity .32s ease, box-shadow .32s ease, background .32s ease;
  will-change: transform, opacity;
}

.topbar.is-hidden {
  transform: translateY(calc(-100% - 38px));
  opacity: 0;
  pointer-events: none;
}

.topbar.is-pinned,
.topbar:hover,
.topbar:focus-within {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .topbar { transition: none; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(215,183,120,.14);
  background: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.04);
}

.brand-logo {
  display: block;
  width: clamp(112px, 10vw, 132px);
  height: auto;
  border-radius: 16px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 6px 14px rgba(215,183,120,.08));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.brand-copy em {
  color: var(--muted);
  font-size: .66rem;
  font-style: normal;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--muted);
  font-size: .9rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(215,183,120,.1);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .72fr);
  align-items: center;
  gap: 48px;
  padding: 86px 0 58px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  margin: 0 0 16px;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(5.2rem, 16vw, 13rem);
  line-height: .76;
  margin-bottom: 28px;
  color: #f7dfaa;
  text-shadow: 0 18px 70px rgba(0,0,0,.62);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: .92;
  margin-bottom: 18px;
}

.lead {
  max-width: 620px;
  color: #dfcfb5;
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: #14100b;
  background: linear-gradient(135deg, #ffe7aa, var(--gold) 55%, #91693f);
  box-shadow: 0 16px 46px rgba(215,183,120,.22);
}

.btn.ghost {
  color: var(--text);
  background: rgba(255,255,255,.055);
}

.cover-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(215,183,120,.18), transparent 28%);
  animation: halo 9s linear infinite;
}

.cover-card img,
.cover-caption {
  position: relative;
  z-index: 1;
}

.cover-card img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.02) saturate(.9);
}

.cover-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 8px 4px;
  color: var(--muted);
}

.cover-caption span {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 1.4rem;
}

.player-section {
  padding: 54px 0 70px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}


.section-title-player {
  max-width: 980px;
}

.eyebrow-player {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: .46em;
  line-height: 1.15;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.player-title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px auto 18px;
  color: rgba(215,183,120,.9);
}

.player-title-ornament::before,
.player-title-ornament::after {
  content: "";
  width: clamp(74px, 12vw, 132px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,183,120,.82), transparent);
  box-shadow: 0 0 16px rgba(215,183,120,.16);
}

.player-title-ornament span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  font-size: 1.3rem;
  line-height: 1;
  position: relative;
}

.player-title-ornament span::before,
.player-title-ornament span::after {
  content: "❦";
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  font-size: .92rem;
  color: rgba(215,183,120,.72);
}

.player-title-ornament span::before {
  right: calc(100% + 10px);
}

.player-title-ornament span::after {
  left: calc(100% + 10px);
}

.player-shell {
  position: relative;
  display: grid;
  place-items: center;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 14%, rgba(215,183,120,.16), transparent 34%),
    linear-gradient(135deg, rgba(17,14,12,.9), rgba(5,6,8,.86));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-shell::before,
.player-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.player-shell::before {
  width: 340px;
  height: 340px;
  top: -180px;
  left: -90px;
  background: rgba(215,183,120,.1);
  filter: blur(8px);
}

.player-shell::after {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -220px;
  background: rgba(110,75,47,.32);
  filter: blur(10px);
}

.gramophone-wrap,
.now-playing,
.turntable-controls,
.playlist,
.player-note {
  position: relative;
  z-index: 1;
}

.gramophone-wrap {
  width: min(500px, 92vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 8px auto 0;
}

.gramophone {
  position: relative;
  width: 100%;
  height: 100%;
  --arm-angle: -71;
  --vu-angle: -64deg;
  filter: drop-shadow(0 32px 42px rgba(0,0,0,.44));
}

.gramophone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.01) 16%, rgba(0,0,0,.12) 18%, rgba(0,0,0,.03) 100%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 12%);
  pointer-events: none;
  z-index: 0;
}

.gramophone::after {
  content: "";
  position: absolute;
  inset: 14% 13% 14% 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.02) 0 44%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.vu-meter {
  position: absolute;
  z-index: 3;
  left: 4.8%;
  top: 4.9%;
  width: 24.2%;
  aspect-ratio: 4 / 3;
  background: url('../img/vu-meter-realistic.png') center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.14));
  overflow: visible;
}

.vu-meter::before,
.vu-meter-scale,
.vu-meter-scale::before,
.vu-meter-scale::after,
.vu-meter-label,
.vu-meter-pivot {
  display: none;
}

.vu-meter-needle {
  position: absolute;
  left: 49.95%;
  bottom: 25.15%;
  width: 1px;
  height: 46.2%;
  transform-origin: 50% calc(100% - 1px);
  transform: translateX(-50%) rotate(var(--vu-angle));
  background: linear-gradient(180deg, rgba(63,43,30,.78) 0%, rgba(24,15,10,.92) 100%);
  border-radius: 999px;
  box-shadow: 0 1px 1px rgba(0,0,0,.12);
}

.vu-meter-needle::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 1px;
  height: 6px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b58b59, #65452f);
  border-radius: 999px;
}

.platter {
  position: absolute;
  z-index: 1;
  width: 66%;
  aspect-ratio: 1;
  left: 18%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.12), transparent 28%),
    radial-gradient(circle at 65% 70%, rgba(0,0,0,.12), transparent 32%),
    repeating-radial-gradient(circle, rgba(255,255,255,.025) 0 2px, rgba(90,90,90,.02) 3px 5px),
    radial-gradient(circle, #737373 0%, #686868 48%, #5f5f5f 72%, #545454 100%);
  box-shadow:
    inset 0 3px 12px rgba(255,255,255,.08),
    inset 0 -10px 18px rgba(0,0,0,.16),
    0 10px 20px rgba(0,0,0,.18);
}

.platter::before {
  content: "";
  position: absolute;
  inset: 3.5%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02), transparent 58%),
    repeating-radial-gradient(circle, rgba(255,255,255,.01) 0 1px, rgba(0,0,0,.015) 2px 4px),
    radial-gradient(circle, #787878 0%, #6f6f6f 60%, #656565 100%);
  opacity: .92;
}

.platter::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 0 0 8px rgba(0,0,0,.08);
}

.record {
  position: absolute;
  z-index: 2;
  width: 54.5%;
  aspect-ratio: 1;
  left: 23.75%;
  top: 23.75%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.05) 0 1%, transparent 2%),
    radial-gradient(circle, rgba(255,255,255,.02) 0 13%, transparent 14%),
    repeating-radial-gradient(circle, #080808 0 3px, #010101 4px 7px, #111111 8px 10px),
    conic-gradient(from 25deg, #020202, #111111, #030303, #0b0b0b, #020202);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,.08),
    0 24px 34px rgba(0,0,0,.48),
    0 0 0 14px rgba(24,24,24,.98),
    0 0 0 16px rgba(0,0,0,.55);
  transform-origin: center;
}

.player-shell.is-playing .record {
  animation: spin 2.7s linear infinite;
}

.record::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: inherit;
  background:
    radial-gradient(circle, transparent 72%, rgba(255,255,255,.05) 73%, rgba(255,255,255,.01) 76%, transparent 78%),
    radial-gradient(circle, rgba(32,32,32,.92) 0 76%, #0f0f0f 77%, #040404 82%, transparent 83%);
  z-index: -1;
}

.record::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 22%, transparent 76%, rgba(255,255,255,.035));
  mix-blend-mode: screen;
  opacity: .42;
  pointer-events: none;
}

.record-groove {
  position: absolute;
  inset: 13%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 16px rgba(255,255,255,.018),
    0 0 0 32px rgba(255,255,255,.012),
    0 0 0 48px rgba(255,255,255,.008);
}

.record-label {
  position: absolute;
  inset: calc(36% - 2.5px);
  border-radius: inherit;
  background:
    linear-gradient(rgba(17,12,8,.2), rgba(17,12,8,.28)),
    url('../img/lily-cover.jpeg') center / cover;
  border: 2px solid rgba(215,183,120,.42);
  box-shadow: inset 0 0 18px rgba(0,0,0,.45);
}

.record-hole {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #070707;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  box-shadow: 0 0 0 2px rgba(255,255,255,.12), 0 0 0 7px rgba(215,183,120,.12);
}

.spindle-cap {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8d29a, #8b6b42 68%, #3a291a 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
}

.plinth {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,237,206,.08), rgba(255,255,255,0) 26%),
    radial-gradient(circle at 16% 14%, rgba(198,151,104,.18), transparent 22%),
    repeating-linear-gradient(
      176deg,
      rgba(88,56,37,.10) 0 2px,
      rgba(57,34,22,.02) 2px 6px,
      rgba(116,75,49,.08) 6px 8px,
      rgba(49,30,20,.03) 8px 14px
    ),
    linear-gradient(180deg, #5b3928 0%, #442b1f 42%, #261813 100%);
  border: 1px solid rgba(215,183,120,.22);
  box-shadow:
    inset 0 18px 32px rgba(255,255,255,.06),
    inset 0 -22px 28px rgba(0,0,0,.38),
    0 26px 42px rgba(0,0,0,.36);
}

.plinth::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(215,183,120,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 14%),
    repeating-linear-gradient(
      178deg,
      rgba(255,255,255,.035) 0 1px,
      rgba(0,0,0,0) 1px 11px,
      rgba(58,35,24,.05) 11px 13px,
      rgba(0,0,0,0) 13px 22px
    ),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.018), transparent 54%);
  opacity: .9;
}

.plinth::after {
  content: "";
  position: absolute;
  width: 126px;
  height: 24px;
  left: 26px;
  top: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 14px 12px, #e2bf77 0 4px, transparent 5px),
    radial-gradient(circle at 42px 12px, #7b5330 0 4px, transparent 5px),
    radial-gradient(circle at 70px 12px, rgba(255,255,255,.24) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(255,255,255,.04));
  box-shadow: inset 0 0 0 1px rgba(215,183,120,.14);
}

.player-shell.is-playing .plinth::after {
  background:
    radial-gradient(circle at 14px 12px, #f6d48a 0 4px, rgba(246,212,138,.45) 5px, transparent 8px),
    radial-gradient(circle at 42px 12px, #7b5330 0 4px, transparent 5px),
    radial-gradient(circle at 70px 12px, rgba(255,255,255,.24) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(255,255,255,.04));
}

.turntable-badge {
  position: absolute;
  right: 8.5%;
  bottom: 9%;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 12px;
  border: 1px solid rgba(215,183,120,.16);
  color: rgba(255,232,183,.72);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(17,12,9,.34), rgba(0,0,0,.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.horn,
.horn-inner {
  display: none;
}

.tonearm-pivot,
.tonearm-rest {
  display: none;
}

.tonearm {
  position: absolute;
  z-index: 5;
  width: 72%;
  aspect-ratio: 1442 / 440;
  height: auto;
  right: calc(-1.6% + 9px);
  top: 6.7%;
  background: url('../img/tonearm-jazz-realiste.png') center / contain no-repeat;
  transform-origin: 77.8% 33.7%;
  transform: rotate(calc(var(--arm-angle) * 1deg));
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.22));
  cursor: grab;
  touch-action: none;
  transition: transform .18s ease, filter .18s ease;
  user-select: none;
}

.tonearm:hover {
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.26));
}

.tonearm:active {
  cursor: grabbing;
}

.tonearm::before,
.tonearm::after {
  content: none;
}

.now-playing {
  text-align: center;
}

.now-playing h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: #ffe7ad;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  line-height: .88;
  letter-spacing: -.025em;
  text-shadow: 0 4px 18px rgba(0,0,0,.34);
}

.now-playing p:last-child {
  color: #c9b69a;
  margin: 8px 0 0;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}

.turntable-controls {
  position: absolute;
  z-index: 8;
  left: 5.8%;
  bottom: 5.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215,183,120,.16);
  background: linear-gradient(180deg, rgba(20,12,9,.42), rgba(7,5,4,.3));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

button {
  font: inherit;
}

.icon-btn,
.play-btn {
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 0;
  background: rgba(255,255,255,.045);
}

.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe8ad, #d7b778 52%, #8f673d);
  color: #16100a;
  font-size: 1.35rem;
  box-shadow: 0 18px 50px rgba(215,183,120,.23);
}

.icon-btn:hover,
.play-btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(215,183,120,.55);
}

.turntable-controls .icon-btn {
  width: 34px;
  height: 34px;
  font-size: 1.35rem;
  background: rgba(0,0,0,.22);
}

.turntable-controls .play-btn {
  width: 46px;
  height: 46px;
  font-size: .92rem;
  box-shadow: 0 8px 20px rgba(215,183,120,.14);
}

.turntable-controls .icon-btn,
.turntable-controls .play-btn {
  position: relative;
  z-index: 9;
}

.timeline {
  display: none;
}

.playlist {
  width: min(760px, 100%);
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.track {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(215,183,120,.16);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,.042);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.track:hover,
.track.active {
  background: rgba(215,183,120,.1);
  border-color: rgba(215,183,120,.42);
  transform: translateY(-1px);
}

.track-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(0,0,0,.28);
  font-family: Georgia, serif;
}

.track strong,
.track span {
  display: block;
}

.track strong { font-size: 1rem; }
.track span { color: var(--muted); font-size: .86rem; margin-top: 3px; }
.track small { color: var(--gold); white-space: nowrap; }

.player-note {
  color: var(--muted);
  text-align: center;
  margin: 0;
  font-size: .92rem;
}

code {
  color: #ffe0a3;
  background: rgba(255,255,255,.07);
  padding: 3px 6px;
  border-radius: 7px;
}

.story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  padding: 70px 0;
  align-items: start;
}

.story-card,
.story-grid article,
.contact {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0,0,0,.3);
}

.story-card {
  padding: clamp(26px, 4vw, 42px);
}





.story-aside {
  display: grid;
  gap: 18px;
  align-self: start;
}

.story-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 65% 18%, rgba(214,146,61,.28), transparent 24%),
    radial-gradient(circle at 34% 68%, rgba(255,197,108,.16), transparent 26%),
    linear-gradient(180deg, rgba(27,16,11,.92), rgba(8,7,7,.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0,0,0,.34);
  padding: 22px;
}

.guitar-stage {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guitar-stage::before {
  content: "";
  position: absolute;
  inset: 7% 12% 9%;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(255,198,117,.22), rgba(255,198,117,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
  filter: blur(2px);
}

.guitar-stage::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 34px;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,.46), rgba(0,0,0,0) 74%);
  filter: blur(12px);
}

.guitar-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  max-height: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.34)) saturate(1.02);
}

.guitar-copy {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(215,183,120,.16);
}

.guitar-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.18rem;
}

.guitar-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.story-card p:not(.eyebrow),
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-grid article {
  padding: 28px 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.story-grid span {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

.story-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.story-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.story-points {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(215,183,120,.16);
  display: grid;
  gap: 10px;
}

.story-points li {
  color: rgba(255,232,183,.82);
  font-size: .9rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.story-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(215,183,120,.38);
  flex: 0 0 auto;
}

.contact {
  text-align: center;
  padding: clamp(34px, 5vw, 62px);
  margin-bottom: 62px;
}

.contact h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.link-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.link-row a:hover {
  color: var(--text);
  background: rgba(215,183,120,.1);
  transform: translateY(-2px);
}

.link-row a.platform-amazon {
  color: #fff6df;
  border-color: rgba(215,183,120,.52);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.20), transparent 34%),
    linear-gradient(135deg, rgba(215,183,120,.28), rgba(0,168,225,.16));
  box-shadow: 0 16px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}

.link-row a.platform-amazon:hover {
  color: #ffffff;
  border-color: rgba(215,183,120,.78);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(135deg, rgba(215,183,120,.36), rgba(0,168,225,.23));
}

.link-row a.platform-spotify {
  color: #f2fff6;
  border-color: rgba(30,215,96,.52);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, rgba(30,215,96,.26), rgba(16,16,16,.18));
  box-shadow: 0 16px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}

.link-row a.platform-spotify:hover {
  color: #ffffff;
  border-color: rgba(30,215,96,.78);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(135deg, rgba(30,215,96,.34), rgba(16,16,16,.24));
}

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: .92rem;
  border-top: 1px solid rgba(215,183,120,.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  display: block;
  width: clamp(92px, 10vw, 120px);
  height: auto;
  border-radius: 14px;
  mix-blend-mode: screen;
  opacity: .95;
}

.footer p { margin: 0; }
.footer a { color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes halo {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .hero,
  .story {
    grid-template-columns: 1fr;
  }


  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .cover-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .nav a { text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .track { grid-template-columns: 36px 1fr; }
  .track small { grid-column: 2; }
  .footer { flex-direction: column; }
}

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

/* === V14 : playlist à gauche + pochettes depuis métadonnées ID3 === */
.gramophone {
  --track-cover: url('../img/lily-cover.jpeg');
}

.record-label {
  background:
    linear-gradient(rgba(17,12,8,.2), rgba(17,12,8,.28)),
    var(--track-cover) center / cover;
}

.player-shell {
  width: 100%;
  grid-template-columns: minmax(280px, 360px) minmax(420px, 1fr);
  grid-template-areas:
    "playlist deck"
    "playlist now"
    "playlist lyrics"
    "note note";
  column-gap: clamp(22px, 4vw, 52px);
  row-gap: 22px;
  justify-items: center;
  align-items: start;
}

.gramophone-wrap {
  grid-area: deck;
}

.now-playing {
  grid-area: now;
  width: min(520px, 100%);
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -2px;
}

.current-cover-card {
  width: min(235px, 60%);
  margin: -10px auto 24px;
  perspective: 1200px;
}

.current-cover-3d {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  padding: 10px;
  background: linear-gradient(180deg, rgba(31,18,12,.92), rgba(12,8,6,.96));
  transform: perspective(1200px) rotateX(11deg) rotateZ(-1.4deg) translateY(0);
  transform-style: preserve-3d;
}

.current-cover-3d::before {
  content: "";
  position: absolute;
  inset: 12px 18px -18px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.58), rgba(0,0,0,0) 74%);
  filter: blur(14px);
  transform: translateZ(-1px) scale(.96);
  z-index: 0;
}

.current-cover-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 24%, rgba(0,0,0,.18) 84%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 24px 52px rgba(0,0,0,.42), 0 10px 18px rgba(0,0,0,.24);
  pointer-events: none;
}

.current-cover-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #120b08;
  border-radius: 12px;
}

.lyrics-panel {
  grid-area: lyrics;
  width: min(660px, 100%);
  justify-self: center;
  border: 1px solid rgba(215,183,120,.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15,12,10,.7), rgba(8,7,6,.58));
  box-shadow: 0 18px 55px rgba(0,0,0,.26);
  padding: clamp(18px, 2.4vw, 26px);
  backdrop-filter: blur(14px);
}

.lyrics-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(215,183,120,.14);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.lyrics-head .eyebrow {
  margin: 0;
}

.lyrics-head h3 {
  margin: 0;
  color: #ffe7ad;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.05;
  text-align: right;
}

.lyrics-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.lyrics-tools button {
  appearance: none;
  border: 1px solid rgba(215,183,120,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  color: rgba(255,238,205,.84);
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.lyrics-tools button:hover {
  transform: translateY(-1px);
  border-color: rgba(215,183,120,.42);
  background: rgba(215,183,120,.11);
}

.lyrics-tools span {
  min-width: 58px;
  text-align: center;
  color: rgba(255,238,205,.78);
  font-size: .78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lyrics-panel pre {
  margin: 0;
  max-height: 360px;
  overflow: auto;
  white-space: pre-wrap;
  font: inherit;
  color: #e6d3b5;
  line-height: 1.72;
  padding: 12px 10px 120px 0;
  scroll-behavior: smooth;
}

.lyric-line {
  display: block;
  padding: 5px 12px;
  border-left: 2px solid transparent;
  border-radius: 12px;
  opacity: .56;
  transform: translateX(0);
  transition: color .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, filter .22s ease;
}

.lyric-line.active {
  color: #ffe7ad;
  opacity: 1;
  background: rgba(215,183,120,.08);
  border-color: rgba(215,183,120,.75);
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(215,183,120,.18);
}

.lyric-line.empty {
  opacity: .72;
}

.lyrics-panel pre.has-preview-mask {
  position: relative;
}

.lyric-line.outside-preview {
  opacity: .18;
  filter: blur(3px);
  user-select: none;
}

.lyric-line.outside-preview:hover {
  opacity: .36;
  filter: blur(1.7px);
}

.lyric-line.inside-preview {
  opacity: .76;
}

.lyric-line.outside-preview.active,
.lyric-line.inside-preview.active {
  filter: none;
}

.lyrics-panel pre::-webkit-scrollbar { width: 8px; }
.lyrics-panel pre::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(215,183,120,.32);
}

.lyrics-status {
  margin: 16px 0 0;
  color: rgba(187,169,142,.78);
  font-size: .84rem;
}

.playlist {
  grid-area: playlist;
  width: 100%;
  max-width: 360px;
  margin-top: 0;
  align-self: start;
  justify-self: start;
}

.playlist::before {
  content: "Titres";
  display: block;
  margin: 0 0 12px 4px;
  color: #d7b778;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.player-note {
  grid-area: note;
  justify-self: center;
}

.track {
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  min-height: 76px;
  padding: 10px 12px;
  border-radius: 20px;
}

.track-cover {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,0,0,.2)),
    url('../img/lily-cover.jpeg') center / cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09), 0 10px 20px rgba(0,0,0,.22);
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.track-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 34%, rgba(0,0,0,.22));
  pointer-events: none;
}

.track .track-num {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 2;
  width: auto;
  height: auto;
  min-width: 24px;
  padding: 3px 5px;
  border-radius: 999px;
  color: #1a1009;
  background: rgba(255,231,173,.88);
  font-size: .62rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.track-meta {
  min-width: 0;
}

.track-meta strong,
.track-meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
}

.track small {
  align-self: center;
}

@media (max-width: 980px) {
  .player-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "deck"
      "now"
      "lyrics"
      "playlist"
      "note";
  }

  .playlist {
    max-width: 760px;
    justify-self: center;
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .track {
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    padding: 9px 10px;
  }

  .track-cover {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }
}


/* === V19 : correction hero final — titre contenu et colonnes propres === */
.hero {
  isolation: isolate;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .62fr);
  column-gap: clamp(32px, 5vw, 82px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 680px;
}

.hero .eyebrow {
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(4.2rem, 9.6vw, 8.9rem);
  line-height: .82;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  margin-bottom: 26px;
}

.hero .lead {
  max-width: 640px;
}

.cover-card {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(100%, 470px);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(300px, .56fr);
    column-gap: 34px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.5vw, 7.4rem);
  }

  .cover-card {
    width: min(100%, 420px);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
    text-align: left;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 7.4rem);
  }

  .cover-card {
    justify-self: center;
    width: min(100%, 520px);
  }
}

@media (max-width: 520px) {
  .hero {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero h1 {
    font-size: clamp(3.35rem, 18vw, 5.3rem);
    line-height: .86;
  }

  .lead {
    font-size: 1.02rem;
  }

  .cover-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}



/* === V20 : cartes univers complétées === */
@media (max-width: 1080px) {
  .story-grid article {
    min-height: 340px;
  }
}

@media (max-width: 780px) {
  .story-grid article {
    min-height: 0;
  }

  .story-points {
    margin-top: 24px;
  }
}


/* === V25 : audit final — lisibilité, responsive, histoires et SEO visuel === */
html { scroll-padding-top: 110px; }

.hero h1 {
  font-size: clamp(3.8rem, 8.7vw, 8.2rem);
  letter-spacing: -.06em;
}

.hero .lead { text-wrap: pretty; }

.player-shell {
  grid-template-columns: minmax(285px, 380px) minmax(0, 1fr);
  grid-template-areas:
    "playlist deck"
    "playlist now"
    "playlist lyrics"
    "note note";
}

.gramophone-wrap {
  width: min(520px, 100%);
}

.playlist {
  position: sticky;
  top: 28px;
  max-height: calc(100svh - 82px);
  overflow: auto;
  padding-right: 4px;
  margin-top: -14px;
}

.playlist::-webkit-scrollbar { width: 7px; }
.playlist::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(215,183,120,.28); }

.track { min-width: 0; }
.track.active { box-shadow: inset 0 0 0 1px rgba(215,183,120,.18), 0 12px 30px rgba(0,0,0,.18); }
.track-meta strong { color: #fff0c8; }

.lyrics-panel { width: min(720px, 100%); }
.lyrics-panel pre { max-height: 420px; }
.lyrics-status { font-style: italic; }

.songs {
  padding: 72px 0 34px;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.song-card {
  border: 1px solid rgba(215,183,120,.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(19,16,14,.72);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  padding: 24px 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
}

.song-card span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.song-card h3 {
  color: #ffe7ad;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.08;
  margin-bottom: 12px;
}

.song-card p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article { min-height: 360px; }

.link-row a.disabled {
  opacity: .72;
  cursor: default;
}

.link-row a.disabled:hover {
  transform: none;
  color: var(--muted);
  background: rgba(255,255,255,.04);
}

.footer {
  padding-bottom: max(18px, env(safe-area-inset-bottom));
}

@media (max-width: 1120px) {
  .songs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .song-card { min-height: 230px; }
}

@media (max-width: 980px) {
  .player-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "deck"
      "now"
      "lyrics"
      "playlist"
      "note";
  }

  .playlist {
    position: relative;
    top: auto;
    max-height: none;
    padding-right: 0;
  }
}

@media (max-width: 780px) {
  .songs { padding-top: 54px; }
  .songs-grid { grid-template-columns: 1fr; }
  .song-card { min-height: 0; }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav { grid-template-columns: repeat(2, 1fr); }
  .nav a { padding: 10px 8px; }
  .lyrics-head { align-items: flex-start; flex-direction: column; }
  .lyrics-head h3 { text-align: left; }
  .lyrics-tools { justify-content: flex-start; }
  .lyrics-panel pre { max-height: 330px; padding-bottom: 90px; }
}

@media (max-width: 520px) {
  .section, .footer, .topbar { width: min(var(--max), calc(100% - 24px)); }
  .player-shell { padding: 18px; border-radius: 26px; }
  .gramophone-wrap { width: min(100%, 430px); }
  .turntable-controls { left: 3.8%; bottom: 4.5%; }
  .turntable-controls .icon-btn { width: 31px; height: 31px; }
  .turntable-controls .play-btn { width: 42px; height: 42px; }
  .track { grid-template-columns: 52px 1fr auto; }
  .track-cover { width: 50px; height: 50px; }
  .track small { font-size: .78rem; }
}


/* === V31 : paroles LRC directement sous le titre actif === */
.player-shell {
  grid-template-columns: minmax(315px, 430px) minmax(0, 1fr);
  grid-template-areas:
    "playlist deck"
    "playlist now"
    "note note";
  align-items: start;
}

.track-item {
  margin-bottom: 10px;
}

.track-item .track {
  width: 100%;
}

.playlist .lyrics-panel.inline-lyrics {
  grid-area: auto;
  width: 100%;
  margin: 8px 0 16px;
  padding: 12px 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(25,20,17,.84), rgba(9,8,7,.8)),
    rgba(0,0,0,.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 14px 36px rgba(0,0,0,.22);
}

.playlist .lyrics-panel.inline-lyrics .lyrics-head {
  padding-bottom: 8px;
  margin-bottom: 8px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.playlist .lyrics-panel.inline-lyrics .lyrics-head > div:first-child {
  display: none;
}

.playlist .lyrics-panel.inline-lyrics .lyrics-tools {
  justify-content: flex-start;
  gap: 6px;
}

.playlist .lyrics-panel.inline-lyrics .lyrics-tools button {
  padding: 6px 8px;
  font-size: .65rem;
}

.playlist .lyrics-panel.inline-lyrics .lyrics-tools span {
  min-width: 50px;
  font-size: .7rem;
}

.playlist .lyrics-panel.inline-lyrics pre {
  max-height: 250px;
  padding: 4px 4px 78px 0;
  font-size: .9rem;
  line-height: 1.58;
}

.playlist .lyrics-panel.inline-lyrics .lyric-line {
  padding: 4px 9px;
  border-radius: 10px;
}

.playlist .lyrics-panel.inline-lyrics .lyrics-status {
  margin-top: 8px;
  font-size: .74rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .player-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "deck"
      "now"
      "playlist"
      "note";
  }

  .playlist {
    max-width: 760px;
  }
}

@media (max-width: 520px) {
  .playlist .lyrics-panel.inline-lyrics {
    padding: 11px 10px 13px;
  }

  .playlist .lyrics-panel.inline-lyrics pre {
    max-height: 310px;
    font-size: .88rem;
  }

  .playlist .lyrics-panel.inline-lyrics .lyrics-tools button {
    font-size: .61rem;
    padding: 5px 7px;
  }
}


/* V32: hide manual lyric offset controls */
.lyrics-tools {
  display: none !important;
}


/* === V34 : playlist remontée + jaquette 3D sous le tourne-disque === */
@media (max-width: 980px) {
  .now-playing {
    margin-top: 8px;
  }

  .current-cover-card {
    width: min(210px, 46vw);
    margin-bottom: 18px;
  }
}

@media (max-width: 520px) {
  .playlist {
    max-width: 100%;
  }

  .current-cover-card {
    width: min(180px, 54vw);
    margin-bottom: 16px;
  }

  .current-cover-3d {
    transform: perspective(900px) rotateX(9deg) rotateZ(-1deg);
  }
}


/* === V35 : finition visuelle + suppression du message technique === */
.player-note { display: none; }
.player-note:empty { display: none; }
.current-cover-card img { box-shadow: 0 1px 0 rgba(255,255,255,.08); }

/* === V38 : compteur de j'aime par musique === */
.track-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.like-btn {
  min-width: 54px;
  border: 1px solid rgba(215,183,120,.18);
  border-radius: 18px;
  color: rgba(255,232,183,.82);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(0,0,0,.16)),
    rgba(255,255,255,.035);
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 8px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.like-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215,183,120,.48);
  background: rgba(215,183,120,.11);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.like-btn.liked {
  color: #ffe2a3;
  border-color: rgba(255,214,128,.58);
  background:
    radial-gradient(circle at 50% 25%, rgba(255,214,128,.22), transparent 58%),
    rgba(215,183,120,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 10px 24px rgba(215,183,120,.12);
}

.like-btn:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.like-heart {
  font-size: 1.08rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.like-count {
  font-size: .74rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
}

@media (max-width: 520px) {
  .track-row {
    gap: 6px;
  }

  .like-btn {
    min-width: 48px;
    padding: 7px 6px;
    border-radius: 16px;
  }
}


/* === V41 : intégration élégante du logo FredRaven === */
@media (max-width: 820px) {
  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: clamp(108px, 34vw, 132px);
  }
}

@media (max-width: 680px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-logo-shell {
    padding: 0;
  }

  .brand-copy {
    padding-left: 6px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}



/* === V46 : image decorative Soul analogique === */
.player-title-image {
  display: block;
  width: min(100%, 1180px);
  max-width: 100%;
  margin: 0 auto 22px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.28));
}

.section-title-player {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 720px) {
  .player-title-image {
    width: min(100%, 94vw);
    margin-bottom: 16px;
  }
}


/* V48 : ligne de statut LRC masquée */
.lyrics-status {
  display: none !important;
}


/* === V50 : personnage décoratif fixe en bas à droite === */
.page-follow-portrait {
  position: fixed;
  right: clamp(26px, 4.2vw, 82px);
  bottom: clamp(-4px, -0.2vw, 0px);
  width: clamp(135px, 15.5vw, 270px);
  max-height: min(46vh, 430px);
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  user-select: none;
  z-index: 8;
  opacity: .92;
  filter:
    drop-shadow(0 22px 28px rgba(0, 0, 0, .46))
    saturate(.92)
    brightness(.9);
}

@media (max-width: 980px) {
  .page-follow-portrait {
    width: clamp(108px, 20vw, 180px);
    max-height: 34vh;
    opacity: .52;
    right: 10px;
    bottom: 0;
  }
}

@media (max-width: 720px) {
  .page-follow-portrait {
    display: none;
  }
}

@media (max-width: 720px) {
  .tonearm { width: 74%; right: -4%; top: 7%; }
}


/* V68 : correction du déplacement du bras - la position de glisser est calculée depuis l'axe réel du bras. */
.tonearm {
  will-change: transform;
}


/* === V71 : expérience musicale complète test === */
:root {
  --mini-h: 92px;
}

body {
  padding-bottom: calc(var(--mini-h) + env(safe-area-inset-bottom, 0px));
}

.featured-release {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(26px, 4.8vw, 48px);
  margin-bottom: 26px;
  border: 1px solid rgba(215,183,120,.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 12%, rgba(215,183,120,.20), transparent 32%),
    linear-gradient(135deg, rgba(26,17,12,.88), rgba(6,6,7,.82));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.featured-release::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(215,183,120,.10);
  filter: blur(8px);
  pointer-events: none;
}

.featured-art,
.featured-copy {
  position: relative;
  z-index: 1;
}

.featured-art {
  perspective: 1200px;
}

.featured-art img {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 74px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotateX(8deg) rotateZ(-1.5deg);
  background: #100b08;
}

.featured-copy h2 {
  color: #ffe7ad;
  max-width: 760px;
}

.featured-copy p:not(.eyebrow):not(.share-feedback) {
  color: #dcc8aa;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.68;
  max-width: 720px;
}

.featured-actions,
.now-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.featured-actions {
  justify-content: flex-start;
}

.btn.tiny {
  min-height: 38px;
  padding: 0 14px;
  font-size: .78rem;
  border-color: rgba(215,183,120,.22);
  background: rgba(255,255,255,.05);
  color: rgba(255,239,210,.9);
}

.btn.tiny.ghost {
  background: rgba(0,0,0,.18);
}

.share-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gold);
  font-size: .88rem;
}

.timeline {
  width: min(520px, 100%);
  display: grid !important;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(215,183,120,.16);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.timeline span,
.mini-timeline span {
  color: rgba(255,239,210,.74);
  font-size: .78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 38px;
}

.timeline input,
.mini-timeline input {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.lyrics-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lyrics-actions button,
.song-card button {
  appearance: none;
  border: 1px solid rgba(215,183,120,.24);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  color: rgba(255,238,205,.88);
  padding: 8px 12px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.lyrics-actions button:hover,
.song-card button:hover {
  transform: translateY(-1px);
  border-color: rgba(215,183,120,.5);
  background: rgba(215,183,120,.10);
}

.lyrics-panel.is-expanded pre,
.playlist .lyrics-panel.inline-lyrics.is-expanded pre {
  max-height: min(72vh, 820px);
}

.lyric-line.prev {
  opacity: .32;
}

.lyric-line.next {
  opacity: .52;
}

.lyric-line.active {
  font-size: 1.04em;
}

.song-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-card p {
  flex: 1;
}

.song-card button {
  align-self: flex-start;
  margin-top: auto;
}

.newsletter-form {
  margin: 26px auto 22px;
  max-width: 720px;
  text-align: left;
}

.newsletter-form label {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-row input {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(215,183,120,.22);
  background: rgba(0,0,0,.24);
  color: var(--text);
  padding: 0 18px;
  outline: none;
}

.newsletter-row input:focus {
  border-color: rgba(215,183,120,.62);
  box-shadow: 0 0 0 4px rgba(215,183,120,.08);
}

.newsletter-form [data-newsletter-message] {
  margin: 10px 6px 0;
  color: rgba(187,169,142,.78);
  font-size: .84rem;
  line-height: 1.45;
}

.mini-player {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(0);
  z-index: 30;
  width: min(960px, calc(100% - 28px));
  min-height: 78px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(215,183,120,.28);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(22,16,13,.92), rgba(7,7,8,.88));
  box-shadow: 0 18px 70px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  opacity: 1;
  transition: transform .28s ease, opacity .28s ease;
}

.mini-player.is-hidden {
  transform: translateX(-50%) translateY(calc(100% + 26px));
  opacity: 0;
  pointer-events: none;
}

.mini-player img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 16px;
  background: #120b08;
  box-shadow: 0 10px 26px rgba(0,0,0,.34);
}

.mini-info {
  min-width: 0;
}

.mini-info strong,
.mini-info span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-info strong {
  color: #ffe7ad;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.05;
}

.mini-info > span {
  color: rgba(187,169,142,.88);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.mini-timeline {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(215,183,120,.22);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.mini-controls button:hover {
  transform: translateY(-1px);
  border-color: rgba(215,183,120,.52);
  background: rgba(215,183,120,.12);
}

.mini-controls [data-mini-play] {
  background: linear-gradient(135deg, #ffe8ad, #d7b778 52%, #8f673d);
  color: #16100a;
  font-weight: 900;
}

@media (max-width: 860px) {
  .featured-release {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-actions { justify-content: center; }
  .featured-art img { width: min(320px, 82vw); }
}

@media (max-width: 620px) {
  :root { --mini-h: 132px; }

  .timeline {
    grid-template-columns: 1fr;
    border-radius: 20px;
    gap: 6px;
  }

  .timeline span {
    display: none;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .mini-player {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
    border-radius: 22px;
  }

  .mini-player img {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .mini-controls {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .mini-timeline {
    grid-template-columns: 1fr;
  }

  .mini-timeline span {
    display: none;
  }
}

/* === V74 : extraits pilotables + liens plateformes par titre === */
.preview-notice {
  margin: 12px 0 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(215,183,120,.22);
  background: rgba(12,14,18,.52);
  color: rgba(245,238,220,.78);
  font-size: .88rem;
  line-height: 1.45;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215,183,120,.26);
  background: rgba(255,255,255,.055);
  color: #fff6df;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.platform-pill:hover {
  transform: translateY(-2px);
  background: rgba(215,183,120,.14);
  border-color: rgba(215,183,120,.56);
}

.platform-pill.spotify {
  border-color: rgba(30,215,96,.48);
  background: linear-gradient(135deg, rgba(30,215,96,.18), rgba(255,255,255,.045));
}

.platform-pill.amazon {
  border-color: rgba(0,168,225,.44);
  background: linear-gradient(135deg, rgba(0,168,225,.18), rgba(215,183,120,.10));
}


/* === V77 : suppression du grand bloc d’accueil ===
   La dernière sortie devient la première zone visible. */
#sortie.featured-release {
  margin-top: clamp(34px, 7vw, 86px);
}


/* === V78 : menu mobile moins invasif === */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(215,183,120,.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(215,183,120,.12);
  border-color: rgba(215,183,120,.46);
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .2s ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 680px) {
  .topbar {
    width: min(var(--max), calc(100% - 16px));
    margin-top: 8px;
    padding: 8px 9px 8px 10px;
    min-height: 54px;
    align-items: center;
    flex-direction: row;
    border-radius: 18px;
    gap: 8px;
    background: rgba(8, 8, 8, .58);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 26px rgba(0,0,0,.24);
  }

  .brand {
    gap: 8px;
    flex: 1 1 auto;
  }

  .brand-logo-shell {
    border-radius: 13px;
  }

  .brand-logo {
    width: 86px;
    border-radius: 12px;
  }

  .brand-copy {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(215,183,120,.16);
    border-radius: 18px;
    background: rgba(8, 8, 8, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity .22s ease, transform .22s ease, max-height .22s ease;
  }

  .topbar.menu-open .nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    max-height: 340px;
  }

  .nav a {
    width: 100%;
    padding: 11px 12px;
    text-align: left;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(215,183,120,.12);
    outline: none;
  }

  main {
    padding-top: 6px;
  }
}

@media (max-width: 420px) {
  .topbar {
    width: calc(100% - 12px);
    margin-top: 6px;
    min-height: 50px;
    padding: 7px 8px;
  }

  .brand-logo {
    width: 74px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}


/* === V80 : décor de fond studio soul plus présent ===
   Image rendue plus visible tout en gardant une bonne lisibilité du contenu. */
.site-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(215,183,120,.22), transparent 36%),
    radial-gradient(circle at 78% 24%, rgba(120,73,38,.22), transparent 40%),
    linear-gradient(180deg, #0b0d0f 0%, #090806 52%, #0b0d0f 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: -2%;
  background: url('../img/studio-soul-fond-transparent.jpg') center center / cover no-repeat;
  opacity: .58;
  filter: saturate(1.08) contrast(1.12) brightness(1.02);
  transform: scale(1.02);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,8,.72) 0%, rgba(6,7,8,.42) 42%, rgba(6,7,8,.66) 100%),
    linear-gradient(180deg, rgba(11,13,15,.12) 0%, rgba(11,13,15,.58) 70%, rgba(11,13,15,.78) 100%);
}

@media (max-width: 680px) {
  .site-bg::before {
    opacity: .42;
    background-position: center top;
  }

  .site-bg::after {
    background:
      linear-gradient(90deg, rgba(6,7,8,.82), rgba(6,7,8,.60)),
      linear-gradient(180deg, rgba(11,13,15,.24), rgba(11,13,15,.82));
  }
}

/* === V83 : playlist étirée jusqu'au bas du cadre ===
   La liste des titres occupe toute la hauteur utile du cadre lecteur, avec une petite marge visuelle. */
.player-shell {
  align-items: stretch;
}

.playlist {
  align-self: stretch;
  display: block;
  margin-top: 0;
  padding-right: clamp(6px, 1vw, 10px);
  padding-bottom: clamp(10px, 1.4vw, 16px);
  scroll-padding-bottom: 18px;
}

.track-item:last-child {
  margin-bottom: 4px;
}

@media (min-width: 981px) {
  .player-shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .playlist {
    position: relative;
    top: auto;
    height: 100%;
    min-height: clamp(520px, 66vw, 760px);
    max-height: none;
    overflow-y: auto;
  }

  .playlist::before {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 2px 0 10px 4px;
    margin: 0 0 10px 0;
    background: linear-gradient(180deg, rgba(12,10,9,.96), rgba(12,10,9,.72) 72%, rgba(12,10,9,0));
    backdrop-filter: blur(6px);
  }
}

@media (max-width: 980px) {
  .playlist {
    max-height: min(72svh, 640px);
    overflow-y: auto;
    padding-bottom: 14px;
  }
}

@media (max-width: 520px) {
  .playlist {
    max-height: min(76svh, 620px);
    padding-right: 6px;
    padding-bottom: 12px;
  }
}


/* === V84 : organisation tunnel musical / SEO chansons === */
.conversion-hero {
  margin-top: clamp(34px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(215,183,120,.18);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(0,0,0,.20));
  box-shadow: 0 22px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.045);
  position: relative;
  overflow: hidden;
}

.conversion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(215,183,120,.18), transparent 34%);
  pointer-events: none;
}

.conversion-copy,
.emotion-gateway { position: relative; z-index: 1; }

.conversion-copy h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--script);
  font-size: clamp(3.2rem, 6.4vw, 6.85rem);
  line-height: .82;
  letter-spacing: .005em;
  font-weight: 400;
  color: #ffe9b5;
  text-shadow: 0 10px 34px rgba(0,0,0,.58), 0 0 24px rgba(215,183,120,.18);
}

.conversion-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.conversion-actions,
.song-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.emotion-gateway {
  display: grid;
  gap: 12px;
  align-content: center;
}

.emotion-gateway a,
.song-card-actions a,
.path-grid article,
.quote-card {
  border: 1px solid rgba(215,183,120,.18);
  background: rgba(8,8,8,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.emotion-gateway a {
  display: block;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.emotion-gateway a:hover {
  transform: translateY(-2px);
  border-color: rgba(215,183,120,.48);
  background: rgba(215,183,120,.08);
}

.emotion-gateway span,
.quote-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.emotion-gateway strong {
  display: block;
  color: #ffe9b5;
  font-size: 1.08rem;
}

#sortie.featured-release { margin-top: clamp(22px, 5vw, 54px); }

.listen-path .section-title { margin-bottom: 18px; }

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.path-grid article {
  padding: 22px;
  border-radius: 24px;
}

.path-grid span,
.song-page-number {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
}

.path-grid h3 { margin: 10px 0 8px; color: #ffe9b5; }
.path-grid p { color: rgba(255,255,255,.72); line-height: 1.65; }

.song-card-actions { margin-top: 18px; }
.song-card-actions button { margin: 0; }
.song-card-actions a {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #f7dfaa;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.song-card-actions a:hover {
  transform: translateY(-2px);
  background: rgba(215,183,120,.11);
  border-color: rgba(215,183,120,.48);
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(215,183,120,.18);
  background: linear-gradient(135deg, rgba(215,183,120,.08), rgba(255,255,255,.035));
}

.share-section h2 { margin: 0 0 10px; color: #ffe9b5; }
.share-section p { color: rgba(255,255,255,.74); line-height: 1.75; }
.quote-card { padding: 22px; border-radius: 24px; }
.quote-card strong {
  display: block;
  font-family: var(--display);
  color: #ffe9b5;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.song-page-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: clamp(92px, 12vw, 130px);
}

.song-page-hero {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 46px);
  border-radius: 34px;
  border: 1px solid rgba(215,183,120,.20);
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(0,0,0,.24));
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
}

.song-page-cover {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(215,183,120,.22);
  background: #090806;
  box-shadow: 0 18px 52px rgba(0,0,0,.36);
}
.song-page-cover img { display: block; width: 100%; height: auto; }

.song-page-copy h1 {
  margin: 0;
  font-family: var(--display);
  color: #ffe9b5;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.song-page-copy p { color: rgba(255,255,255,.76); line-height: 1.78; font-size: 1.05rem; }
.song-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.song-page-actions a { text-decoration: none; }

.song-page-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 22px;
  margin-top: 22px;
}

.song-story-card,
.song-platform-card {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 28px;
  border: 1px solid rgba(215,183,120,.16);
  background: rgba(8,8,8,.38);
}
.song-story-card h2,
.song-platform-card h2 {
  margin: 0 0 14px;
  font-family: var(--script);
  font-weight: 400;
  color: #ffe6ad;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: .9;
  letter-spacing: .01em;
  text-shadow: 0 10px 34px rgba(0,0,0,.42), 0 0 22px rgba(215,183,120,.12);
}
.song-story-card p,
.song-platform-card p { color: rgba(255,255,255,.74); line-height: 1.78; }
.song-lines { display: grid; gap: 10px; margin-top: 16px; }
.song-lines span {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: #f7dfaa;
}
.song-platform-card .link-row { margin-top: 16px; }

@media (max-width: 860px) {
  .conversion-hero,
  .share-section,
  .song-page-hero,
  .song-page-content { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .song-page-main { width: min(var(--max), calc(100% - 24px)); }
}

@media (max-width: 680px) {
  .conversion-hero { margin-top: 78px; padding: 20px; border-radius: 26px; }
  .conversion-copy h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
    line-height: .82;
  }
  .emotion-gateway a { padding: 15px; border-radius: 18px; }
  .share-section { padding: 20px; border-radius: 24px; }
  .song-page-main { padding-top: 82px; }
  .song-page-hero { padding: 18px; border-radius: 26px; }
  .song-page-copy h1 { font-size: clamp(2.2rem, 13vw, 4rem); }
}

/* === V85 : correction espace vide sur les pages titres ===
   Les pages /titres/ n'incluent pas le script principal qui active .reveal.visible.
   Le bloc héro restait donc invisible tout en gardant sa hauteur, ce qui créait un grand vide. */
.song-page-main {
  padding-top: clamp(76px, 8vw, 98px);
}

.song-page-hero.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 680px) {
  .song-page-main {
    padding-top: 68px;
  }
}


/* === V86 : titres des cartes en jolie cursive === */
@media (max-width: 680px) {
  .song-story-card h2,
  .song-platform-card h2 {
    font-size: clamp(2.55rem, 14vw, 4rem);
    line-height: .92;
  }
}


/* === V87 : accroche principale en cursive artistique === */
@media (max-width: 420px) {
  .conversion-copy h1 {
    font-size: clamp(2.85rem, 15vw, 4.35rem);
    line-height: .84;
  }
}


/* === V88 : cursive de l'accroche mieux cadrée ===
   La police script déborde au-dessus de sa ligne : on évite la coupe du grand U
   et on réduit légèrement l'accroche pour un rendu plus premium. */
.conversion-hero {
  overflow: visible;
}

.conversion-copy h1 {
  padding-top: .18em;
  font-size: clamp(2.95rem, 5.25vw, 5.85rem);
  line-height: .98;
  max-width: 940px;
}

@media (max-width: 680px) {
  .conversion-hero {
    margin-top: 86px;
  }

  .conversion-copy h1 {
    padding-top: .22em;
    font-size: clamp(2.75rem, 13.5vw, 4.15rem);
    line-height: .98;
  }
}

@media (max-width: 420px) {
  .conversion-copy h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.65rem);
    line-height: 1;
  }
}


/* V90 — Jeu collector FredRaven */
.game-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 26px;
  margin-bottom: 34px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(215,183,120,.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(19,16,14,.80), rgba(8,8,8,.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
}
.game-teaser::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 82% 18%, rgba(215,183,120,.20), transparent 34%);
  pointer-events: none;
}
.game-teaser > * { position: relative; }
.game-teaser h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
  line-height: .88;
  letter-spacing: -.055em;
  color: #ffe4aa;
}
.game-teaser p { color: var(--muted); line-height: 1.68; font-size: 1.03rem; }
.game-teaser-art img {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(215,183,120,.24);
  box-shadow: 0 22px 80px rgba(0,0,0,.42);
}
@media (max-width: 780px) {
  .game-teaser { grid-template-columns: 1fr; }
}
