/* =========================================================
   CREATIONS MUSIC HUB + VØLTAIRE NOIR
   ========================================================= */

.music-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 20%, rgba(91, 60, 145, 0.18), transparent 28%),
        radial-gradient(circle at 18% 25%, rgba(6, 214, 214, 0.10), transparent 36%),
        rgba(255,255,255,0.025);
}

.music-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: clamp(34px, 6vw, 70px);
}

.music-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #22e584;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.music-hero h1 {
    max-width: 780px;
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: -3px;
}

.music-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.music-hero__visual { position: relative; min-height: 300px; }

.music-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    color: #fff;
    background: rgba(5,8,15,0.82);
    box-shadow: 0 0 45px rgba(6,214,214,0.12), 0 0 90px rgba(101,67,160,0.18);
    font-size: 27px;
}

.music-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(6,214,214,0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.music-wave--one { width: 220px; height: 115px; }
.music-wave--two {
    width: 320px; height: 175px;
    border-color: rgba(100,72,160,0.18);
    transform: translate(-50%, -50%) rotate(20deg);
}
.music-wave--three {
    width: 420px; height: 225px;
    border-color: rgba(255,255,255,0.07);
    transform: translate(-50%, -50%) rotate(-18deg);
}

.artist-library { margin-top: 34px; }

.artist-library__header,
.voltaire-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.artist-library__header h2 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 34px;
}

.artist-count { color: var(--muted); font-size: 12px; }

.artist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.artist-card {
    position: relative;
    display: grid;
    min-height: 540px;
    grid-template-rows: minmax(330px, 1fr) auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    color: inherit;
    background: rgba(255,255,255,0.025);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 177, 194, 0.30);
    box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.artist-card__image { position: relative; overflow: hidden; }
.artist-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform .45s ease;
}
.artist-card:hover .artist-card__image img { transform: scale(1.035); }

.artist-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(6,4,8,0.95), transparent 58%),
        linear-gradient(120deg, rgba(0,0,0,0.24), transparent 50%);
}

.artist-card__badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 7px 10px;
    border: 1px solid rgba(210,205,220,0.20);
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    background: rgba(5,4,7,0.55);
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.artist-card__content {
    position: relative;
    z-index: 2;
    margin-top: -86px;
    padding: 28px;
}

.artist-card--voltaire {
    background:
        radial-gradient(circle at top right, rgba(99,20,35,0.14), transparent 36%),
        linear-gradient(145deg, rgba(22,18,27,0.94), rgba(7,5,9,0.98));
}

.artist-card__meta { display: flex; flex-wrap: wrap; gap: 7px; }
.artist-card__meta span {
    color: rgba(214,207,220,0.72);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.artist-card h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: 2px;
}

.artist-card p {
    max-width: 670px;
    margin: 0;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
}

.artist-card__action {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.artist-card__action i { transition: transform .2s ease; }
.artist-card:hover .artist-card__action i { transform: translateX(5px); }

/* Artist page */
.voltaire-page {
    --vn-border: rgba(220,214,225,0.10);
    --vn-muted: rgba(225,220,229,0.57);
    max-width: 1500px;
    margin: 0 auto;
}

.voltaire-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--vn-muted);
    font-size: 12px;
    text-decoration: none;
}
.voltaire-back:hover { color: #fff; }

.voltaire-hero {
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
    min-height: 680px;
    overflow: hidden;
    border: 1px solid var(--vn-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 18%, rgba(102,22,37,0.18), transparent 26%),
        linear-gradient(135deg, #0c0910, #050406);
    box-shadow: 0 35px 100px rgba(0,0,0,0.32);
}

.voltaire-hero__portrait { position: relative; min-height: 680px; overflow: hidden; }
.voltaire-hero__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.voltaire-hero__portrait-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 58%, rgba(6,4,8,0.88)),
        linear-gradient(to top, rgba(6,4,8,0.72), transparent 35%);
}

.voltaire-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: clamp(36px, 6vw, 76px);
}

.voltaire-kicker,
.voltaire-section__label,
.voltaire-track-number {
    color: #9e929f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

.voltaire-hero h1 {
    margin: 17px 0 18px;
    color: #f7f3f8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 8vw, 116px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: 3px;
}

.voltaire-hero__statement {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 3vw, 38px);
    font-style: italic;
    line-height: 1.2;
}

.voltaire-hero__intro {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--vn-muted);
    font-size: 15px;
    line-height: 1.8;
}

.voltaire-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.voltaire-tags span {
    padding: 7px 10px;
    border: 1px solid var(--vn-border);
    border-radius: 999px;
    color: rgba(235,230,238,0.68);
    background: rgba(255,255,255,0.025);
    font-size: 9px;
    font-weight: 800;
}

.voltaire-hero__line {
    width: 100%; height: 1px;
    margin: 30px 0 22px;
    background: linear-gradient(to right, rgba(255,255,255,.17), transparent);
}

.voltaire-quote span,
.voltaire-quote strong { display: block; }
.voltaire-quote span {
    color: rgba(255,255,255,.32);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}
.voltaire-quote strong {
    max-width: 610px;
    margin-top: 7px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.voltaire-section {
    margin-top: 20px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--vn-border);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(102,22,37,0.07), transparent 34%),
        rgba(255,255,255,0.026);
}

.voltaire-two-column {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(30px, 6vw, 80px);
    margin-top: 18px;
}

.voltaire-two-column h2,
.voltaire-section__header h2 {
    margin: 0;
    color: #f7f3f8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.03;
}

.voltaire-two-column p,
.voltaire-release__body p,
.voltaire-identity-grid p {
    color: var(--vn-muted);
    line-height: 1.8;
}

.voltaire-two-column p:first-child { margin-top: 0; }
.voltaire-release-status {
    color: rgba(255,255,255,.38);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.voltaire-release {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    min-height: 410px;
    overflow: hidden;
    border: 1px solid var(--vn-border);
    border-radius: 18px;
    background: #09070b;
}

.voltaire-release__visual {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-right: 1px solid var(--vn-border);
    background:
        radial-gradient(circle at center, rgba(118,30,48,.30), transparent 26%),
        linear-gradient(145deg, #120c12, #050405);
}

.voltaire-release__symbol {
    position: relative;
    z-index: 3;
    color: #e9e2eb;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 96px;
}

.voltaire-release__rings {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border: 1px solid rgba(217,205,220,.10);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(217,205,220,.025), 0 0 0 90px rgba(217,205,220,.018);
}

.voltaire-release__body { align-self: center; padding: clamp(26px, 5vw, 52px); }
.voltaire-release__body h3 {
    margin: 10px 0 14px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
}

.voltaire-release__quote {
    margin-top: 23px;
    padding-left: 16px;
    border-left: 2px solid rgba(125,28,47,.70);
    color: rgba(255,255,255,.78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-style: italic;
}

.voltaire-release__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.voltaire-release__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid var(--vn-border);
    border-radius: 8px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
}

.voltaire-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
}

.voltaire-identity-grid article {
    padding: 24px;
    border: 1px solid var(--vn-border);
    border-radius: 14px;
    background: rgba(0,0,0,.14);
}

.voltaire-identity-grid article > span {
    color: rgba(165,142,153,.55);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.voltaire-identity-grid h3 {
    margin: 20px 0 10px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}
.voltaire-identity-grid p { margin-bottom: 0; }

.voltaire-catalog__placeholder {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 24px;
    border: 1px dashed rgba(220,214,225,.14);
    border-radius: 14px;
    color: var(--vn-muted);
    background: rgba(0,0,0,.10);
}
.voltaire-catalog__placeholder > i { color: rgba(201,195,206,.72); font-size: 26px; }
.voltaire-catalog__placeholder strong,
.voltaire-catalog__placeholder span { display: block; }
.voltaire-catalog__placeholder strong { color: #fff; }
.voltaire-catalog__placeholder span { margin-top: 5px; line-height: 1.6; }

@media (max-width: 900px) {
    .music-hero,
    .voltaire-hero,
    .voltaire-release { grid-template-columns: 1fr; }

    .artist-grid { grid-template-columns: 1fr; }

    .voltaire-hero__portrait { min-height: 520px; }
    .voltaire-hero__portrait-shade {
        background: linear-gradient(to top, rgba(6,4,8,.94), transparent 55%);
    }

    .voltaire-release__visual {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid var(--vn-border);
    }

    .voltaire-two-column,
    .voltaire-identity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .music-hero__content,
    .voltaire-hero__content { padding: 28px 22px; }

    .music-hero__visual { min-height: 240px; }
    .music-hero h1 { letter-spacing: -2px; }

    .artist-library__header,
    .voltaire-section__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .artist-card {
        min-height: 500px;
        grid-template-rows: 330px auto;
    }

    .artist-card__content { margin-top: -62px; padding: 22px; }
    .voltaire-page { padding-bottom: 15px; }
    .voltaire-hero { min-height: 0; }
    .voltaire-hero__portrait { min-height: 430px; }
    .voltaire-hero h1 { font-size: clamp(52px, 19vw, 82px); }
    .voltaire-section { padding: 24px 20px; }
    .voltaire-catalog__placeholder { align-items: flex-start; }
}
