/* =========================================================
   Desire Theory — shared styles (index + song pages)
   Light editorial system: ivory / champagne / charcoal,
   Cormorant Garamond + Inter, DT monogram.
   ========================================================= */

:root {
  --ivory: #f7f2ea;
  --warm: #eee3d5;
  --paper: #fffaf3;
  --ink: #17120f;
  --muted: #756b61;
  --line: rgba(23, 18, 15, .13);
  --gold: #b3854c;
  --gold-soft: #d9bd94;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(78, 56, 35, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Hide the scrollbar but keep scrolling functional */
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% -5%, rgba(217, 189, 148, .30), transparent 38vw),
    linear-gradient(180deg, #fbf8f2, var(--ivory));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
/* Faint editorial grid texture, kept very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(23,18,15,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,18,15,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
}
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

/* ---------- Typography scale (luxury-editorial, not oversized) ---------- */
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
h1 { margin: 0; font-size: clamp(2.3rem, 4.8vw, 4.1rem); line-height: 1.04; letter-spacing: -.02em; }
h2 { margin: 0; font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.06; letter-spacing: -.02em; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}
/* Apple-style keyword emphasis: accent colour + italic serif inflection */
.hl { color: var(--gold); font-style: italic; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 30;
  padding: 0 18px;
}
.nav {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 9px 12px 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,243,.78);
  box-shadow: 0 16px 50px rgba(78, 56, 35, .10);
  backdrop-filter: blur(20px) saturate(150%);
  transition: background .35s ease, box-shadow .35s ease, min-height .35s ease, transform .35s ease;
}
/* Condense slightly once the page is scrolled */
.site-header.scrolled .nav {
  min-height: 58px;
  background: rgba(255,250,243,.93);
  box-shadow: 0 10px 30px rgba(78, 56, 35, .15);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(23,18,15,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; line-height: 1; font-weight: 600;
  letter-spacing: .04em;
  padding-left: .04em; /* optical centering for "DT" */
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: rgba(23,18,15,.64);
  font-size: 13px; font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(23,18,15,.05); transform: translateY(-1px); }
.nav-links a:not(.listen).active { color: var(--ink); background: rgba(179,133,76,.12); }
.nav-links .listen { background: var(--ink); color: var(--paper); padding-inline: 18px; }
.nav-links .listen:hover { background: #2a221d; color: var(--paper); }

/* ---------- Layout primitives ---------- */
.section { padding: clamp(58px, 7vw, 104px) 22px; position: relative; }
.inner { width: min(var(--max), 100%); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.section-head.solo { grid-template-columns: 1fr; }
.section-head p, .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(23,18,15,.18);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  background: rgba(255,250,243,.74);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #fff; }
.btn.primary { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.btn.primary:hover { background: #2a221d; }
.play-dot { width: 18px; height: 18px; border-radius: 999px; background: rgba(255,255,255,.16); position: relative; }
.play-dot::after {
  content: ""; position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

/* ---------- Hero (one full-bleed editorial image) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center; /* centre the headline vertically */
  overflow: hidden;
  background: var(--warm); /* fallback while the image loads / if missing */
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 96px 22px;
}
.hero-overlay-inner {
  width: min(var(--max), 100%);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  /* halo keeps the white copy readable over the bright image */
  text-shadow: 0 2px 30px rgba(20,15,12,.5);
}
.hero-overlay .eyebrow { color: #fff; opacity: .85; margin-bottom: 14px; }
.hero-overlay h1 {
  margin: 0 auto;
  max-width: 20ch;
  color: #fff;
  text-wrap: balance;
}
/* Keywords stay white, kept italic for a subtle inflection */
.hero-overlay .hl { color: #fff; }
.hero-overlay .actions { justify-content: center; margin-top: 30px; }
/* Secondary CTA reads as a clean charcoal outline over the light image */
.hero-overlay .btn:not(.primary) {
  background: rgba(255,250,243,.42);
  border-color: rgba(23,18,15,.34);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.hero-overlay .btn:not(.primary):hover { background: rgba(255,250,243,.85); }

/* ---------- Releases (the catalog) ---------- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.release {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm);
  border: 1px solid rgba(23,18,15,.10);
  box-shadow: 0 16px 46px rgba(78,56,35,.10);
  isolation: isolate;
}
.release img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.75,.2,1), filter .5s ease;
}
/* Compact metadata: subtle index chip, no heavy overlay by default */
.release-no {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  min-width: 30px; height: 26px; padding: 0 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: #fdf8f1;
  background: rgba(20,15,12,.34);
  border: 1px solid rgba(255,250,243,.28);
  backdrop-filter: blur(8px);
  opacity: .9;
  transition: opacity .4s ease;
}
/* Reveal: blur the artwork and surface the story on hover / focus / tap */
.release-reveal {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 8px;
  padding: 30px;
  color: #fdf8f1;
  opacity: 0;
  transition: opacity .45s ease;
  background: linear-gradient(180deg, rgba(20,15,12,.18), rgba(20,15,12,.66));
}
.release-reveal .mood {
  color: var(--gold-soft);
  font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
}
.release-reveal h3 {
  margin: 0;
  font-size: 2rem; line-height: 1.02; letter-spacing: -.01em;
}
.release-reveal p {
  margin: 0; max-width: 34ch;
  font-size: 1rem; line-height: 1.55; color: rgba(253,248,241,.86);
}
.release-reveal .more {
  margin-top: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 7px;
}
.release-reveal .more::after {
  content: "→"; transition: transform .3s ease;
}
.release:not(.coming):hover img,
.release:not(.coming):focus-visible img,
.release.is-open img { transform: scale(1.05); filter: blur(7px) brightness(.82); }
.release:not(.coming):hover .release-reveal,
.release:not(.coming):focus-visible .release-reveal,
.release.is-open .release-reveal { opacity: 1; }
.release:not(.coming):hover .release-no,
.release.is-open .release-no { opacity: 0; }
.release:not(.coming):hover .release-reveal .more::after { transform: translateX(4px); }

/* ---------- Coming-soon "surprise" cards ---------- */
.release.coming { cursor: default; }
.release.coming img {
  transform: scale(1.18);
  filter: blur(26px) brightness(.6) saturate(1.2);
}
.coming-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 22px; text-align: center;
  color: #fdf8f1;
  background: linear-gradient(180deg, rgba(20,15,12,.34), rgba(20,15,12,.52));
}
.coming-overlay .lock { font-size: 18px; opacity: .8; line-height: 1; }
.coming-label {
  font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft);
}
.coming-date {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 500; line-height: 1;
}
.countdown { display: flex; gap: 16px; align-items: baseline; justify-content: center; }
.countdown span {
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(253,248,241,.7);
}
.countdown b {
  display: block; margin-bottom: 3px;
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 2rem; line-height: 1; color: #fdf8f1;
  font-variant-numeric: tabular-nums;
}

/* ---------- Albums (featured: square artwork + text on the right) ---------- */
.album-featured { display: grid; gap: 48px; }
.album-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.album-feature-art {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm);
  border: 1px solid rgba(23,18,15,.10);
  box-shadow: 0 22px 60px rgba(78,56,35,.16);
}
.album-feature-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.75,.2,1);
}
.album-feature-card:hover .album-feature-art img,
.album-feature-card:focus-visible .album-feature-art img { transform: scale(1.04); }
.album-feature-text { display: block; }
.album-feature-text .album-kicker { color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.album-feature-text h3 { margin: 12px 0 0; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.02; letter-spacing: -.02em; }
.album-feature-desc { display: block; margin-top: 16px; max-width: 46ch; color: var(--muted); line-height: 1.7; font-size: 1.02rem; }
.album-feature-text .album-sub { display: block; margin-top: 14px; font-size: .92rem; color: var(--muted); }
.album-feature-text .more {
  margin-top: 22px; font-size: 13px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.album-feature-text .more::after { content: "→"; transition: transform .3s ease; }
.album-feature-card:hover .album-feature-text .more::after { transform: translateX(4px); }

/* ---------- Tracklist (album page) ---------- */
.tracklist { display: grid; gap: 10px; }
.track {
  display: flex; align-items: center; gap: 16px;
  min-height: 60px; padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,250,243,.7);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.track:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 12px 30px rgba(78,56,35,.1); }
.track .t-no {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 1.2rem; color: var(--gold); min-width: 28px;
  font-variant-numeric: tabular-nums;
}
.track .t-title { font-size: 15px; font-weight: 600; }
.track .t-mood {
  margin-left: auto; text-align: right;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
/* „X piese în curând” — placeholder pentru piesele nedezvăluite */
.track.coming {
  border-style: dashed;
  background: transparent;
  cursor: default;
}
.track.coming:hover { transform: none; background: transparent; box-shadow: none; }
.track.coming .t-no { color: var(--gold-soft); }
.track.coming .t-title { color: var(--muted); font-weight: 600; }
.track.coming .t-mood { color: var(--gold); }

/* ---------- About (the concept) ---------- */
.about-statement {
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.about-statement .lead-big {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.about-copy { display: grid; gap: 18px; }
.about-copy p { margin: 0; color: var(--muted); line-height: 1.78; font-size: 1.02rem; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 56px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.principle { background: rgba(255,250,243,.58); padding: 26px 24px; }
.principle span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; }
.principle h3 { margin: 18px 0 0; font-size: 1.7rem; line-height: 1; }
.principle p { margin: 10px 0 0; color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* ---------- Desire (the feeling behind the songs) ---------- */
.desire-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(420px, 60vh, 600px);
  display: flex;
  align-items: center;
  border: 1px solid rgba(23,18,15,.10);
  box-shadow: var(--shadow);
  background: var(--warm); /* light fallback if the image is missing */
}
.desire-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Left-weighted light wash keeps the copy readable while the image breathes on the right */
.desire-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250,246,239,.94), rgba(250,246,239,.62) 46%, rgba(250,246,239,.12) 100%);
}
.desire-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(34px, 6vw, 72px);
  color: var(--ink);
}
.desire-content .eyebrow { color: var(--gold); }
.desire-content h2 { color: var(--ink); max-width: 16ch; }
.desire-content p {
  margin: 20px 0 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.05rem;
}
.desire-content .hl { color: var(--gold); }

/* ---------- Videos (watch hub) — one large card at a time ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 40px);
  max-width: 940px;
  margin: 0 auto;
}
/* Just the artwork (titles already live in it) + a glowing silver/white edge */
.video {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow:
    0 0 0 1px rgba(214,221,230,.5),
    0 0 26px rgba(255,255,255,.5),
    0 0 60px rgba(206,214,226,.32),
    0 20px 60px rgba(78,56,35,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.video:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.7),
    0 0 34px rgba(255,255,255,.65),
    0 0 80px rgba(206,214,226,.42),
    0 26px 70px rgba(78,56,35,.16);
}
.video-thumb { position: absolute; inset: 0; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.video:hover .video-thumb img { transform: scale(1.04); }
/* Subtle centre vignette so the play button reads on any artwork */
.video-thumb::after {
  content:""; position: absolute; inset:0;
  background: radial-gradient(circle at center, rgba(20,15,12,.34), rgba(20,15,12,.06) 55%, transparent 72%);
}
.video-play {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,.4);
  transition: transform .3s ease, background .3s ease;
}
.video:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(255,255,255,.28); }
.video-play::after { content:""; margin-left: 5px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid currentColor; }
.videos-foot { margin-top: clamp(30px, 4vw, 44px); display: flex; justify-content: center; }

/* ---------- YouTube click-to-play embed (facade → iframe on click) ---------- */
.video-embed { position: relative; display: block; cursor: pointer; }
.video-embed::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at center, rgba(20,15,12,.32), rgba(20,15,12,.05) 58%, transparent 74%);
}
.video-embed .video-play { z-index: 3; }
.video-embed:hover .video-play { transform: translate(-50%, -50%) scale(1.06); background: rgba(255,255,255,.28); }
.video iframe, .video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4;
}
.video.playing .video-thumb,
.video-embed.playing::after,
.video-embed.playing > img,
.video-embed.playing > .video-play { display: none; }

/* ---------- Follow ---------- */
.follow {
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255,250,243,.88), rgba(233,221,208,.62)),
    url("assets/hero-universe.png") center/cover;
  background-blend-mode: screen;
  box-shadow: var(--shadow);
  text-align: center;
}
.follow h2 { max-width: 18ch; margin: 0 auto; }
.follow p { max-width: 52ch; margin: 16px auto 0; color: var(--muted); line-height: 1.7; }
.socials { display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; margin-top: 28px; }

/* ---------- Footer ---------- */
footer { padding: 30px 22px 44px; }
.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 16px;
  color: rgba(23,18,15,.52);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.mini-brand { display:flex; align-items:center; gap: 10px; letter-spacing: .12em; }
.mini-brand .brand-mark { width: 36px; height: 36px; font-size: 16px; }

/* ---------- Reveal animation (subtle, staggered) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.18,1),
    transform .85s cubic-bezier(.22,.61,.18,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Hero: slow Ken Burns settle ---------- */
.hero-bg { animation: kenburns 20s ease-out forwards; transform-origin: 60% 45%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

/* ---------- Live timer card: gentle gold pulse ---------- */
.release.coming.next { animation: nextPulse 3.2s ease-in-out infinite; }
@keyframes nextPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(179,133,76,0), 0 16px 46px rgba(78,56,35,.10); }
  50%      { box-shadow: 0 0 0 1px rgba(179,133,76,.4), 0 0 30px rgba(179,133,76,.28), 0 16px 46px rgba(78,56,35,.12); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: scale(1); }
  .release.coming.next { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Song page
   ========================================================= */
.song-main { padding-top: 116px; }
.song-wrap { width: min(1100px, 100%); margin: 0 auto; padding: 0 22px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: color .2s ease, gap .2s ease;
}
.back-link::before { content: "←"; }
.back-link:hover { color: var(--ink); gap: 11px; }

.song-cover {
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(23,18,15,.10);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--warm);
}
.song-cover img { width: 100%; height: 100%; object-fit: cover; }

.song-head { margin: clamp(28px, 5vw, 48px) 0 clamp(24px, 4vw, 40px); }
.song-head .mood { color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.song-head h1 { margin: 12px 0 0; }
.song-head .desc { margin: 18px 0 0; max-width: 58ch; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.song-head .actions { margin-top: 26px; }

.song-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 4vw, 48px);
}
.song-label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; margin: 0 0 16px; }
.lyrics .stanza { margin: 0 0 22px; }
.lyrics .stanza-label {
  display: block; margin: 0 0 8px;
  color: var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
}
.lyrics .stanza p { margin: 0; color: var(--ink); line-height: 1.95; font-size: 1.02rem; }
.lyrics .stanza.refrain p { color: var(--gold); font-style: italic; }

.song-nav {
  width: min(1100px, 100%); margin: clamp(40px, 6vw, 72px) auto 0; padding: 0 22px;
}
.song-nav-inner {
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.song-nav a { display: grid; gap: 4px; color: var(--muted); transition: color .2s ease; max-width: 46%; }
.song-nav a:hover { color: var(--ink); }
.song-nav a.next { text-align: right; }
.song-nav small { font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.song-nav strong { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 500; line-height: 1.05; }

/* =========================================================
   Shared sub-page primitives (despre / presă / versuri / asculta / 404)
   ========================================================= */
.page-main { padding-top: 116px; }
.page-wrap { width: min(var(--max), 100%); margin: 0 auto; padding: 0 22px; }
.page-head {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: clamp(8px, 2vw, 18px) 0 clamp(34px, 5vw, 58px);
}
.page-head .lead { margin: 18px auto 0; max-width: 54ch; }
.page-head .actions { justify-content: center; margin-top: 28px; }
.back-link.top { margin-bottom: 22px; }

/* Album feature (albume.html) */
.album-feature { padding: clamp(34px, 5vw, 60px) 0; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.album-feature:first-of-type { border-top: 0; padding-top: 0; }
.album-feature-head {
  display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 56px); align-items: center;
}
.album-feature-cover {
  border-radius: 22px; overflow: hidden; aspect-ratio: 1 / 1;
  border: 1px solid rgba(23,18,15,.10); box-shadow: var(--shadow); background: var(--warm);
}
.album-feature-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-feature-info .album-kicker { color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.album-feature-info h2 { margin: 12px 0 0; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.album-feature-info .desc { margin: 18px 0 0; max-width: 52ch; color: var(--muted); line-height: 1.78; font-size: 1.05rem; }
.album-feature-info .actions { margin-top: 24px; }
.album-tracklist-wrap { margin-top: clamp(28px, 4vw, 44px); }
.album-tracklist-wrap .song-label { margin-bottom: 16px; }

/* Footer link row (added across all pages) */
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 4px; justify-content: center; }
.footer-nav a {
  padding: 4px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: rgba(23,18,15,.62);
  transition: color .2s ease, background .2s ease;
}
.footer-nav a:hover { color: var(--ink); background: rgba(23,18,15,.05); }

/* =========================================================
   Smart link (asculta.html) — one song, every platform
   ========================================================= */
.smartlink { width: min(560px, 100%); margin: 0 auto; text-align: center; }
.smartlink-cover {
  margin: 0 auto 26px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(23,18,15,.10);
  box-shadow: var(--shadow);
  background: var(--warm);
}
.smartlink-cover img { width: 100%; height: 100%; object-fit: cover; }
.smartlink .mood { color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; margin: 0; }
.smartlink h1 { margin: 12px 0 0; }
.smartlink .desc { margin: 16px auto 0; max-width: 44ch; color: var(--muted); line-height: 1.7; }
.platforms { display: grid; gap: 12px; margin: clamp(28px, 4vw, 40px) 0 0; text-align: left; }
.platform {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 64px; padding: 0 16px 0 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,250,243,.74);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.platform:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 14px 34px rgba(78,56,35,.12); }
.platform .p-name { font-size: 15px; font-weight: 600; letter-spacing: .01em; }
.platform .p-cta {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 38px; padding: 0 16px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  color: var(--paper); background: var(--ink);
}
.platform.coming { opacity: .5; pointer-events: none; }
.platform.coming .p-cta { color: var(--muted); background: transparent; border: 1px solid var(--line); }

/* =========================================================
   Press / EPK (presa.html)
   ========================================================= */
.epk-section { border-top: 1px solid var(--line); padding-top: clamp(34px, 5vw, 56px); margin-top: clamp(40px, 6vw, 70px); }
.epk-section > .song-label { margin-bottom: 22px; }
.epk-bio { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 56px); }
.epk-bio p { margin: 0 0 16px; color: var(--muted); line-height: 1.8; font-size: 1.02rem; }
.epk-bio p:last-child { margin-bottom: 0; }
.fact-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.fact { background: rgba(255,250,243,.58); padding: 22px 20px; }
.fact dt { color: var(--gold); font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.fact dd { margin: 12px 0 0; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; line-height: 1.05; }
.asset-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.asset {
  display: block; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(23,18,15,.10); background: var(--warm);
  box-shadow: 0 12px 34px rgba(78,56,35,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}
.asset:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(78,56,35,.14); }
.asset img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.asset .asset-cap { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 13px 16px; font-size: 12.5px; font-weight: 600; }
.asset .asset-cap small { color: var(--gold); font-weight: 700; letter-spacing: .06em; }

/* =========================================================
   Lyrics index (versuri.html)
   ========================================================= */
.lyric-toc { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto clamp(40px, 6vw, 64px); max-width: 820px; }
.lyric-toc a {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,250,243,.7);
  font-size: 13px; font-weight: 600; color: rgba(23,18,15,.7);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.lyric-toc a:hover { transform: translateY(-2px); background: #fff; color: var(--ink); }
.lyric-entry {
  display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(34px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.lyric-entry .entry-aside { position: sticky; top: 110px; align-self: start; }
.lyric-entry .entry-cover { border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(23,18,15,.10); box-shadow: var(--shadow); background: var(--warm); }
.lyric-entry .entry-cover img { width: 100%; height: 100%; object-fit: cover; }
.lyric-entry .mood { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; margin: 18px 0 0; }
.lyric-entry h2 { margin: 10px 0 0; }
.lyric-entry .entry-links { display: flex; gap: 14px; margin-top: 16px; }
.lyric-entry .entry-links a { font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s ease; }
.lyric-entry .entry-links a:hover { color: var(--ink); }

/* =========================================================
   404
   ========================================================= */
.notfound { width: min(640px, 100%); margin: 0 auto; text-align: center; padding: clamp(40px, 8vw, 90px) 0; }
.notfound .big404 { font-family: "Cormorant Garamond", serif; font-size: clamp(5rem, 16vw, 9rem); line-height: 1; color: var(--gold); opacity: .5; }
.notfound h1 { margin: 8px 0 0; }
.notfound p { margin: 18px auto 0; max-width: 42ch; color: var(--muted); line-height: 1.7; }
.notfound .actions { justify-content: center; margin-top: 30px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .section-head, .about-statement, .song-body { grid-template-columns: 1fr; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .epk-bio { grid-template-columns: 1fr; }
  .album-feature-head { grid-template-columns: 1fr; }
  .album-feature-cover { max-width: 520px; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .asset-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lyric-entry { grid-template-columns: 1fr; }
  .lyric-entry .entry-aside { position: static; }
  .lyric-entry .entry-cover { max-width: 360px; }
}
@media (max-width: 640px) {
  .site-header { top: 10px; padding: 0 10px; }
  .nav { min-height: 56px; padding: 8px 10px 8px 14px; }
  .nav-links a:not(.listen) { display: none; }
  .hero-overlay { padding: 92px 16px; }
  .section { padding: 56px 16px; }
  .release-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  /* full-width copy needs a more even veil over the artwork */
  .desire-card::after { background: linear-gradient(180deg, rgba(250,246,239,.9), rgba(250,246,239,.78)); }
  .footer-nav { justify-content: center; }
  .album-feature-card { grid-template-columns: 1fr; gap: 24px; }
  .album-feature-art { max-width: 420px; }
  /* On touch the reveal is shown after the first tap — keep text readable */
  .release-reveal h3 { font-size: 1.6rem; }
  .song-nav a { max-width: 48%; }
  .fact-grid { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: 1fr; }
}
