/* ─────────────────────────────────────────
   atmosphericLWS — stylesheet
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:         #f5f0e8;
  --surface:    #ede7da;
  --surface2:   #e4ddd0;
  --surface3:   #d9d0c2;
  --border:     #cec5b4;
  --accent:     #5a6e2a;
  --accent-dim: #445220;
  --accent-glow:rgba(90,110,42,.12);
  --text:       #1a1208;
  --muted:      #7a6a55;
  --faint:      #b0a090;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

/* ── Scrollbar ───────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* ── Nav ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: background var(--transition), padding var(--transition);
}

nav.scrolled {
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

/* Nav text when floating over a hero image */
body.hero-has-image nav:not(.scrolled) .nav-links a { color: rgba(240,232,220,.7); }
body.hero-has-image nav:not(.scrolled) .nav-links a:hover { color: #fff; }
body.hero-has-image nav:not(.scrolled) .nav-socials a { color: rgba(240,232,220,.6); }
body.hero-has-image nav:not(.scrolled) .nav-socials a:hover { color: var(--accent); }
body.hero-has-image nav:not(.scrolled) .nav-hamburger span { background: rgba(240,232,220,.85); }

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: .75; }

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  opacity: .9;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-socials a {
  color: var(--muted);
  transition: color var(--transition);
}
.nav-socials a:hover { color: var(--accent); }

/* ── Hero ────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(90,110,42,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(60,80,25,.06) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .4s ease;
}

/* When a hero image is set */
#hero.has-image .hero-bg { opacity: 0; }

#hero.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 15, 0.45) 0%,
    rgba(8, 5, 15, 0.35) 50%,
    rgba(8, 5, 15, 0.55) 100%
  );
  pointer-events: none;
  z-index: 0;
}

#hero > * { position: relative; z-index: 1; }

#hero.has-image .hero-eyebrow { color: rgba(255,255,255,.75); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
#hero.has-image .hero-title   { color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5); }
#hero.has-image .hero-sub     { color: rgba(255,255,255,.9); text-shadow: 0 1px 16px rgba(0,0,0,.6); }
#hero.has-image .hero-scroll  { color: rgba(255,255,255,.4); }
#hero.has-image .scroll-line  { background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); }

/* Hero logo */
.hero-logo {
  height: clamp(60px, 10vw, 110px);
  width: auto;
  margin: 0 auto 36px;
  display: block;
  filter: brightness(0);
  transition: filter var(--transition);
}
#hero.has-image .hero-logo {
  filter: brightness(0) invert(1);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  word-break: break-word;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: #6e8830;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(90,110,42,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Both buttons over a hero image — frosted glass, no green */
#hero.has-image .btn-primary {
  background: rgba(8,5,15,.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
#hero.has-image .btn-primary:hover {
  background: rgba(8,5,15,.7);
  border-color: #fff;
  box-shadow: none;
  transform: translateY(-1px);
}
#hero.has-image .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  background: rgba(8,5,15,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#hero.has-image .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(8,5,15,.5);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeInUp 1.5s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Section commons ─────────────────── */
section {
  padding: 96px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

#featured  { padding-top: 80px; padding-bottom: 80px; }
#releases  { padding-top: 80px; scroll-margin-top: 70px; }
#playlists { padding-top: 80px; scroll-margin-top: 70px; }
#about     { padding-top: 80px; padding-bottom: 120px; scroll-margin-top: 70px; }
#contact   { padding-top: 80px; padding-bottom: 120px; scroll-margin-top: 70px; }
#featured, #featured-playlist { scroll-margin-top: 70px; }

/* Hero breaks out of section constraints — full viewport width */
section#hero {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-label {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.section-link {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.section-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── Divider ─────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 auto;
}

/* ── Featured Release ────────────────── */

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.featured-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.featured-card:hover .artwork-img { transform: scale(1.03); }

/* Placeholder artwork gradient (replace src with real image) */
.artwork-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  gap: 0;
}

.featured-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 24px;
  width: fit-content;
}

.featured-artist {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.featured-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

.featured-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}
.meta-value {
  font-size: .82rem;
  color: var(--muted);
}

.streaming-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface2);
  transition: all var(--transition);
}
.stream-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--surface3);
}
.stream-btn svg { width: 14px; height: 14px; }

/* ── Releases Grid ───────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.release-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.release-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,18,8,.13);
}

.release-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-artwork .artwork-placeholder,
.release-artwork img {
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
}
.release-card:hover .artwork-placeholder,
.release-card:hover img { transform: scale(1.05); }

.release-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,9,6,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.release-card:hover .release-overlay { opacity: 1; }

.release-spotify-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: transform var(--transition);
}
.release-spotify-link span {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 400;
}
.release-spotify-link:hover { transform: scale(1.08); }
.release-spotify-link.muted { opacity: .4; cursor: default; }

.release-info {
  padding: 16px 18px 20px;
}
.release-info .release-type {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.release-info .release-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.release-info .release-artist {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.release-info .release-year {
  font-size: .68rem;
  color: var(--faint);
  letter-spacing: .1em;
}

/* ── Playlists ───────────────────────── */
.playlists-intro {
  max-width: 540px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.playlist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.playlist-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,18,8,.11);
}

.playlist-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.playlist-artwork .artwork-placeholder,
.playlist-artwork img {
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
}
.playlist-card:hover .playlist-artwork .artwork-placeholder,
.playlist-card:hover .playlist-artwork img { transform: scale(1.04); }

.playlist-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(12,9,6,.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.playlist-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.playlist-info .playlist-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.playlist-info .playlist-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.playlist-info .playlist-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.playlist-tracks {
  font-size: .72rem;
  color: var(--faint);
  letter-spacing: .08em;
}
.playlist-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: auto;
  transition: gap var(--transition);
}
.playlist-link:hover { gap: 8px; }

/* ── Artwork gradients ───────────────── */
.grad-1 { background: linear-gradient(135deg, #2e1a0a 0%, #5a3212 40%, #8c4e1e 70%, #3a2010 100%); }
.grad-2 { background: linear-gradient(135deg, #1a1828 0%, #2e2848 40%, #4a3018 80%, #1e1810 100%); }
.grad-3 { background: linear-gradient(135deg, #142010 0%, #28481a 40%, #5a4010 70%, #1a1808 100%); }
.grad-4 { background: linear-gradient(145deg, #2a1408 0%, #6e3018 45%, #a05020 75%, #2e1808 100%); }
.grad-5 { background: linear-gradient(135deg, #18142a 0%, #302248 40%, #522810 75%, #180e08 100%); }
.grad-6 { background: linear-gradient(135deg, #200e0e 0%, #481818 40%, #7a3810 70%, #281008 100%); }
.grad-7 { background: linear-gradient(145deg, #0e1e1a 0%, #183a2e 40%, #3a2808 70%, #141008 100%); }
.grad-featured { background: linear-gradient(160deg, #2e1808 0%, #6e3a18 30%, #a85e28 55%, #5a2e10 75%, #221008 100%); }

/* ── Pagination ──────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .78rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.page-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }
.page-dots { color: var(--faint); font-size: .78rem; padding: 0 4px; }

/* ── Featured Playlist ───────────────── */
.featured-playlist-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.featured-playlist-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.featured-playlist-artwork img,
.featured-playlist-artwork .artwork-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.featured-playlist-card:hover .featured-playlist-artwork img { transform: scale(1.03); }

.featured-playlist-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
}

.featured-playlist-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 24px;
  width: fit-content;
}

.featured-playlist-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.featured-playlist-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

/* ── Artists ─────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.artist-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,18,8,.13);
}

.artist-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.artist-photo img,
.artist-photo .artwork-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.artist-card:hover .artist-photo img { transform: scale(1.04); }

.artist-info {
  padding: 18px 20px 22px;
}
.artist-info .artist-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.artist-info .artist-bio-snippet {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Artist modal ────────────────────── */
/* ── Artist detail page ───────────────────── */
.artist-page-hero {
  position: relative;
  min-height: 34vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.artist-page-hero-bg {
  position: absolute;
  inset: 0;
}
.artist-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,5,15,.3) 0%, rgba(8,5,15,.75) 100%);
}
.artist-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 64px;
  width: 100%;
}
.artist-page-back {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color .2s;
}
.artist-page-back:hover { color: #fff; }
.artist-page-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

/* Profile row: photo left, bio right */
.artist-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 64px 56px;
  align-items: start;
}
.artist-profile-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg, #1a1520);
}
.artist-profile-photo img,
.artist-profile-photo .artwork-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-profile-info { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.artist-profile-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}
.artist-streaming-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.streaming-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,190,175,.2);
  color: rgba(200,190,175,.45);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  flex-shrink: 0;
}
.streaming-icon-btn:hover { color: rgba(240,232,220,.9); border-color: rgba(200,190,175,.5); }
.streaming-spotify:hover  { color: #1DB954; border-color: rgba(29,185,84,.5); }
.streaming-youtube:hover  { color: #FF3333; border-color: rgba(255,51,51,.45); }
.streaming-apple:hover    { color: #fc3c44; border-color: rgba(252,60,68,.45); }
.artist-page-bio {
  font-size: .92rem;
  line-height: 1.95;
  color: var(--muted);
}

@media (max-width: 800px) {
  .artist-page-hero { min-height: 24vh; }
  .artist-page-hero-content { padding: 12px 16px; }
  .artist-page-back { margin-bottom: 8px; }
  .artist-page-name { font-size: clamp(2rem, 8vw, 3.5rem); }
  .artist-profile {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }
  .artist-profile-photo { max-width: 280px; }
}

/* ── Artist modal ─────────────────────────── */
.artist-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,7,3,.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.artist-modal-backdrop.open { opacity: 1; }

.artist-modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.artist-modal-backdrop.open .artist-modal { transform: translateY(0); }

.artist-modal-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.artist-modal-photo img,
.artist-modal-photo .artwork-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.artist-modal-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artist-modal-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-bottom: 24px;
}
.artist-modal-close:hover { border-color: var(--accent); color: var(--accent); }

.artist-modal-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
}
.artist-modal-spotify {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1DB954;
  border: 1px solid rgba(29,185,84,.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.artist-modal-spotify:hover {
  background: rgba(29,185,84,.08);
  border-color: #1DB954;
}
.artist-modal-bio {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.artist-modal-discography h4 {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}
.artist-modal-releases {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.artist-release-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition);
}
.artist-release-row:hover { border-color: var(--accent-dim); }
.artist-release-thumb {
  width: 40px; height: 40px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.artist-release-thumb img,
.artist-release-thumb .mini-grad {
  width: 100%; height: 100%;
  object-fit: cover;
}
.artist-release-meta { flex: 1; min-width: 0; }
.artist-release-title { font-size: .85rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-release-sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 700px) {
  .artist-modal { grid-template-columns: 1fr; }
  .artist-modal-photo { aspect-ratio: 1; }
}

/* ── Footer ──────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}


.footer-brand p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.footer-col h4 {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: .82rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .72rem;
  color: var(--faint);
  letter-spacing: .06em;
}

/* ── Animations ──────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Artist page — white nav when transparent ── */
body.artist-dark-nav nav:not(.scrolled) .nav-logo-img       { filter: brightness(0) invert(1); }
body.artist-dark-nav nav:not(.scrolled) .nav-links a        { color: rgba(240,232,220,.7); }
body.artist-dark-nav nav:not(.scrolled) .nav-links a:hover  { color: #fff; }
body.artist-dark-nav nav:not(.scrolled) .nav-socials a      { color: rgba(240,232,220,.6); }
body.artist-dark-nav nav:not(.scrolled) .nav-hamburger span { background: rgba(240,232,220,.85); }

/* ── Hamburger button ─────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition: background .2s;
}

/* ── Mobile menu overlay ──────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,5,15,.97);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-logo {
  height: 36px;
  width: auto;
  margin-bottom: 32px;
  opacity: .8;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu ul a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(240,232,220,.8);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}
.mobile-menu ul a:hover { color: #fff; }
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(240,232,220,.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color .2s;
}
.mobile-menu-close:hover { color: rgba(240,232,220,.9); }

/* ── Responsive ──────────────────────── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 72px 24px; }

  .featured-card { grid-template-columns: 1fr; }
  .featured-artwork { aspect-ratio: 4/3; }
  .featured-info { padding: 36px 28px; }
  .featured-playlist-card { grid-template-columns: 1fr; }
  .featured-playlist-artwork { aspect-ratio: 4/3; }
  .featured-playlist-info { padding: 36px 28px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  footer { padding: 48px 24px 32px; }
}

@media (max-width: 600px) {
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .playlists-grid { grid-template-columns: 1fr; }
}

/* ── Contact ─────────────────────────── */
#contact { padding-top: 80px; padding-bottom: 120px; scroll-margin-top: 70px; }

.contact-wrap { max-width: 640px; }

.contact-intro {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-full { grid-column: 1 / -1; }

.contact-field label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
}

.contact-field input,
.contact-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 12px 14px;
  transition: border-color .2s, background .2s;
  resize: vertical;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--faint); }

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  background: var(--surface2);
}

.contact-field textarea { min-height: 130px; }

.contact-actions { margin-top: 24px; }

.contact-submit {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.contact-submit:hover:not(:disabled) {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}

.contact-submit:disabled { opacity: .5; cursor: not-allowed; }

.contact-status {
  margin-top: 14px;
  font-size: .88rem;
  min-height: 1.4em;
}

.contact-status-ok  { color: #3a7a35; }
.contact-status-err { color: #b94040; }

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

/* ── Coming Soon ─────────────────────────── */
#coming-soon { scroll-margin-top: 70px; }

.coming-soon-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.coming-soon-artwork {
  aspect-ratio: 1;
  overflow: hidden;
}

.coming-soon-artwork img { width: 100%; height: 100%; object-fit: cover; }

.coming-soon-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.coming-soon-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.coming-soon-artist {
  font-size: 1rem;
  color: var(--muted);
}

.coming-soon-date {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
}

.coming-soon-teaser {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .coming-soon-card { grid-template-columns: 1fr; }
  .coming-soon-artwork { aspect-ratio: 4/3; }
  .coming-soon-info { padding: 36px 28px; }
}

/* ── Coming Soon Carousel ────────────────── */
.cs-carousel {
  position: relative;
}

.cs-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cs-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.cs-track .coming-soon-card {
  min-width: 100%;
  border-radius: 0;
  border: none;
}

.cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.cs-arrow:hover { background: var(--surface2); color: var(--text); border-color: var(--accent); }
.cs-prev { left: -22px; }
.cs-next { right: -22px; }

.cs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.cs-dot.active { background: var(--accent); transform: scale(1.3); }

@media (max-width: 900px) {
  .cs-prev { left: -12px; }
  .cs-next { right: -12px; }
}
