/* NNZ — Minimal, sleek, and smooth */
:root{
  --bg:#0b0b0b;
  --fg:#fafafa;
  --muted:#a1a1aa;
  --card:#121212;
  --accent:#ffffff;
  --outline:rgba(255,255,255,.06);
  --ring:rgba(255,255,255,.14);
  --shadow:rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container{width:min(1120px, 92vw); margin-inline:auto}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:linear-gradient(to bottom, rgba(11,11,11,.9), rgba(11,11,11,.6));
  border-bottom:1px solid var(--outline);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:16px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--fg)}
.brand-text{font-weight:700; letter-spacing:.2px}
.nav{display:flex; gap:20px}
.nav-link{color:var(--muted); text-decoration:none; font-weight:500}
.nav-link:hover{color:var(--fg)}

.hero{display:grid; place-items:center; min-height:66vh; padding:80px 0 40px}
.headline{font-size: clamp(36px, 6vw, 68px); line-height:1.05; margin:0 0 8px}
.subhead{color:var(--muted); margin:0 0 20px; max-width:720px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}

.btn{
  appearance:none; border:1px solid var(--outline); background:var(--fg); color:#000;
  padding:12px 18px; border-radius:999px; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 10px 30px -12px var(--shadow); transform:translateY(0); transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0); box-shadow:0 6px 20px -12px var(--shadow)}
.btn-ghost{background:transparent; color:var(--fg); border-color:var(--outline)}

.section-head{display:flex; align-items:end; justify-content:space-between; gap:16px; margin:12px 0 24px}
.section-title{font-size: clamp(28px, 4.5vw, 40px); margin:0}
.section-kicker{margin:0; color:var(--muted)}

.artists-section{padding:40px 0 84px}
.artist-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
@media (max-width: 900px){ .artist-grid{grid-template-columns:repeat(6, 1fr)} }
@media (max-width: 640px){ .artist-grid{grid-template-columns:repeat(4, 1fr)} }
@media (max-width: 640px){
  .artists-section { padding: 12px 0 72px; }

  .artist-grid{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 12px 14px;
    grid-template-columns: none; /* kill grid on mobile */
  }

  .artist-grid::-webkit-scrollbar{ display:none; }
  .artist-grid{ scrollbar-width: none; }

  .artist-card{
    flex: 0 0 86%;            /* ~1 card per view with a little peek of the next */
    scroll-snap-align: start; /* snap each card */
    min-width: 280px;         /* prevent tiny cards on very small screens */
  }
}
.card{
  background:var(--card);
  border:1px solid var(--outline);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px -30px var(--shadow);
}

.artist-card{grid-column:span 3; display:flex; flex-direction:column; min-height:340px}
.artist-card .cover{
  aspect-ratio:1.2/1; width:100%; background:linear-gradient(180deg, #1f1f1f, #0f0f0f);
  display:grid; place-items:center; position:relative; overflow:hidden;
}
.artist-card .cover img{width:100%; height:100%; object-fit:cover; display:block; opacity:.9; filter:grayscale(100%) contrast(1.05)}
.artist-card .badge{
  position:absolute; inset:auto 12px 12px auto; background:rgba(255,255,255,.08); border:1px solid var(--outline); padding:6px 10px; border-radius:999px;
  font-size:12px; color:var(--fg); backdrop-filter:blur(6px);
}
.artist-card .body{padding:16px}
.artist-name{font-weight:700; font-size:18px; margin:0 0 4px}
.artist-meta{margin:0; color:var(--muted); font-size:14px}
.artist-actions{display:flex; gap:10px; padding:0 16px 16px; margin-top:auto}
.artist-actions .btn{flex:1; justify-content:center}

.spotify-embed{border:none; width:100%; height:152px}

.contact-section{padding:20px 0 84px}
form.card{padding:18px}
.row{display:flex; gap:16px; flex-wrap:wrap}
.row.end{justify-content:flex-end}
.field{flex:1; min-width:240px; display:flex; flex-direction:column; gap:8px}
label{font-weight:600}
input, select, textarea{
  background:#0e0e0e; color:var(--fg); border:1px solid var(--outline); border-radius:12px; padding:12px 14px; outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus{border-color:var(--ring); box-shadow:0 0 0 4px var(--ring)}
.error{color:#ff7a7a; min-height:18px; font-size:12px}
.form-note{color:var(--muted); font-size:13px; margin:8px 2px 0}

.site-footer{border-top:1px solid var(--outline); padding:26px 0; margin-top:40px; color:var(--muted)}
.footer-inner{display:flex; align-items:center; justify-content:space-between}
.footer-inner .dot{display:inline-block; width:6px; height:6px; background:var(--muted); border-radius:50%; margin-left:6px; box-shadow:0 0 14px var(--muted)}

.toast{
  position:fixed; left:50%; bottom:24px; transform:translateX(-50%) translateY(20px);
  background:#111; color:var(--fg); padding:12px 16px; border-radius:12px; border:1px solid var(--outline);
  opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0)}

/* Smooth reveal animations */
.reveal-up{opacity:0; transform:translateY(20px); will-change:transform, opacity}
.reveal-up.is-visible{opacity:1; transform:translateY(0); transition:opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1)}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
