/* ──────────────────────────────────────────────────
   Roster V2 Prototype — Concept A: Filter-in-Place
   Standalone CSS — no dependency on roster/style.css
   ────────────────────────────────────────────────── */

/* Fonts */
@font-face { font-family: newyork; src: url(/fonts/newyork.ttf); }
@font-face { font-family: ltsuperiormono_medium; src: url(/fonts/ltsuperiormono_medium.otf); }
@font-face { font-family: superior_regular; src: url(/fonts/superior_regular.ttf); }
@font-face { font-family: BelleStory; src: url(/roster/FontsFree-Net-BelleStory-DisplayMedium.ttf); }

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 0; }

body {
    background: #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    font-family: ltsuperiormono_medium, monospace;
    overflow-x: hidden;
}

html {
    background: #000 !important;
}

a { text-decoration: none; color: #fff; }

/* ── Page Transition Overlay ── */
.page-transition-overlay {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 900;
    opacity: 1;
    pointer-events: none;
    transition: opacity 500ms ease-out;
}

.page-transition-overlay.fade-out {
    opacity: 0;
}

.page-transition-overlay.fade-in {
    opacity: 1;
    transition: opacity 400ms ease-in;
    pointer-events: all;
}

/* ── Entrance Animations ── */
.anim-fade-in {
    opacity: 0;
    transition: opacity 600ms ease-out;
}

.anim-fade-in.visible {
    opacity: 1;
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 { transition-delay: 100ms; }
.anim-delay-2 { transition-delay: 300ms; }
.anim-delay-3 { transition-delay: 500ms; }

/* ── Header ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    transition: all 0.3s linear;
}

.page-artist header {
    background: transparent;
}

.page-artist header::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    pointer-events: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 45px;
    background: #000;
}

.header-logo img {
    width: 90px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.header-nav li {
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-family: newyork, serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s linear;
    margin-left: 30px;
}

.header-nav a:hover {
    opacity: 1;
}

/* ── Filter Bar ── */
.filter-bar {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
    padding: 15px 45px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dept-tabs {
    display: flex;
    gap: 30px;
    align-items: center;
}

.dept-tab {
    background: none;
    border: none;
    color: #fff;
    font-family: newyork, serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.3s linear;
    padding: 0;
    position: relative;
}

.dept-tab:hover {
    opacity: 0.7;
}

.dept-tab.active {
    opacity: 1;
}

.dept-tab.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

/* ── Breadcrumb ── */
.breadcrumb-trail {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    display: flex;
    gap: 0;
    align-items: center;
    min-height: 18px;
}

.breadcrumb-trail .crumb {
    cursor: pointer;
    transition: opacity 0.3s linear;
}

.breadcrumb-trail .crumb:hover {
    opacity: 1;
}

.breadcrumb-trail .crumb.active {
    opacity: 1;
    cursor: default;
}

.breadcrumb-trail .crumb-sep {
    margin: 0 8px;
    opacity: 0.4;
}

/* ── Video Feed ── */
.video-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 145px;
    padding-bottom: 100px;
    gap: 20px;
}

/* ── Artist Dividers ── */
.artist-divider {
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 10px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: opacity 0.4s ease-out, max-height 0.5s ease-out, margin 0.4s ease-out, padding 0.4s ease-out;
    overflow: hidden;
    max-height: 120px;
}

.artist-divider:first-child {
    margin-top: 0;
    border-top: none;
}

.artist-divider-name {
    font-family: newyork, serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s linear;
}

.artist-divider:hover .artist-divider-name {
    opacity: 1;
}

.artist-divider-dept {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.35;
}

.artist-divider.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border-top-color: transparent;
    pointer-events: none;
}

/* ── Video Cards ── */
.video-card {
    position: relative;
    margin: 25px 0;
    cursor: pointer;
    transform-origin: center center;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.video-card.filtered-out {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-out, max-height 0.5s ease-out, margin 0.4s ease-out;
}

.video-card video {
    width: clamp(400px, 35vw, 700px);
    border-radius: 50px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transform-origin: center center;
    display: block;
}

.video-card.filtered-out video {
    height: 0;
}

.video-label {
    position: absolute;
    bottom: 25px;
    left: 40px;
    font-family: ltsuperiormono_medium, monospace;
    font-size: 16px;
    color: #fff;
    z-index: 9;
    pointer-events: none;
}

/* ── Modal ── */
#videoModal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999999;
    overflow-y: auto;
}

#videoModal .modal-dialog {
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
    padding: 0 40px;
}

#videoModal .modal-content {
    background: transparent;
    border: none;
    position: relative;
    width: 100%;
    overflow: visible;
}

#videoModal .modal-body {
    padding: 60px 0 80px;
    overflow: visible;
}

#videoModal .vmodal-close {
    position: fixed;
    top: 28px;
    right: 36px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 8px;
}

#videoModal .vmodal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Title block */
#videoModal .vmodal-info {
    text-align: center;
    margin-bottom: 40px;
}

#videoModal .vmodal-title {
    font-family: newyork, serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 3px;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

#videoModal .vmodal-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#videoModal .vmodal-tag {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
}

/* Video player — embed code provides its own responsive wrapper */
#videoModal .vmodal-player {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

#videoModal .vmodal-player iframe {
    border: none !important;
}

/* Credits bar */
#videoModal .vmodal-credits-bar {
    max-width: 960px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0 0;
    margin-top: 32px;
}

#videoModal .vmodal-credits-content {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 13px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    columns: 2;
    column-gap: 60px;
}

#videoModal .vmodal-credits-content h3 {
    font-family: newyork, serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
    break-after: avoid;
}

#videoModal .vmodal-credits-content b {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

#videoModal .vmodal-credits-content a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

#videoModal .vmodal-credits-content a:hover {
    color: #fff;
}

/* Screenshots */
#videoModal .vmodal-screenshots {
    list-style: none;
    padding: 0;
    margin: 48px auto 0;
    max-width: 960px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#videoModal .vmodal-screenshots li img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* ── Portrait Video Modal ── */
#videoModal.modal-portrait .modal-dialog {
    max-width: 500px;
}

#videoModal.modal-portrait .vmodal-player {
    max-width: 400px;
}

#videoModal.modal-portrait .vmodal-credits-bar {
    max-width: 400px;
}

#videoModal.modal-portrait .vmodal-credits-content {
    columns: 1;
}

#videoModal.modal-portrait .vmodal-screenshots {
    max-width: 400px;
    grid-template-columns: 1fr;
}

/* ── Department Page Header ── */
.dept-page-header {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
    padding: 15px 45px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dept-page-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.dept-page-title {
    font-family: newyork, serif;
    font-size: 32px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.dept-page-header .dept-tabs {
    display: flex;
    gap: 25px;
    align-items: center;
}

.dept-page-header .dept-tab {
    background: none;
    border: none;
    color: #fff;
    font-family: newyork, serif;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.3s linear;
    padding: 0;
    position: relative;
    text-decoration: none;
}

.dept-page-header .dept-tab:hover {
    opacity: 0.7;
}

.dept-page-header .dept-tab.active {
    opacity: 1;
}

.dept-page-header .dept-tab.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

/* ── Artist Sidebar ── */
.artist-sidebar {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-label {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.35;
    margin: 0;
    font-weight: 400;
    white-space: nowrap;
}

.artist-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.artist-sidebar li {
    white-space: nowrap;
}

.artist-sidebar li a {
    font-family: newyork, serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.45;
    transition: opacity 0.3s linear;
    text-decoration: none;
    color: #fff;
}

.artist-sidebar li a:hover {
    opacity: 0.85;
}

.artist-sidebar li.active a {
    opacity: 1;
}

/* ── Department Hero Title (scroll-driven crossfade) ── */
.dept-hero {
    padding: 155px 45px 0;
    text-align: center;
}

.dept-hero-nav {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 40px;
}

.dept-hero-title {
    font-family: newyork, serif;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    margin: 0;
    opacity: 0.2;
    transition: opacity 0.4s ease, font-size 0.4s ease, letter-spacing 0.4s ease;
    cursor: default;
    white-space: nowrap;
}

.dept-hero-title.active {
    font-size: 32px;
    letter-spacing: 8px;
    opacity: 0.9;
}

.dept-hero-artists-wrap {
    position: relative;
    height: 22px;
    margin-top: 12px;
    overflow: visible;
}

.dept-hero-artists {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

.dept-hero-artist {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.3s linear;
}

.dept-hero-artist:hover {
    opacity: 1;
    color: #fff;
}

.dept-hero-sep {
    color: #fff;
    opacity: 0.25;
    margin: 0 18px;
    font-size: 8px;
    vertical-align: middle;
}

/* ── Department Sections & Dividers ── */
.dept-section {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    height: 100%;
    flex-shrink: 0;
}


/* ── Horizontal Scroll Layout ── */
.page-department { overflow: hidden; height: 100vh; }

.hscroll-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 250px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.hscroll-track {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    height: 100%;
    padding: 0 50vw 0 5vw;
    will-change: transform;
}

/* Each card gets a unique margin-top via inline style */
.hcard {
    flex-shrink: 0;
    align-self: flex-start;
}

/* Width tiers */
.w-sm { width: 28vw; }
.w-md { width: 36vw; }
.w-lg { width: 45vw; }
.w-xl { width: 55vw; }

/* Cards */
.hcard {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    transform-origin: center center;
    will-change: transform, opacity;
    transition: transform 0.12s ease-out, opacity 0.12s ease-out;
}

.hcard video {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
}

/* Overlay on hover */
.hcard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hcard:hover .hcard-overlay {
    opacity: 1;
}

.hcard-title {
    display: block;
    font-family: ltsuperiormono_medium, monospace;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
}

.hcard-artist {
    display: block;
    font-family: newyork, serif;
    font-size: 12px;
    color: #fff;
    opacity: 0.6;
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Dept hero stays fixed over horizontal scroll */
.page-department .dept-hero {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
}

/* ── Artist Hero (name + role, fixed left) ── */
.artist-hero--solo {
    position: fixed;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.artist-hero-name {
    font-family: newyork, serif;
    font-size: 42px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    pointer-events: auto;
}

.artist-hero-role {
    font-family: ltsuperiormono_medium, monospace;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.35;
    margin-top: 10px;
    pointer-events: auto;
}

/* Artist feed — offset right to sit beside the fixed name on the left */
.artist-feed {
    padding-top: calc(50vh - 10vw - 25px);
    padding-bottom: 45vh;
    max-width: clamp(400px, 35vw, 700px);
    margin-left: auto;
    margin-right: 18%;
}

/* ── Back Button (desktop: fixed bottom-left) ── */
.artist-back-btn {
    position: fixed;
    bottom: 40px;
    left: 45px;
    z-index: 100;
}
.artist-back-btn button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #fff;
    font-family: ltsuperiormono_medium, monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}
.artist-back-btn button:hover {
    opacity: 1;
}

/* ── Mobile Scroll Hint ── */
.mobile-scroll-hint {
    display: none;
}

@keyframes hintDrift {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 0.8; }
}

/* ── Responsive ── */
@media (max-width: 800px) {
    .mobile-scroll-hint {
        display: flex;
        position: fixed;
        bottom: 24vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 700;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        opacity: 0;
        animation: hintFadeIn 0.6s ease 0.3s forwards;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }

    .mobile-scroll-hint.hidden {
        opacity: 0 !important;
        animation: none;
    }

    .mobile-scroll-hint span {
        font-family: ltsuperiormono_medium, monospace;
        font-size: 9px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.4);
    }

    .mobile-scroll-hint svg {
        animation: hintDrift 2s ease-in-out infinite;
    }

    @keyframes hintFadeIn {
        to { opacity: 1; }
    }

    /* ── Header — match landing page exactly ── */
    .header-inner {
        padding: 10px 20px;
        justify-content: space-between;
        background: #000;
    }

    .header-logo img {
        width: 70px;
    }

    .header-nav ul {
        gap: 0;
    }

    .header-nav a {
        font-size: 13px;
        letter-spacing: 1px;
        margin-left: 18px;
    }

    .filter-bar {
        padding: 10px 20px 8px;
        top: 45px;
    }

    .dept-tabs {
        gap: 15px;
        flex-wrap: wrap;
    }

    .dept-tab {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .video-feed {
        padding-top: 130px;
    }

    .video-card video {
        width: 90vw;
        border-radius: 20px;
    }

    .artist-divider {
        width: 90vw;
    }

    .video-label {
        left: 20px;
        bottom: 16px;
        font-size: 11px;
    }

    .credit-layout {
        flex-direction: column;
    }

    /* ── Modal responsive ── */
    #videoModal .modal-dialog {
        padding: 0 16px;
    }

    #videoModal .vmodal-close {
        top: 16px;
        right: 16px;
    }

    #videoModal .vmodal-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    #videoModal .vmodal-tag {
        font-size: 9px;
        padding: 4px 10px;
    }

    #videoModal .modal-body {
        padding: 40px 0 60px;
    }

    #videoModal .vmodal-credits-content {
        columns: 1;
        font-size: 12px;
    }

    #videoModal .vmodal-screenshots {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #videoModal .vmodal-screenshots li img {
        height: auto;
        max-height: 280px;
    }

    /* ── Department page (horizontal scroll) responsive ── */
    .page-department {
        -webkit-overflow-scrolling: touch;
    }

    .dept-page-header {
        padding: 10px 20px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dept-page-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dept-page-header .dept-tabs {
        gap: 12px;
        flex-wrap: wrap;
    }

    .dept-page-header .dept-tab {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .dept-page-title {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .dept-page-right {
        width: 100%;
    }

    .artist-sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .artist-sidebar ul {
        flex-wrap: wrap;
        gap: 4px 14px;
    }

    .artist-sidebar li a {
        font-size: 12px;
    }

    /* ── Department hero — split into top tabs + bottom artists ── */
    .page-department .dept-hero {
        padding: 0;
        z-index: 600 !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        pointer-events: none;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .page-transition-overlay {
        z-index: 500 !important;
    }

    /* Tabs bar — fixed below header (header = 70px logo + 20px padding = 90px) */
    .page-department .dept-hero-nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        z-index: 600;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;
        background: rgba(0,0,0,0.88);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        pointer-events: auto;
    }

    .page-department .dept-hero-title {
        font-size: 15px;
        letter-spacing: 2.5px;
        opacity: 0.3;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .page-department .dept-hero-title.active {
        font-size: 15px;
        letter-spacing: 2.5px;
        opacity: 1;
    }

    /* Artist names — fixed at bottom of screen */
    .page-department .dept-hero-artists-wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: auto;
        margin-top: 0;
        z-index: 600;
        padding: 20px 20px 24px;
        background: linear-gradient(transparent, rgba(0,0,0,0.92) 40%);
        pointer-events: auto;
        overflow: visible;
        display: grid;
    }

    .page-department .dept-hero-artists {
        grid-row: 1;
        grid-column: 1;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 0;
        white-space: normal;
        text-align: center;
        line-height: 1;
    }

    .page-department .dept-hero-artist {
        display: inline-block;
        font-size: 10px;
        letter-spacing: 1.5px;
        margin: 0 10px;
        white-space: nowrap;
    }

    .page-department .dept-hero-sep {
        display: none;
    }

    /* Horizontal scroll — videos centered between tabs and artist names */
    .hscroll-wrap {
        padding-top: 110px;
        padding-bottom: 70px;
        touch-action: none;
    }

    .hscroll-track {
        gap: 18px;
        padding: 0 30vw 0 calc(50vw - 35vw);
        touch-action: none;
        align-items: center;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .w-sm { width: 65vw; }
    .w-md { width: 72vw; }
    .w-lg { width: 78vw; }
    .w-xl { width: 85vw; }

    .hcard {
        border-radius: 12px;
        transition: none;
        will-change: transform;
    }
    .hcard video { border-radius: 12px; }

    .hcard-overlay {
        opacity: 1;
        padding: 16px 14px 12px;
        border-radius: 0 0 12px 12px;
    }

    .hcard-title { font-size: 11px; }
    .hcard-artist { font-size: 10px; }

    /* ── Artist page responsive ── */
    .page-artist header {
        z-index: 999;
    }
    .artist-hero--solo {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        padding: 60px 20px 18px;
        text-align: center;
        z-index: 1001;
        background: linear-gradient(rgba(10,10,10,1) 70%, transparent);
        pointer-events: none;
    }
    .artist-hero--solo a,
    .artist-hero--solo .artist-hero-name,
    .artist-hero--solo .artist-hero-role {
        pointer-events: auto;
    }

    .artist-hero-name {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .artist-hero-role {
        font-size: 10px;
        letter-spacing: 2px;
        margin-top: 6px;
    }

    .artist-feed {
        padding-top: 160px;
        padding-bottom: 60px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .artist-feed .video-card {
        margin: 15px 0;
        max-width: 100%;
        overflow: hidden;
        will-change: transform, opacity;
        transition: transform 0.15s ease-out, opacity 0.15s ease-out;
    }

    .artist-feed .video-card video {
        width: 100%;
        border-radius: 16px;
    }

    .artist-back-btn {
        position: static;
        display: flex;
        justify-content: flex-start;
        padding: 10px 0 50px 5vw;
    }
    .artist-back-btn button {
        display: flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        font-family: ltsuperiormono_medium, monospace;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 12px 28px;
        border-radius: 100px;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s ease, border-color 0.3s ease;
    }
    .artist-back-btn button:active {
        opacity: 1;
        border-color: rgba(255,255,255,0.5);
    }
}

/* ── Small phones ── */
@media (max-width: 420px) {
    .header-inner {
        padding: 8px 16px;
    }

    .header-logo img {
        width: 55px;
    }

    .header-nav a {
        font-size: 11px;
        letter-spacing: 1px;
        margin-left: 14px;
    }

    .page-department .dept-hero-nav {
        top: 71px;
        gap: 14px;
        padding: 8px 16px;
    }

    .dept-hero-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .dept-hero-title.active {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .dept-hero-artist {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .dept-hero-sep {
        margin: 0 5px;
    }

    .w-sm { width: 75vw; }
    .w-md { width: 80vw; }
    .w-lg { width: 85vw; }
    .w-xl { width: 90vw; }

    .artist-hero-name {
        font-size: 22px;
        letter-spacing: 3px;
    }
}
