:root {
  --fire: #F5A623;
  --fire-dark: #E07B00;
  --bg: #0D0D0D;
  --bg2: #151515;
  --bg3: #1E1E1E;
  --text: #F0EDE8;
  --muted: #A8A89E;
  --line: rgba(245,166,35,0.16);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--fire); text-decoration: none; }
a:hover { color: var(--fire-dark); }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,21,21,0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
nav .inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.35rem; letter-spacing: 0.12em; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.logo span { color: var(--fire); }
.logo-nav-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.logo-nav-img.wide {
  height: 48px;
  max-width: 220px;
}
@media (max-width: 480px) {
  .logo-nav-img { height: 36px; max-width: 140px; }
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fire);
}
.nav-toggle {
  display: none; background: none; border: none; color: var(--fire);
  font-size: 1.5rem; cursor: pointer; padding: 0.25rem 0.5rem;
}

/* HERO */
.hero {
  background: var(--bg2);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.hero img.logo-img {
  max-width: 640px; width: 100%; margin: 0 auto 1.25rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.hero { padding: 2.5rem 1.25rem 3rem; }
.hero .tag {
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}

/* SECTIONS */
section { padding: 4rem 1.25rem; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em; color: var(--fire);
  text-align: center; margin-bottom: 2.5rem;
}
.bg2 { background: var(--bg2); }

/* ARTISTS GRID */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
.artist-card {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--bg3);
  border: 1px solid var(--line); display: block; color: inherit;
}
.artist-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) brightness(0.75);
  transition: 0.45s ease;
}
.artist-card:hover img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.04);
}
.artist-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
}
.artist-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem); letter-spacing: 0.08em;
}
.artist-genre {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fire); margin-top: 0.25rem;
}

/* RELEASE / ALBUM */
.album-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.album-row:last-child { margin-bottom: 0; }
.album-row h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.8rem; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.album-row p { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.8; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.85rem 1.5rem;
  background: var(--fire); color: var(--bg);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
  border: none; border-radius: 3px; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.btn:hover { background: var(--fire-dark); color: var(--bg); }
.btn.outline {
  background: transparent; color: var(--fire);
  border: 1px solid var(--fire);
}
.btn.outline:hover { background: var(--fire); color: var(--bg); }
iframe.spotify {
  width: 100%; height: 380px; border: 0;
  border-radius: 12px; border: 1px solid var(--line);
}

/* PLAYLIST */
.playlist-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: center;
}
.playlist-cover {
  width: 100%; max-width: 280px; border-radius: 10px;
  margin-bottom: 1.5rem; box-shadow: 0 4px 24px rgba(245,166,35,0.12);
}
.playlist-grid h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.4rem; letter-spacing: 0.08em; color: var(--fire);
  margin-bottom: 0.75rem;
}

/* ARTIST PAGE */
.artist-hero {
  background: linear-gradient(180deg, rgba(245,166,35,0.08), transparent);
  padding: 3rem 1.25rem; text-align: center;
}
.artist-hero img {
  width: 280px; height: 280px; object-fit: cover;
  border-radius: 8px; border: 2px solid var(--line);
  margin: 0 auto 1.5rem;
}
.artist-hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em; color: var(--fire);
}
.artist-hero .sub { color: var(--muted); margin-top: 0.35rem; }
.bio {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 4px; padding: 2rem; margin: 2rem auto;
  max-width: 720px; color: #d0d0d0; line-height: 1.9;
}
.bio p { margin-bottom: 1.25rem; }
.bio p:last-child { margin-bottom: 0; }
.bio .quote { font-style: italic; color: var(--muted); margin-top: 1.5rem; }
.ai-badge {
  display: inline-block; margin-top: 1.25rem;
  background: var(--fire); color: var(--bg);
  padding: 0.4rem 0.9rem; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.12em;
}
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; max-width: 900px; margin: 2rem auto;
}
.gallery img { border-radius: 4px; border: 1px solid var(--line); width: 100%; }
.album-list { max-width: 900px; margin: 0 auto; }
.album-block {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.75rem; margin-bottom: 1.75rem;
}
.album-block h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem; color: var(--fire); margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.social-row {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 1rem;
}
.social-row a { font-weight: 700; letter-spacing: 0.1em; font-size: 0.85rem; }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: 3px; color: var(--text);
  font-family: inherit; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--fire); }
.form-group textarea { min-height: 120px; resize: vertical; }
.check { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.check input { margin-top: 0.25rem; width: auto; }
.msg { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.msg.ok { color: var(--fire); }
.msg.err { color: #ff8888; }

footer {
  background: var(--bg2); border-top: 1px solid var(--line);
  padding: 2rem 1.25rem; text-align: center;
  color: var(--muted); font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem; gap: 0.75rem;
  }
  .nav-toggle { display: block; }
  .album-row, .playlist-grid { grid-template-columns: 1fr; }
  .artists-grid { gap: 0.75rem; max-width: 100%; }
  .artist-hero img { width: 220px; height: 220px; }
  iframe.spotify { height: 352px; }
}
