/* VDB Artist Management & Support — public site styles */

:root {
  --background: #0a0a0b;
  --background-elevated: #131315;
  --foreground: #f5f5f5;
  --muted: #9a9a9f;
  --border: #232326;
  --silver-1: #e8e8ec;
  --silver-2: #b7b7bd;
  --silver-3: #7c7c82;
  --gold: #cbad83;
  --danger: #e0554f;
  --success: #4caf7d;
  --font-sans: ui-sans-serif, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--silver-1); color: #0a0a0b; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }

/* Chrome / brushed-silver text */
.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #cfcfd4 28%, #8f8f96 52%, #dcdce0 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tracked-label { letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.75rem; color: var(--silver-3); }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }

/* Waveform mark */
.waveform { display: inline-flex; align-items: center; gap: 3px; height: 1.5rem; }
.waveform span { display: block; width: 2px; border-radius: 1px; background: currentColor; }
@keyframes waveform-pulse { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }
.waveform-animated span { animation: waveform-pulse 1.1s ease-in-out infinite; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid rgba(35,35,38,0.8);
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(8px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 36px; height: 36px; border-radius: 4px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; gap: 0.35rem; }
.brand-word .vdb { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; }
.brand-word .tag { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--muted); }
.brand-word .rule { height: 1px; width: 2rem; background: rgba(203,173,131,0.7); }
.main-nav { display: flex; align-items: center; gap: 1.5rem; font-size: 0.9rem; }
.main-nav a.nav-link { color: var(--silver-2); transition: color 0.15s; }
.main-nav a.nav-link:hover { color: var(--foreground); }
.main-nav a.nav-cta { border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 1rem; color: var(--silver-1); transition: border-color 0.15s, color 0.15s; }
.main-nav a.nav-cta:hover { border-color: var(--silver-2); color: var(--foreground); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; padding: 0.65rem 1.5rem; font-size: 0.9rem; font-weight: 500; transition: opacity 0.15s, border-color 0.15s; cursor: pointer; border: none; }
.btn-primary { background: var(--foreground); color: var(--background); }
.btn-primary:hover { opacity: 0.85; }
.btn-outline { border: 1px solid var(--border); color: var(--silver-1); background: transparent; }
.btn-outline:hover { border-color: var(--silver-2); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-danger { background: var(--danger); color: #fff; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid rgba(35,35,38,0.8); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.06), transparent 60%);
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 7rem 1.5rem; max-width: 72rem; margin: 0 auto; }
.hero-inner img.logo { width: 88px; height: 88px; border-radius: 0.75rem; margin-bottom: 2rem; }
.hero-inner h1 { font-size: 2.5rem; font-weight: 600; line-height: 1.15; max-width: 48rem; margin: 1rem 0 0; }
.hero-inner p.lead { max-width: 36rem; color: var(--muted); margin-top: 1.5rem; }
.hero-actions { display: flex; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.hero-wave { margin-top: 4rem; color: rgba(203,173,131,0.8); }
@media (min-width: 640px) { .hero-inner h1 { font-size: 3.75rem; } }

/* Sections */
.section { padding: 6rem 0; }
.section-border-t { border-top: 1px solid rgba(35,35,38,0.8); }
.section-tint { background: rgba(19,19,21,0.4); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.section-head h2 { font-size: 1.875rem; font-weight: 600; margin: 0.75rem 0 0; }
.section-link { font-size: 0.9rem; color: var(--silver-2); }
.section-link:hover { color: var(--foreground); }
.about-grid { display: grid; gap: 3rem; }
.about-grid .copy { color: var(--muted); }
.about-grid .copy p { margin: 0 0 1.25rem; }
@media (min-width: 640px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; align-items: flex-start; } }

/* Cards */
.card-surface { background: linear-gradient(180deg, var(--background-elevated) 0%, #0e0e10 100%); border: 1px solid var(--border); }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.artist-card { border-radius: 0.75rem; overflow: hidden; transition: border-color 0.15s; display: block; }
.artist-card:hover { border-color: var(--silver-3); }
.artist-card .photo { aspect-ratio: 4/5; background: var(--background-elevated); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.artist-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-card .initials { font-size: 2.5rem; font-weight: 600; }
.artist-card .body { padding: 1.25rem; }
.artist-card .name { font-size: 1.1rem; font-weight: 600; }
.artist-card .role { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

.news-card { border-radius: 0.75rem; overflow: hidden; display: block; transition: border-color 0.15s; }
.news-card:hover { border-color: var(--silver-3); }
.news-card .cover { aspect-ratio: 16/9; background: var(--background-elevated); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.news-card.featured .cover { aspect-ratio: 21/9; }
.news-card .body { padding: 1.25rem; }
.news-card .date { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-3); }
.news-card .title { font-size: 1.15rem; font-weight: 600; margin-top: 0.5rem; }
.news-card .excerpt { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; }

/* EPK page */
.epk-hero { display: grid; gap: 2rem; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(35,35,38,0.8); }
@media (min-width: 768px) { .epk-hero { grid-template-columns: 280px 1fr; align-items: center; } }
.epk-photo { aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden; background: var(--background-elevated); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.epk-photo img { width: 100%; height: 100%; object-fit: cover; }
.epk-photo .initials { font-size: 3.5rem; font-weight: 600; }
.epk-title h1 { font-size: 2.5rem; font-weight: 600; margin: 0.5rem 0 0; }
.epk-title .role { color: var(--gold); margin-top: 0.5rem; }
.epk-title p.short-bio { color: var(--muted); margin-top: 1rem; max-width: 40rem; }
.epk-socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.epk-socials a { border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 1rem; font-size: 0.8rem; color: var(--silver-2); }
.epk-socials a:hover { border-color: var(--silver-2); color: var(--foreground); }

/* "TV screen" YouTube embed */
.tv-screen { position: relative; border-radius: 1rem; padding: 0.6rem; background: linear-gradient(160deg, #1b1b1e, #0c0c0d); border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.02); }
.tv-screen::before { content: ""; position: absolute; left: 50%; top: -6px; transform: translateX(-50%); width: 60px; height: 6px; border-radius: 3px; background: #050506; }
.tv-inner { position: relative; border-radius: 0.6rem; overflow: hidden; aspect-ratio: 16/9; background: #000; border: 1px solid rgba(255,255,255,0.05); }
.tv-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tv-legs { display: flex; justify-content: center; gap: 3rem; margin-top: -2px; }
.tv-legs span { width: 10px; height: 14px; background: #0c0c0d; border: 1px solid var(--border); border-top: none; border-radius: 0 0 4px 4px; }

.epk-section { padding: 3rem 0; border-top: 1px solid rgba(35,35,38,0.8); }
.epk-section h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1.25rem; }
.bio-text p { color: var(--muted); margin: 0 0 1rem; }
.embed-wrap { border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--border); }
.embed-wrap iframe { display: block; width: 100%; border: 0; }

.placeholder-cover { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; }

/* Footer */
.site-footer { border-top: 1px solid rgba(35,35,38,0.8); padding: 3rem 0; }
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.site-footer .foot-label { font-size: 0.8rem; color: var(--silver-3); display: flex; align-items: center; gap: 0.6rem; }
.site-footer .copyright { font-size: 0.75rem; color: var(--silver-3); }
.site-footer .admin-link { font-size: 0.7rem; color: var(--border); }
.site-footer .admin-link:hover { color: var(--silver-3); }

/* Misc */
.empty-state { color: var(--muted); }
.fade-up { animation: fade-up 0.6s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.mobile-nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 0.5rem; color: var(--silver-1); padding: 0.4rem 0.6rem; }
@media (max-width: 640px) {
  .main-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--background); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 1rem; }
}
