/* ============================================================
   [ARTIST NAME] — Music Site Stylesheet
   ============================================================
   DESIGN SYSTEM
   A refined, editorial aesthetic that works across genres.
   Warm off-black background, cream text, and a single
   accent color you can swap to match your brand.

   To change the accent color: edit --accent below.
   To change the feel from dark to light: swap --bg and --ink.
   ============================================================ */

:root {
  /* Core palette */
  --bg: #0e0d0b;               /* deep warm near-black */
  --bg-soft: #171512;          /* slightly lifted panel */
  --bg-elev: #1f1c18;          /* elevated card */
  --ink: #f2ede4;              /* warm cream text */
  --ink-dim: #b8b1a4;          /* muted body text */
  --ink-faint: #6e695f;        /* captions, labels */
  --line: #2a2620;             /* dividers */
  --accent: #d4a574;           /* warm amber — change this to rebrand */
  --accent-ink: #0e0d0b;       /* text on accent buttons */

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: 0.7; }
ul, ol { list-style: none; }

/* Subtle film grain overlay for texture — commented out by default.
   Uncomment if you want a more atmospheric feel.
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
*/

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-dim);
  max-width: 50ch;
  margin-top: 1rem;
}

.section-head {
  margin-bottom: 3rem;
}
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 0.7rem 1.2rem; font-size: 0.82rem; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: var(--ink);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(14, 13, 11, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease);
}

/* ============================================================
   HERO
   ============================================================
   The hero uses images/social-card.jpg as its background photo.
   To swap it: either replace that file (keep the same filename)
   or update the url() reference below.

   A light gradient overlay sits on top of the photo so the
   "Child of The King" heading stays readable while letting the
   photo show through. If your photo is especially bright, raise
   the overlay opacities (e.g. 0.50 / 0.60 / 0.85). If it's very
   dark, lower them toward 0.15 / 0.25 / 0.50 or remove entirely.
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(
      to bottom,
      rgba(14, 13, 11, 0.30) 0%,
      rgba(14, 13, 11, 0.45) 60%,
      rgba(14, 13, 11, 0.70) 100%
    ),
    url('images/social-card.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle at center, rgba(212, 165, 116, 0.18), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  /* Sized so "Child of The King" (17 characters) stays on a single
     line from small phones (~320px) up through desktop. If you
     change the headline text to something longer, reduce the 9vw
     value (e.g. 8vw) or lower the 8rem max. */
  font-size: clamp(1.75rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 2rem;
  white-space: nowrap;
}
.hero-line {
  display: block;
  white-space: nowrap;
  animation: riseIn 1.2s var(--ease) backwards;
}
.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.25s; }
.hero-line.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  padding-left: 2rem;
}

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

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 40ch;
  margin-bottom: 2.5rem;
  animation: riseIn 1.2s var(--ease) 0.5s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: riseIn 1.2s var(--ease) 0.7s backwards;
}

.hero-marquee {
  margin-top: 5rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-faint);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   MUSIC PLAYER SECTION
   ============================================================ */
.music-section {
  padding: 6rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

/* ---- Album switcher tabs (rendered by app.js) ---- */
.album-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding-bottom: 0.25rem;
}
.album-tab {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.album-tab:hover {
  color: var(--ink);
  border-color: var(--ink-faint);
}
.album-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 500;
}
.album-tab-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.album-tab-year {
  font-size: 0.78rem;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}
.album-tab.active .album-tab-year { opacity: 0.9; }
.album-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* On narrow screens, tabs scroll horizontally instead of wrapping */
@media (max-width: 560px) {
  .album-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .album-tab { flex-shrink: 0; }
}

/* Empty-state / error row for the tracklist */
.track-error {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-dim);
  font-size: 0.92rem;
}
.track-error strong { color: var(--ink); font-weight: 500; }

.player {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.np {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
}

.np-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-elev) center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .6s var(--ease);
}
.np.playing .np-art {
  transform: scale(1.02);
}

.np-meta { display: flex; flex-direction: column; gap: 0.85rem; }

.np-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.np-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.np-artist {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ctrl {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: all .2s var(--ease);
}
.ctrl:hover { color: var(--ink); background: var(--bg-elev); }

.ctrl-play {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--accent-ink);
}
.ctrl-play:hover {
  background: var(--ink);
  color: var(--bg);
  transform: scale(1.05);
}

.np-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.time {
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  color: var(--ink-faint);
  min-width: 3ch;
}

/* Styled range sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .15s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); }
input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.np-volume {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-faint);
}
.np-volume input[type="range"] { max-width: 120px; }

/* Tracklist */
.tracklist {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s var(--ease);
  border: 1px solid transparent;
}
.track:hover {
  background: var(--bg-soft);
  border-color: var(--line);
}
.track.active {
  background: var(--bg-soft);
  border-color: var(--accent);
}

.t-num {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.track.active .t-num { color: var(--accent); }

.t-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.t-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-album {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.t-play {
  font-size: 0.75rem;
  color: var(--ink-faint);
  transition: all .2s var(--ease);
}
.track:hover .t-play, .track.active .t-play { color: var(--accent); }

/* ---- Per-track stats: plays / like / dislike ---- */
.t-stats {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}
.t-plays,
.t-vote {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  transition: color .2s var(--ease), transform .1s var(--ease);
}
.t-vote {
  padding: 0.25rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.t-vote:hover {
  color: var(--ink);
  border-color: var(--line);
}
.t-vote:active { transform: scale(0.95); }

/* Active (user-voted) states */
.t-vote.t-like.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(212, 165, 116, 0.08);
}
.t-vote.t-dislike.active {
  color: #d4574d;
  border-color: #d4574d;
  background: rgba(212, 87, 77, 0.08);
}

/* When voted, fill the SVG for visual emphasis */
.t-vote.active svg { fill: currentColor; stroke-width: 1.5; }

.t-count {
  font-weight: 500;
  min-width: 1ch;
}

/* Keep stats from hijacking the track-row click when icons are tapped */
.t-vote:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Per-track download link — sits inside .t-stats next to votes */
.t-download {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--ink-faint);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .1s var(--ease);
}
.t-download:hover {
  color: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}
.t-download:active { transform: scale(0.95); }
.t-download:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* On very narrow screens, drop the "Download" word; keep the icon */
@media (max-width: 560px) {
  .t-download-text { display: none; }
}

/* ============================================================
   ALBUM DOWNLOAD CARD
   ============================================================ */
.album-download {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.5rem;
  margin: 0 0 3rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.album-download-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-elev) center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.album-download-body { display: flex; flex-direction: column; gap: 0.5rem; }
.album-download-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0.25rem 0 0.15rem;
}
.album-download-meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.album-download-license {
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 58ch;
  margin: 0.25rem 0 0.85rem;
}
.album-download-license a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
}
.album-download-license a:hover {
  border-bottom-color: var(--accent);
  opacity: 1;
}
.album-download .btn {
  align-self: flex-start;
}

@media (max-width: 700px) {
  .album-download {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .album-download-cover {
    max-width: 220px;
    margin: 0 auto;
  }
  .album-download-license { margin-left: auto; margin-right: auto; }
  .album-download .btn { align-self: center; width: 100%; justify-content: center; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 6rem var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: filter .6s var(--ease);
}
.about-photo:hover img { filter: grayscale(0%) contrast(1); }
.photo-caption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(14, 13, 11, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.about-copy .lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.01em;
}

.about-copy p + p { margin-top: 1.25rem; color: var(--ink-dim); }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.fact { display: flex; flex-direction: column; gap: 0.35rem; }
.fact-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.fact-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

/* ============================================================
   LISTEN / PLATFORMS SECTION
   ============================================================ */
.listen-section {
  padding: 6rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.platform:hover {
  opacity: 1;
  background: var(--bg-elev);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.platform-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.platform-arrow {
  color: var(--ink-faint);
  font-size: 1.1rem;
  transition: all .3s var(--ease);
}
.platform:hover .platform-arrow { color: var(--accent); transform: translateX(4px); }

/* ============================================================
   CONNECT SECTION
   ============================================================ */
.connect-section {
  padding: 6rem var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.connect-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.connect-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  text-align: left;
}
.connect-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.connect-email {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.connect-email:hover { opacity: 1; border-bottom-color: var(--accent); }

.social-list { display: flex; flex-direction: column; gap: 0.5rem; }
.social-list a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.social-list a::after {
  content: ' →';
  color: var(--ink-faint);
  transition: transform .2s var(--ease);
  display: inline-block;
}
.social-list a:hover { opacity: 1; color: var(--accent); }

.connect-sub {
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.7rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 3rem var(--gutter) 2rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-copy, .footer-built, .footer-legal {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-legal a { color: var(--ink-dim); }
.footer-legal a:hover { color: var(--accent); opacity: 1; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .player { grid-template-columns: 1fr; gap: 2rem; }
  .np { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 400px; }
  .connect-cols { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .newsletter { justify-content: center; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-line.italic { padding-left: 1rem; }
  .about-facts { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 560px) {
  .hero { padding-top: 6rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .track { grid-template-columns: auto 1fr; }
  .t-play { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
