/* page-music.css */
.page-hero { border-bottom: 1px solid var(--cream-deeper); padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem); }
.page-hero h1 { max-width: 14ch; margin-top: 1rem; color: var(--espresso); }
.page-hero h1 em { color: var(--terra); }
.page-hero__sub { margin-top: 1.5rem; max-width: 52ch; font-size: 1.1rem; }

/* --- ARTIST ROSTER --- */
.artist-roster {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.artist-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--cream-deeper);
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    background: var(--cream);
    width: 100%;
    min-width: 0;
}
.artist-card:hover {
    box-shadow: 0 16px 48px rgba(28,22,18,0.1);
    transform: translateY(-4px);
    border-color: var(--stone);
}

.artist-card__photo {
    position: relative;
    width: 100%;
    padding-top: 133%;
    overflow: hidden;
    background: var(--cream-deeper);
    display: block;
    flex-shrink: 0;
}
.artist-card__photo img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s;
}
.artist-card:hover .artist-card__photo img { transform: scale(1.04); }

.artist-photo-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--cream-deeper) 0%, var(--stone) 100%);
}
.artist-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(28,22,18,0.18);
}

.artist-card__info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.artist-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.1;
}
.artist-card__genres {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
}
.artist-card__bio {
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--ink-muted);
    margin-top: 0.25rem;
    flex: 1;
}
.artist-card__footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-deeper);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.artist-card__count {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
}
.artist-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid var(--terra);
    color: var(--terra);
    border-radius: 2px;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-body);
    font-weight: 400;
}
.artist-card:hover .artist-card__btn { background: var(--terra); color: white; }

.music-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }

.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: 600px) {
    .artist-roster { grid-template-columns: 1fr; }
    .music-services { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .music-services { grid-template-columns: 1fr 1fr; }
}
