/* ── ARTIST DETAIL PAGE ── */

.artist-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
}

.artist-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.4);
}

.artist-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.artist-back {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  margin-bottom: 0.5rem;
}
.artist-back:hover { color: var(--cream); }

.artist-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.artist-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1.05;
}

/* ── BODY ── */
.artist-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.artist-bio p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(240,234,216,0.88);
  margin-bottom: 1.5rem;
}

.artist-links {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.artist-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(200,160,74,0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.artist-social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── PREV / NEXT ── */
.artist-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 3rem 4rem;
  border-top: 1px solid rgba(240,234,216,0.08);
}

.artist-prev-btn,
.artist-next-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s;
}
.artist-prev-btn:hover,
.artist-next-btn:hover { color: var(--cream); }

/* ── MOBILE ── */
@media (max-width: 700px) {
  .artist-hero-content { padding: 0 1.5rem 2.5rem; }
  .artist-body { padding: 3rem 1.5rem; }
  .artist-nav-bar { padding: 1.5rem 1.5rem 3rem; }
  .artist-bio p { font-size: 1.05rem; }
}
