/* ─────────────────────────────────────────────
   press.css — EPK page styles for /press
   Scoped to .press-page (body class)
   Inherits Afro-futurist color palette from artist.css
───────────────────────────────────────────── */

/* ── Custom properties ── */
:root {
  --gold:        #d4a853;
  --gold-light:  #f0c060;
  --purple:      #1a0a2e;
  --purple-mid:  #2d1560;
  --purple-hi:   #7c3aed;
  --dark:        #0a0612;
  --text:        #f0ece8;
  --text-muted:  #a09090;
  --card-bg:     rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius:      12px;
  --radius-lg:   20px;
  --gutter:      clamp(1rem, 4vw, 2rem);
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.press-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.lang-hidden { display: none !important; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section ── */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-hi));
  margin-top: 0.5rem;
  border-radius: 2px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ── Nav ── */
.press-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(10, 6, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

.nav-active {
  color: var(--gold) !important;
}

/* ── Hero ── */
.press-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--gutter) 5rem;
  overflow: hidden;
  text-align: center;
}

.press-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.3) saturate(1.2);
  transform: scale(1.05);
}

.press-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,18,0.3) 0%,
    rgba(10,6,18,0.2) 40%,
    rgba(10,6,18,0.95) 100%
  );
}

/* Afro-futurist geometric overlay on press hero */
.press-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(212,168,83,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.press-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.epk-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(212,168,83,0.08);
}

.hero-artist {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--purple-hi) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 520px;
}

.hero-label-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: linear-gradient(135deg, var(--gold), var(--purple-hi));
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── Bio section ── */
.bio-section { background: linear-gradient(to bottom, var(--dark), rgba(26,10,46,0.5)); }

.lang-toggle {
  display: flex;
  gap: 0.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  padding: 0.35rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--purple-hi), var(--gold));
  color: #fff;
}

.bio-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.bio-size-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 1rem;
}

.bio-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 760px;
}

.bio-text p { margin-bottom: 1rem; }
.bio-text p:last-child { margin-bottom: 0; }

/* ── Press Shots ── */
.shots-section { background: rgba(26,10,46,0.4); }

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shot-card { display: flex; flex-direction: column; gap: 0.75rem; }

.shot-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card-bg);
}

.shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shot-card:hover .shot-img { transform: scale(1.04); }

.shot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,6,18,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.shot-card:hover .shot-overlay { opacity: 1; }

.shot-dl-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--purple-hi));
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: transform 0.15s;
}

.shot-dl-btn:hover { transform: translateY(-1px); }

.shot-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Music & Streaming ── */
.music-section { background: var(--dark); }

.music-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

/* Cover art card */
.cover-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cover-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--card-bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,83,0.1);
}

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

.cover-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cover-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.cover-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cover-artist {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cover-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,83,0.06);
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}

.cover-dl-btn:hover {
  background: rgba(212,168,83,0.12);
  border-color: rgba(212,168,83,0.5);
}

/* DSP card */
.dsp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dsp-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.dsp-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dsp-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
}

.dsp-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.feeling-btn {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-hi));
  color: #fff;
}

.apple-btn { background: #fc3c44; color: #fff; }
.yt-btn    { background: #ff0000; color: #fff; }
.sc-btn    { background: #ff5500; color: #fff; }

.dsp-icon {
  font-size: 1rem;
  line-height: 1;
}

.dsp-coming {
  padding: 1rem;
  background: rgba(212,168,83,0.05);
  border: 1px dashed rgba(212,168,83,0.3);
  border-radius: var(--radius);
}

.coming-chip {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
}

/* ── Quick Facts ── */
.facts-section { background: rgba(26,10,46,0.3); }

.facts-table-wrap {
  max-width: 560px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--card-border);
}

.fact-key, .fact-val {
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}

.fact-key {
  font-weight: 600;
  color: var(--text-muted);
  width: 160px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fact-val {
  font-weight: 500;
  color: var(--text);
}

/* ── Press Quotes ── */
.quotes-section { background: var(--dark); }

.quotes-placeholder {
  background: var(--card-bg);
  border: 1px dashed rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 600px;
}

.placeholder-icon {
  font-size: 2rem;
  color: rgba(212,168,83,0.3);
}

.placeholder-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}

.placeholder-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.7;
}

.placeholder-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Contact ── */
.contact-section { background: rgba(26,10,46,0.5); }

.contact-card {
  position: relative;
  background: linear-gradient(135deg, rgba(45,21,96,0.6) 0%, rgba(10,6,18,0.85) 100%);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  max-width: 680px;
}

.contact-art {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-body { position: relative; z-index: 1; }

.contact-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-email {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.contact-email:hover { color: #fff; }

.contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 440px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--purple-hi));
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.2s, transform 0.15s;
}

.contact-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.contact-btn-ghost {
  background: transparent;
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
}

.contact-btn-ghost:hover { background: rgba(212,168,83,0.08); }

/* ── Downloads ── */
.downloads-section { background: var(--dark); }

.dl-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
}

.dl-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.dl-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.3);
  transform: translateX(4px);
}

.dl-thumb-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  flex-shrink: 0;
}

.dl-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dl-thumb-zip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-hi));
}

.dl-zip-icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.dl-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dl-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.dl-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.dl-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.dl-item-bundle { border-style: dashed; border-color: rgba(212,168,83,0.2); }

/* ── Footer ── */
.press-footer {
  border-top: 1px solid var(--card-border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.press-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text); }
.footer-nav-active { color: var(--gold) !important; }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav-links { gap: 1rem; }
  .nav-link { font-size: 0.75rem; }
  .shots-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-btn { text-align: center; }
  .footer-nav { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
