/* page-artist.css */

.artist-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 5rem);
    border-bottom: 1px solid var(--cream-deeper);
}

.artist-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    margin-bottom: 3rem;
    display: block;
    transition: color 0.2s;
}
.artist-back:hover { color: var(--terra); }

.artist-hero__inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

/* Photo */
.artist-hero__photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    display: block;
    background: var(--cream-deeper);
    border: 1px solid var(--stone);
}
.artist-hero__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.artist-photo-placeholder--lg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--cream-deeper) 0%, var(--stone) 100%);
    min-height: 420px;
}
.artist-photo-placeholder--lg span {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 300;
    color: rgba(28,22,18,0.15);
    letter-spacing: 0.05em;
}

/* Info */
.artist-hero__info { padding-top: 0.5rem; }

.artist-hero__info h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    color: var(--espresso);
    margin: 0.75rem 0 1.25rem;
    line-height: 1.05;
}

.artist-origin {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 1.75rem;
}
.artist-origin span { color: var(--terra); font-size: 0.9rem; }

.artist-bio {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-muted);
    max-width: 58ch;
}
.artist-bio + .artist-bio { margin-top: 1em; }

/* Track list on artist page */
.track-list { border-top: 1px solid var(--cream-deeper); margin-top: 0; }
.track-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--cream-deeper);
    transition: background 0.2s;
    border-radius: 2px;
}
.track-item:hover { background: var(--cream-dark); }
.track-item.is-playing { background: var(--cream-dark); }

/* Stream notice */
.stream-notice {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: var(--cream-dark);
    border: 1px solid var(--cream-deeper);
    border-radius: 3px;
    margin-bottom: 2rem;
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
}
.stream-notice__dot {
    width: 8px; height: 8px;
    background: var(--terra); border-radius: 50%; flex-shrink: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

@media (max-width: 900px) {
    .artist-hero__inner { grid-template-columns: 260px 1fr; gap: 2.5rem; }
}
@media (max-width: 650px) {
    .artist-hero__inner { grid-template-columns: 1fr; }
    .artist-hero__photo { aspect-ratio: 1/1; max-width: 280px; }
    .artist-photo-placeholder--lg { min-height: 280px; }
    .artist-photo-placeholder--lg span { font-size: 5rem; }
}
