@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Rajdhani:wght@300;400;500;600&display=swap');

:root {
  --black: #080808;
  --deep: #0e0e0e;
  --surface: #141414;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --green: #3a7d44;
  --green-light: #4e9e5f;
  --silver: #b8b8b8;
  --silver-light: #d4d4d4;
  --white: #f0f0f0;
  --muted: #666;
  --gold: #c9a84c;
  --gold-dim: #8b7340;
  --purple: #534ab7;
  --purple-light: #9988cc;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Rajdhani', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:var(--black); color:var(--white); font-family:var(--font-body); font-size:16px; line-height:1.6; overflow-x:hidden; }

/* NAV */
nav { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(8,8,8,0.96); border-bottom:1px solid var(--border); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:space-between; padding:0 2.5rem; height:64px; }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; cursor:pointer; }
.nav-logo-mark { width:36px; height:36px; border-radius:50%; border:1.5px solid var(--green); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:15px; color:var(--green-light); }
.nav-logo-text { font-family:var(--font-display); font-size:17px; color:var(--silver-light); letter-spacing:0.02em; }
.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a { font-family:var(--font-body); font-size:13px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--silver); text-decoration:none; transition:color 0.2s; }
.nav-links a:hover { color:var(--white); }
.nav-cta { background:var(--green) !important; color:var(--white) !important; padding:8px 18px; border-radius:3px; font-weight:600 !important; }
.nav-cta:hover { background:var(--green-light) !important; }

/* SHARED */
.btn { display:inline-block; padding:11px 26px; font-family:var(--font-body); font-size:13px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; border-radius:2px; cursor:pointer; border:none; transition:all 0.2s; }
.btn-primary { background:var(--green); color:var(--white); }
.btn-primary:hover { background:var(--green-light); }
.btn-outline { background:transparent; color:var(--silver-light); border:1px solid var(--border); }
.btn-outline:hover { border-color:var(--silver); color:var(--white); }
.btn-gold { background:var(--gold-dim); color:var(--white); }
.btn-gold:hover { background:var(--gold); }
.btn-purple { background:var(--purple); color:var(--white); }
.btn-purple:hover { background:var(--purple-light); }

.eyebrow { font-size:11px; letter-spacing:0.25em; text-transform:uppercase; color:var(--green-light); margin-bottom:1rem; display:flex; align-items:center; gap:12px; }
.eyebrow::before { content:''; width:24px; height:1px; background:var(--green-light); }
.section { padding:5rem 4rem; max-width:1200px; margin:0 auto; }
.section-title { font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.8rem); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:2.5rem; }
.divider { height:1px; background:var(--border); }
.tag { display:inline-block; padding:3px 10px; background:rgba(58,125,68,0.15); border:1px solid rgba(58,125,68,0.3); border-radius:2px; font-size:11px; letter-spacing:0.08em; color:var(--green-light); margin-right:6px; margin-bottom:6px; }
.tag-gold { background:rgba(201,168,76,0.12); border-color:rgba(201,168,76,0.3); color:var(--gold); }
.tag-purple { background:rgba(83,74,183,0.15); border-color:rgba(83,74,183,0.4); color:var(--purple-light); }
.social-btn { display:inline-flex; align-items:center; gap:7px; padding:7px 13px; font-size:12px; font-weight:500; letter-spacing:0.06em; text-decoration:none; border:1px solid var(--border); border-radius:2px; color:var(--silver); transition:all 0.2s; }
.social-btn:hover { border-color:var(--green); color:var(--green-light); }

/* FORMS */
.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; }
.form-input,.form-textarea,.form-select { width:100%; background:var(--black); border:1px solid var(--border); border-radius:2px; padding:11px 14px; font-family:var(--font-body); font-size:14px; color:var(--white); outline:none; transition:border-color 0.2s; }
.form-input:focus,.form-textarea:focus,.form-select:focus { border-color:var(--green); }
.form-textarea { resize:vertical; min-height:100px; }
.form-select option { background:var(--black); }

/* PAGE HERO */
.page-hero { padding-top:64px; background:var(--deep); border-bottom:1px solid var(--border); }
.page-hero-inner { padding:3rem 4rem; max-width:1200px; margin:0 auto; }
.page-hero-inner h1 { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.5rem); font-weight:900; color:var(--white); margin-bottom:1rem; }
.page-hero-inner p { font-size:15px; color:var(--silver); max-width:580px; }

/* FOOTER */
.site-footer { background:var(--deep); border-top:1px solid var(--border); padding:3rem 4rem; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; }
.footer-brand p { font-size:14px; color:var(--muted); line-height:1.7; margin-top:1rem; max-width:300px; }
.footer-section h4 { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--green-light); margin-bottom:1.25rem; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:var(--silver); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--white); }
.footer-contact-item { font-size:14px; color:var(--silver); margin-bottom:10px; display:flex; gap:10px; }
.footer-bottom { background:var(--black); border-top:1px solid var(--border); padding:1rem 4rem; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--muted); flex-wrap:wrap; gap:8px; }
.footer-bottom a { color:var(--green-light); text-decoration:none; }
.footer-bottom a:hover { color:var(--white); }

/* PULSE ANIMATION */
.radio-pulse { width:10px; height:10px; border-radius:50%; background:var(--green-light); display:inline-block; margin-right:8px; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ARTIST INDIVIDUAL PAGE */
.artist-page-hero { padding-top:64px; min-height:60vh; position:relative; overflow:hidden; display:flex; align-items:flex-end; }
.artist-page-hero-bg { position:absolute; inset:0; }
.artist-page-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:top center; opacity:0.35; }
.artist-page-hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, var(--black) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,0.2) 100%); }
.artist-page-hero-content { position:relative; z-index:2; padding:3rem 4rem; max-width:1200px; width:100%; margin:0 auto; }
.artist-page-name { font-family:var(--font-display); font-size:clamp(3rem,6vw,6rem); font-weight:900; color:var(--white); line-height:1.0; margin-bottom:0.5rem; }
.artist-page-role { font-size:13px; letter-spacing:0.2em; text-transform:uppercase; color:var(--green-light); margin-bottom:1.5rem; }
.artist-page-actions { display:flex; flex-wrap:wrap; gap:10px; }

.artist-page-body { max-width:1200px; margin:0 auto; padding:3rem 4rem; display:grid; grid-template-columns:1fr 340px; gap:3rem; }
.artist-page-bio h2 { font-family:var(--font-display); font-size:1.4rem; color:var(--white); margin:2rem 0 0.75rem; }
.artist-page-bio h2:first-child { margin-top:0; }
.artist-page-bio p { font-size:15px; color:var(--silver); line-height:1.85; margin-bottom:1rem; }
.artist-page-bio p:last-child { margin-bottom:0; }

.artist-sidebar-card { background:var(--surface); border:1px solid var(--border); padding:1.75rem; margin-bottom:2px; }
.artist-sidebar-card h4 { font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--green-light); margin-bottom:1rem; }
.artist-photo-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-bottom:2px; }
.artist-photo-grid img { width:100%; height:160px; object-fit:cover; object-position:top; }

.link-block { display:flex; flex-direction:column; gap:8px; }
.link-block a { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; background:var(--black); border:1px solid var(--border); border-radius:2px; font-size:13px; color:var(--silver); text-decoration:none; transition:all 0.2s; }
.link-block a:hover { border-color:var(--green); color:var(--white); }
.link-block a .arrow { color:var(--green-light); }

/* ARTIST CARD GRID */
.artist-section-label { font-size:11px; letter-spacing:0.25em; text-transform:uppercase; color:var(--green-light); padding:2rem 4rem 1rem; max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:12px; }
.artist-section-label::before { content:''; width:24px; height:1px; background:var(--green-light); }
.artist-card-grid { max-width:1200px; margin:0 auto; padding:0 4rem 2rem; display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:2px; background:var(--border); border:1px solid var(--border); margin-left:4rem; margin-right:4rem; }
.artist-card { background:var(--surface); overflow:hidden; position:relative; transition:background 0.2s; text-decoration:none; display:block; }
.artist-card:hover { background:var(--card); }
.artist-card-photo { height:300px; overflow:hidden; position:relative; }
.artist-card-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform 0.4s; }
.artist-card:hover .artist-card-photo img { transform:scale(1.04); }
.artist-card-photo-overlay { position:absolute; bottom:0; left:0; right:0; height:80px; background:linear-gradient(transparent, var(--surface)); }
.artist-card:hover .artist-card-photo-overlay { background:linear-gradient(transparent, var(--card)); }
.artist-card-body { padding:1.25rem; }
.artist-card-name { font-family:var(--font-display); font-size:1.2rem; color:var(--white); margin-bottom:0.2rem; }
.artist-card-role { font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--green-light); margin-bottom:1rem; }
.artist-card-btns { display:flex; flex-direction:column; gap:6px; }
.artist-card-btn { display:block; text-align:center; padding:8px; font-size:12px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; border-radius:2px; transition:all 0.2s; border:1px solid var(--border); color:var(--silver); }
.artist-card-btn:hover { border-color:var(--green); color:var(--green-light); }
.artist-card-btn.primary { background:var(--green); border-color:var(--green); color:var(--white); }
.artist-card-btn.primary:hover { background:var(--green-light); }
.artist-card-btn.purple { background:var(--purple); border-color:var(--purple); color:var(--white); }
.artist-card-btn.purple:hover { background:var(--purple-light); }

/* PLACEHOLDER CARD */
.placeholder-card { background:var(--surface); border:1px solid var(--border); padding:2rem; display:flex; align-items:center; gap:2rem; }
.placeholder-icon { width:80px; height:80px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:2rem; flex-shrink:0; color:var(--muted); }
.featured-single { display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border:1px solid var(--gold-dim); border-radius:2px; font-size:12px; color:var(--gold); margin-top:0.75rem; }

@media(max-width:900px) {
  /* NAV */
  nav { padding:0 1rem; height:56px; }
  .nav-logo-text { font-size:15px; }
  .nav-logo-mark { width:30px; height:30px; font-size:13px; }
  .nav-links { gap:0.75rem; }
  .nav-links li { display:none; }
  .nav-links li:last-child { display:block; }
  .nav-cta { padding:7px 14px; font-size:12px; }

  /* HERO — single column, hide photo grid */
  .hero-right { display:none; }

  /* STATS BAR — 2x2 grid */
  .stats-bar { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right:1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom:none; }

  /* SERVICES */
  .services-grid { grid-template-columns:1fr; }

  /* ARTIST CARDS */
  .artist-card-grid { margin:0 1rem; padding:0 0 1rem; grid-template-columns:1fr; }
  .artist-section-label { padding:1.5rem 1rem 0.75rem; }

  /* ARTIST INDIVIDUAL PAGE */
  .artist-page-hero { min-height:50vh; }
  .artist-page-hero-content { padding:1.5rem; }
  .artist-page-name { font-size:2.8rem; }
  .artist-page-body { grid-template-columns:1fr; padding:1.5rem; gap:1.5rem; }
  .artist-photo-grid { grid-template-columns:1fr 1fr; }
  .artist-photo-grid img { height:140px; }

  /* SUBMIT PAGE */
  .submit-grid { grid-template-columns:1fr; padding:1rem; }
  .submit-card.full { grid-column:1; }
  .submit-grid > div { grid-column:1; }

  /* LVP PAGE */
  .lvp-grid { grid-template-columns:1fr; padding:1.5rem; gap:1.5rem; }

  /* INTERVIEWS */
  .interview-grid { grid-template-columns:1fr; padding:1rem; }

  /* JOIN */
  .join-body { grid-template-columns:1fr; padding:1.5rem; gap:2rem; }
  .join-form { padding:1.5rem; }

  /* ABOUT SECTION ON HOME */
  .about-two-col { grid-template-columns:1fr !important; }

  /* FOOTER */
  .site-footer { grid-template-columns:1fr; padding:2rem 1.5rem; }
  .footer-bottom { padding:1rem 1.5rem; flex-direction:column; text-align:center; gap:6px; }

  /* GENERAL */
  .section { padding:2.5rem 1.5rem; }
  .page-hero-inner { padding:2rem 1.5rem; }
  .page-hero-inner h1 { font-size:2rem; }
  .radio-banner { margin:0 1.5rem; flex-direction:column; align-items:flex-start; }
  .radio-banner a { width:100%; text-align:center; }
  .section-title { font-size:1.8rem; }
}

@media(max-width:480px) {
  nav { padding:0 0.75rem; }
  .nav-logo-text { font-size:13px; }
  .hero-left { padding:3rem 1.25rem 3rem 1.25rem; }
  .hero-title { font-size:2.8rem; }
  .hero-subtitle { font-size:1.1rem; }
  .hero-mission { font-size:14px; }
  .hero-actions { flex-direction:column; }
  .hero-actions a { text-align:center; }
  .stat-number { font-size:1.6rem; }
  .artist-page-actions { flex-direction:column; }
  .artist-page-actions a { text-align:center; }
  .btn-row { flex-direction:column; }
  .btn-row a { text-align:center; }
  .submit-pricing { flex-direction:column; }
  .artist-card-grid { grid-template-columns:1fr; }
  .artist-photo-grid { grid-template-columns:1fr; }
  .artist-photo-grid img { height:220px; }
}
