/* ---- THEME 1: "Manuscript" (ACTIVE) ----------------------
    Warm off-white page, deep maroon/ink accent, serif-forward.
    feels literary, like a page out of an old book. */
/* :root {
  --bg: #f3ede2;
  --bg-raised: #eae1d0;
  --text: #241d17;
  --text-muted: #6b5f4f;
  --accent: #7a2028;
  --line: rgba(36, 29, 23, 0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 2px;
} */

/* ---- THEME 2: "Modal Dusk" --------------------------------
    Dark charcoal, deep teal + gold accent.*/
:root {
  --bg: #1b1f1e;
  --bg-raised: #232927;
  --text: #ece7dc;
  --text-muted: #9aa39d;
  --accent: #c99a3a;
  --line: rgba(236, 231, 220, 0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 2px;
}

/* ---- THEME 3: "Monolith" -----------------------------------
    Near-black, single stark white accent, heavy sans, lots of negative space. */
/* :root {
  --bg: #0a0a0a;
  --bg-raised: #161616;
  --text: #f2f2f2;
  --text-muted: #8a8a8a;
  --accent: #f2f2f2;
  --line: rgba(242, 242, 242, 0.16);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 0px;
} */

/* ---- THEME 4: "Glacial" -------------------------------------
    Cool gray-blue, single icy accent, minimal. */
/* :root {
  --bg: #eef1f3;
  --bg-raised: #e0e6ea;
  --text: #1c2226;
  --text-muted: #5c6a71;
  --accent: #2f6f8f;
  --line: rgba(28, 34, 38, 0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 2px;
} */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}
.eyebrow {
  /* font-size: 0.75rem; */
  font-size: 1.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8em;
}
p.muted { color: var(--text-muted); }

/* ============================================================
   HERO
   Image sits centered at 45% width. Title/tagline sit in a
   left-aligned block whose max-width/padding matches the
   two-column grid below, so the text lines up with the left
   column's left edge. Symmetric top/bottom space comes from
   the .hero padding (not a fixed height), so it stays balanced
   as the image size changes.
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 72px 0 64px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.55) saturate(1.1);
  transform: scale(1.2);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-photo {
  width: 45%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
/* Blocks the easy right-click-save / drag-out path. Not real DRM —
   see the media-protection notes in main.js for what actually helps. */
.protected-media {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
.hero-text {
  align-self: flex-start;
  text-align: left;
  max-width: 60ch;
}
.hero-text h1 {
  color: #fdfaf4;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 0.3em 0;
}
.hero-text .tagline {
  color: rgba(253, 250, 244, 0.92);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 0;
  max-width: 40ch;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.content-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 80px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.panel {
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 32px;
}
.panel.plain {
  background: transparent;
  padding: 0;
}

#pitch {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
}

.panel p { margin: 0 0 1.1em 0; }
.panel p:last-child { margin-bottom: 0; }

/* Section headers used inside panels (EP header, Listen headline) */
.panel-header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.6em 0;
}

/* Tracklist */
.track {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.track:last-of-type { border-bottom: 1px solid var(--line); }
.track-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.track-title { font-family: var(--font-display); font-size: 1.05rem; }
.track-time {
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}
.track audio {
  width: 100%;
  height: 32px;
}

/* Listen box + platform buttons */
.listen-box { text-align: center; }
.listen-box .subtitle {
  margin: -0.3em 0 0.6em 0;
}
.platform-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.platform-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.platform-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
}
.platform-icon svg { width: 100%; height: 100%; }
.platform-label { flex: 1; text-align: center; margin-right: 20px; }

.platform-btn.is-pending {
  cursor: default;
  color: var(--text-muted);
  opacity: 0.6;
}
.platform-btn.is-pending:hover {
  background: var(--bg);
  color: var(--text-muted);
  border-color: var(--line);
}
.platform-btn.is-pending .platform-label { margin-right: 8px; }
.pending-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}

/* Social badges */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 16px 0;
}
.social-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.social-badge:hover { opacity: 0.7; }
.social-badge.is-pending {
  opacity: 0.4;
  cursor: default;
}
.social-badge.is-pending:hover { opacity: 0.4; }
.social-icon { width: 18px; height: 18px; }

/* Contact / footer panel */
.contact-panel { text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.contact-panel a { color: var(--text-muted); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 760px) {
  .hero { padding: 48px 0 40px 0; }
  .hero-photo { width: 62%; }
  .hero-text { align-self: center; text-align: center; }
  .content-grid {
    grid-template-columns: 1fr;
    padding: 32px 20px 60px 20px;
  }
  .panel { padding: 24px; }
}
