/* ═══════════════════════════════════════════════
   ARTIST DETAIL PAGE STYLES
   ═══════════════════════════════════════════════ */

/* Hero */
.artist-hero {
  position: relative;
  min-height: 90vh;
  padding: 120px 40px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.artist-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.artist-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) grayscale(0%);
}
.artist-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%),
              radial-gradient(ellipse 60% 60% at 30% 50%, rgba(192,0,26,0.18), transparent 70%);
}

.artist-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.artist-hero-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-width: 420px;
  background: var(--bg3);
  border: 1px solid var(--border);
}

.artist-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 32px;
  transition: color 0.2s;
  border: 1px solid var(--border);
  padding: 8px 16px;
}
.artist-back:hover { color: var(--red); border-color: var(--red); }

.artist-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.artist-hero-info .tagline {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}

.artist-hero-info .bio {
  font-size: 15px;
  line-height: 1.9;
  color: #bbb;
  margin-bottom: 40px;
  max-width: 500px;
}

.artist-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.artist-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.artist-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.artist-socials a svg { width: 14px; height: 14px; }

/* Body sections */
.artist-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.artist-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.artist-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Venues */
.venues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 60px;
}
.venue-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
}
.venue-tag--highlight {
  border-color: var(--red-dim);
  color: var(--red);
}

/* SoundCloud embeds */
.sets-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 60px;
}

.set-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 4px;
}

.set-label {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.set-label--subfreqs {
  background: rgba(192,0,26,0.08);
  color: var(--red);
  border-bottom: 1px solid var(--red-dim);
}

.set-item iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: none;
}

/* Book CTA */
.artist-book-cta {
  margin-top: 40px;
  padding: 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  text-align: center;
}
.artist-book-cta h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.artist-book-cta p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .artist-hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }
  .artist-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .artist-hero-portrait {
    max-width: 280px;
    margin: 0 auto;
  }
  .artist-body { padding: 40px 20px; }
}

@media (max-width: 640px) {
  .artist-hero {
    padding: 80px 20px 40px;
    min-height: auto;
  }
  .artist-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .artist-hero-portrait {
    max-width: 200px;
    margin: 0 auto;
  }
  .artist-hero-info h1 {
    font-size: clamp(48px, 14vw, 72px);
  }
  .artist-hero-info .bio {
    font-size: 14px;
    line-height: 1.8;
  }
  .artist-socials {
    flex-wrap: wrap;
    gap: 10px;
  }
  .artist-body { padding: 32px 20px; }
  .artist-section-title { font-size: 26px; }
  .set-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .set-item iframe { height: 120px; }
  .artist-book-cta { padding: 28px 20px; }
}
