/* ===========================
   CHOP SUE OFFICIAL PRESS KIT
   style.css — 2026
=========================== */

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

:root {
  --bg: #050507;
  --bg2: #0a0a0f;
  --gold: #c9a84c;
  --gold2: #f0c040;
  --white: #f0ede8;
  --grey: #888;
  --grey2: #444;
  --border: rgba(201,168,76,0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- CANVAS BG ---- */
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ---- SHARED ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  color: var(--white);
}

.gold { color: var(--gold); }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

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

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn-pdf {
  background: var(--gold);
  color: #000;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-pdf:hover { background: var(--gold2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5,5,7,0.98);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--grey);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 15rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s 0.4s both;
  text-shadow: 0 0 80px rgba(201,168,76,0.2);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-top: 1.5rem;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.8s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-top: 0.25rem;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 1s both;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.5rem;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-primary.sm { font-size: 0.85rem; padding: 0.6rem 1.5rem; }

.btn-outline {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(240,192,64,0.4);
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  animation: pulse 2s infinite;
}

/* ---- BIO ---- */
#bio { background: rgba(10,10,15,0.5); }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.bio-text h2 { margin-bottom: 1.5rem; }

.bio-text p {
  color: rgba(240,237,232,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.bio-text em { color: var(--white); font-style: normal; }
.bio-text strong { color: var(--gold); }

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.bio-tags span {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
}

.bio-card-inner {
  background: rgba(15,15,20,0.8);
  border: 1px solid var(--border);
  overflow: hidden;
}

.bio-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0a0a12 0%, #1a1520 50%, #0d0d18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.bio-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.bio-img-text {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  position: relative;
}

.bio-img-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--grey2);
  margin-top: 0.5rem;
  position: relative;
}

.bio-facts { padding: 1.5rem; }

.fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fact:last-child { border-bottom: none; }

.fact-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

.fact-val {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}

.fact-val a {
  color: var(--gold);
  text-decoration: none;
}

/* ---- RELEASES ---- */
#releases { background: var(--bg); }

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

.release-card {
  background: rgba(10,10,15,0.8);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
}

.release-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.release-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  z-index: 2;
}

.release-cover {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.release-card:hover .release-cover img {
  transform: scale(1.05);
}

.release-card.featured .release-cover {
  aspect-ratio: auto;
  min-height: 200px;
  height: 100%;
}

.release-art-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.2;
}

.release-info {
  padding: 1.25rem;
}

.release-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.release-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.release-desc {
  font-size: 0.875rem;
  color: rgba(240,237,232,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.release-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.release-btn:hover { background: var(--gold); color: #000; }

/* ---- STREAM ---- */
#stream { background: rgba(10,10,15,0.5); }

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.stream-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.stream-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.05); }

.stream-card svg { width: 36px; height: 36px; }

.stream-card.spotify { color: #1db954; }
.stream-card.spotify svg { fill: #1db954; }
.stream-card.apple { color: #fc3c44; }
.stream-card.apple svg { fill: #fc3c44; }

.stream-icon-text {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

/* ---- PITCH ---- */
#press { background: var(--bg); }

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pitch-card {
  background: rgba(10,10,15,0.8);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}

.pitch-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.35); }

.pitch-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.pitch-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pitch-card p {
  font-size: 0.875rem;
  color: rgba(240,237,232,0.65);
  line-height: 1.7;
}

/* ---- LINKS ---- */
#links { background: rgba(10,10,15,0.5); }

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 700px;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(10,10,15,0.8);
  border: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.link-row:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.05); transform: translateX(4px); }

.link-icon { font-size: 1.1rem; flex-shrink: 0; }

.link-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.link-arrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.link-row:hover .link-arrow { opacity: 1; }

/* ---- CONTACT ---- */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.contact-block {
  background: rgba(10,10,15,0.8);
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-block p {
  font-size: 0.85rem;
  color: rgba(240,237,232,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-action:last-child { border-bottom: none; }

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

.contact-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold2); }

.featured-contact { border-color: rgba(201,168,76,0.35); }

.latest-release-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.lr-art {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a0a00, #7a2a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}

.lr-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem !important;
  color: var(--white) !important;
}

.lr-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem !important;
  color: var(--grey) !important;
  margin-bottom: 0.75rem !important;
}

/* ---- FOOTER ---- */
#footer {
  background: rgba(5,5,7,0.98);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

.footer-links-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links-grid a {
  color: var(--grey);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links-grid a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--grey2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- PRINT ---- */
@media print {
  #bgCanvas, #nav, .scroll-hint, .hamburger, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 2rem 0; break-inside: avoid; }
  .hero-name { font-size: 5rem; }
  .btn-pdf { display: none; }
  .release-cover { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  a { color: #000 !important; }
  h2, .gold, .nav-logo, .footer-name { color: #c9a84c !important; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-card { max-width: 400px; }
  .bio-img-placeholder { aspect-ratio: 16/9; }
  .release-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .release-card.featured .release-cover { min-height: 180px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .hero-name { font-size: clamp(4rem, 25vw, 8rem); }
  .hero-stats { gap: 1rem; }
  .releases-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links-grid { gap: 1rem; }
  .footer-bottom { flex-direction: column; }
  .stream-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-grid { grid-template-columns: 1fr; }
}
