.hero.full-screen {
    justify-content: center;
    padding-top: 0;
}

.hero {
    position: relative;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.36) 0%,
            rgba(0,0,0,0.24) 38%,
            rgba(0,0,0,0.12) 66%,
            rgba(0,0,0,0.04) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-logo {
    width: 200px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 2s ease forwards, pulse 4s ease-in-out 2s infinite;
}

.hero-title {
    margin-bottom: 18px;
    font-size: 52px;
    letter-spacing: 14px;
    text-transform: uppercase;
    text-shadow: 0 6px 28px rgba(0,0,0,0.55);
}

.hero-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 6px 22px rgba(0,0,0,0.6);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 186px;
    padding: 15px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition:
        transform 0.26s ease,
        background 0.26s ease,
        border-color 0.26s ease,
        box-shadow 0.26s ease,
        color 0.26s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    color: #111;
    background: linear-gradient(180deg, rgba(241,225,191,0.98), rgba(213,183,122,0.94));
    box-shadow:
        0 18px 36px rgba(0,0,0,0.30),
        0 0 22px rgba(214,184,111,0.14);
}

.hero-btn-primary:hover {
    box-shadow:
        0 22px 42px rgba(0,0,0,0.36),
        0 0 26px rgba(214,184,111,0.20);
}

.hero-btn-secondary {
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.24);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(6,10,16,0.42);
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 30px rgba(0,0,0,0.24);
}

.hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.36);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        rgba(8,12,18,0.52);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transform: translateX(-50%);
    opacity: 0.58;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.hero-scroll:hover {
    opacity: 0.9;
    transform: translateX(-50%) translateY(2px);
}

.hero-scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.50), rgba(255,255,255,0.06));
    animation: heroScrollPulse 2.2s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.fade-delay-1 { animation-delay: 0.4s; }
.fade-delay-2 { animation-delay: 0.8s; }

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes heroScrollPulse {
    0%, 100% {
        opacity: 0.45;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.08);
    }
}

/* ================= FEATURED HERO ================= */

.featured-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 92px 0 54px;
    scroll-margin-top: 85px;
    overflow: hidden;
}

.featured-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.38) 0%,
            rgba(0,0,0,0.24) 38%,
            rgba(0,0,0,0.12) 66%,
            rgba(0,0,0,0.04) 100%
        );
    pointer-events: none;
    z-index: 0;
}

.featured-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 49% 64%, rgba(215,165,90,0.20) 0%, rgba(215,165,90,0.10) 16%, rgba(215,165,90,0.03) 34%, transparent 58%),
        radial-gradient(circle at 62% 24%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 10%, transparent 26%),
        radial-gradient(circle at 78% 70%, rgba(72,102,142,0.06) 0%, transparent 24%);
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

.featured-inner {
    position: relative;
    z-index: 1;
    width: min(1220px, 92%);
    display: grid;
    grid-template-columns: minmax(320px, 500px) minmax(320px, 1fr);
    gap: clamp(58px, 6vw, 92px);
    align-items: center;
}

.featured-inner::before {
    content: "";
    position: absolute;
    left: calc(50% - 16px);
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.02) 0%,
        rgba(255,255,255,0.12) 16%,
        rgba(228,191,126,0.18) 50%,
        rgba(255,255,255,0.10) 84%,
        rgba(255,255,255,0.02) 100%
    );
    opacity: 0.72;
    pointer-events: none;
}

.featured-media {
    position: relative;
}

.featured-media::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 18%;
    bottom: -28px;
    height: 44px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.24) 42%, rgba(0,0,0,0) 78%);
    filter: blur(10px);
    opacity: 0.92;
    z-index: 0;
    pointer-events: none;
}

.featured-media::after {
    content: "";
    position: absolute;
    inset: 8% 24% 12% 0;
    background: radial-gradient(circle at 36% 40%, rgba(227,156,96,0.18), transparent 46%);
    filter: blur(26px);
    opacity: 0.52;
    z-index: 0;
    pointer-events: none;
}

.featured-art-wrap {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 1 / 1;
    overflow: visible;
    isolation: isolate;
    filter: drop-shadow(0 38px 82px rgba(0,0,0,0.62));
}

.featured-art-wrap::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 30%;
    bottom: -18px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0) 78%);
    opacity: 0.95;
    filter: blur(7px);
    z-index: 0;
    pointer-events: none;
}

/* VINYL */

.featured-vinyl {
    --vinyl-shift: -34px;
    top: 50%;
    left: 57%;
    width: 90%;
    aspect-ratio: 1 / 1;
    opacity: 0.96;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 50%, rgba(208,170,90,0.88) 0 5%, #111 5.7% 10.6%, transparent 11%),
        radial-gradient(circle at 33% 28%, rgba(255,255,255,0.08), transparent 16%),
        radial-gradient(circle at 68% 42%, rgba(255,255,255,0.03), transparent 24%),
        repeating-radial-gradient(circle, rgba(255,255,255,0.016) 0px, rgba(255,255,255,0.016) 1px, #0a0a0a 2px, #020202 4px),
        radial-gradient(circle at 50% 50%, #161616 0%, #050505 64%, #000 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.028),
        inset -28px 0 44px rgba(0,0,0,0.54),
        inset 22px 0 32px rgba(255,255,255,0.01),
        0 18px 34px rgba(0,0,0,0.36);
}

.featured-vinyl::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(0,0,0,0.24), rgba(0,0,0,0.02) 42%, rgba(255,255,255,0.015) 62%, rgba(0,0,0,0.30) 100%);
    opacity: 0.8;
    pointer-events: none;
}

/* SLEEVE */

.featured-sleeve {
    position: absolute;
    inset: 0 auto 0 0;
    width: 73%;
    height: 100%;
    z-index: 3;
    border-radius: 9px;
    overflow: hidden;
    background: #080808;
    box-shadow:
        0 34px 72px rgba(0,0,0,0.62),
        0 0 0 1px rgba(255,255,255,0.05),
        14px 0 26px rgba(0,0,0,0.20);
    isolation: isolate;
}

.featured-sleeve::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.10), transparent 16%),
        linear-gradient(to right, rgba(255,255,255,0.04), transparent 13%),
        linear-gradient(to left, rgba(0,0,0,0.24), transparent 11%);
    z-index: 2;
    pointer-events: none;
}

.featured-sleeve::after {
    content: "";
    position: absolute;
    top: 1.5%;
    right: 0;
    width: 14px;
    height: 97%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.11),
        rgba(255,255,255,0.03) 30%,
        rgba(0,0,0,0.34) 100%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0.96;
}

.featured-sleeve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.90) 0%,
            rgba(0,0,0,0.56) 32%,
            rgba(0,0,0,0.15) 66%,
            rgba(0,0,0,0.02) 100%
        );
    z-index: 1;
    pointer-events: none;
}

/* PLAY */

.featured-play {
    z-index: 10;
    width: 82px;
    height: 82px;
    border-color: rgba(255,255,255,0.20);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
        rgba(10,12,16,0.58);
    box-shadow:
        0 18px 38px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.16),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate3d(-50%, -50%, 0) scale(1.02);
}

.featured-play::before {
    inset: 7px;
    background:
        radial-gradient(circle at 30% 26%, rgba(255,255,255,0.15), transparent 34%),
        radial-gradient(circle at 70% 74%, rgba(0,0,0,0.20), transparent 46%);
}

.featured-play .album-play-icon {
    width: 0;
    height: 0;
    margin-left: 5px;
    background: transparent;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255,255,255,0.98);
    clip-path: none;
    -webkit-clip-path: none;
    filter: none;
}

.featured-media:hover .featured-play,
.featured-media.active-track .featured-play {
    transform: translate3d(-50%, -50%, 0) scale(1.08);
    border-color: rgba(255,255,255,0.32);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.44),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.04),
        0 0 18px rgba(214,184,111,0.10);
}

.track-card.is-playing .featured-play .album-play-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    border: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.98) 0 7px,
        transparent 7px 13px,
        rgba(255,255,255,0.98) 13px 20px
    );
}

/* RIGHT */

.featured-content {
    position: relative;
    max-width: 590px;
    margin-top: 8px;
}

.featured-content::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    width: 18px;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0.22), rgba(228,191,126,0.26));
    opacity: 0.7;
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.featured-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.featured-catalog {
    padding: 7px 13px 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(224,196,139,0.94);
}

.featured-heading {
    margin: 0 0 22px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 5.4vw, 82px);
    line-height: 0.94;
    font-weight: 600;
    color: rgba(255,255,255,0.985);
    text-shadow: 0 12px 36px rgba(0,0,0,0.46);
    letter-spacing: -0.02em;
}

.featured-description {
    margin: 0 0 24px;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.84);
    text-shadow: 0 6px 24px rgba(0,0,0,0.44);
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 38px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(225,214,193,0.72);
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    min-width: 208px;
    padding: 15px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        color 0.24s ease;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(241,225,191,0.99), rgba(213,183,122,0.95));
    color: #111;
    border: none;
    cursor: pointer;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.30),
        0 0 26px rgba(214,184,111,0.14);
}

.btn-primary:hover {
    box-shadow:
        0 24px 44px rgba(0,0,0,0.34),
        0 0 30px rgba(214,184,111,0.18);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.20);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(6,10,16,0.36);
    color: rgba(255,255,255,0.94);
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 16px 28px rgba(0,0,0,0.18);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* HOVER WOW */

.featured-media:hover .featured-vinyl,
.featured-media.active-track .featured-vinyl {
    --vinyl-shift: -16px;
}

.featured-media:hover .featured-sleeve,
.featured-media.active-track .featured-sleeve {
    box-shadow:
        0 40px 78px rgba(0,0,0,0.68),
        0 0 0 1px rgba(255,255,255,0.07),
        16px 0 28px rgba(0,0,0,0.22);
}

/* ambient micro layer */

.featured-ambient,
.featured-dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.featured-ambient {
    background:
        radial-gradient(circle at 18% 34%, rgba(255,255,255,0.045) 0 1px, transparent 2px),
        radial-gradient(circle at 34% 22%, rgba(255,255,255,0.04) 0 1px, transparent 2px),
        radial-gradient(circle at 58% 30%, rgba(255,255,255,0.045) 0 1px, transparent 2px),
        radial-gradient(circle at 74% 18%, rgba(255,255,255,0.04) 0 1px, transparent 2px),
        radial-gradient(circle at 82% 34%, rgba(255,255,255,0.045) 0 1px, transparent 2px),
        radial-gradient(circle at 68% 68%, rgba(255,255,255,0.03) 0 1px, transparent 2px);
    opacity: 0.65;
}

.featured-dust {
    background:
        radial-gradient(circle at 22% 46%, rgba(255,222,181,0.06) 0 1px, transparent 4px),
        radial-gradient(circle at 42% 58%, rgba(255,255,255,0.05) 0 1px, transparent 5px),
        radial-gradient(circle at 60% 44%, rgba(255,220,166,0.04) 0 1px, transparent 5px),
        radial-gradient(circle at 78% 56%, rgba(255,255,255,0.04) 0 1px, transparent 5px);
    filter: blur(0.4px);
    opacity: 0.5;
}

/* =========================
   LATEST / IDENTITY
========================= */

.home-latest {
    padding-top: 90px;
    padding-bottom: 40px;
}

.home-section-copy {
    max-width: 760px;
    margin: -4px auto 34px;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
}

.home-section-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.section-link-btn {
    min-width: 190px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.03);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 32px rgba(0,0,0,0.18);
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.section-link-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
}

.identity-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.identity-shell {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.identity-kicker {
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(214,184,111,0.9);
}

.identity-title {
    margin: 0 auto 22px;
    max-width: 900px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 600;
    color: rgba(255,255,255,0.98);
    text-wrap: balance;
}

.identity-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.82;
    color: rgba(255,255,255,0.76);
}

.identity-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.identity-tags span {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
}

/* =========================
   EXISTING SET CARDS
========================= */

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 70px 56px;
    align-items: start;
    justify-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.album-card {
    position: relative;
    width: min(100%, 500px);
    cursor: pointer;
}

.album-art-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    overflow: visible;
    filter: drop-shadow(0 28px 44px rgba(0,0,0,0.42));
}

.album-vinyl {
    --vinyl-shift: -50px;
    position: absolute;
    top: 50%;
    left: 52%;
    width: 62%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 1;
    transform: translateY(-50%) translateX(var(--vinyl-shift));
    transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.35s ease;
    background:
        radial-gradient(circle at 50% 50%, rgba(205,168,86,0.82) 0 5.2%, #0d0d0d 5.8% 10.5%, transparent 10.9%),
        radial-gradient(circle at 35% 32%, rgba(255,255,255,0.06), transparent 14%),
        radial-gradient(circle at 62% 38%, rgba(255,255,255,0.028), transparent 22%),
        repeating-radial-gradient(circle, rgba(255,255,255,0.014) 0px, rgba(255,255,255,0.014) 1px, #0a0a0a 2px, #020202 4px),
        radial-gradient(circle at 50% 50%, #141414 0%, #050505 66%, #000 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.025),
        inset 0 0 12px rgba(255,255,255,0.012),
        inset 0 0 38px rgba(0,0,0,0.96),
        0 16px 28px rgba(0,0,0,0.28);
    opacity: 0.9;
    pointer-events: none;
}

.album-vinyl::after {
    content: "";
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.035), transparent 22%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.42;
}

.album-vinyl.spin {
    animation: vinylSpin 3.4s linear infinite;
    opacity: 0.96;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        inset 0 0 14px rgba(255,255,255,0.014),
        inset 0 0 40px rgba(0,0,0,0.96),
        0 18px 34px rgba(0,0,0,0.34);
}

@keyframes vinylSpin {
    from { transform: translateY(-50%) translateX(var(--vinyl-shift)) rotate(0deg); }
    to { transform: translateY(-50%) translateX(var(--vinyl-shift)) rotate(360deg); }
}

.album-sleeve {
    position: absolute;
    top: 0;
    left: 0;
    width: 73%;
    height: 100%;
    z-index: 3;
    border-radius: 4px;
    overflow: hidden;
    background: #080808;
    box-shadow: 0 22px 42px rgba(0,0,0,0.48), 0 0 0 1px rgba(255,255,255,0.05);
    isolation: isolate;
}

.album-sleeve::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent 18%), linear-gradient(to right, rgba(255,255,255,0.035), transparent 12%);
    z-index: 2;
    pointer-events: none;
    transition: background 0.35s ease;
}

.album-sleeve::after {
    content: "";
    position: absolute;
    top: 1.5%;
    right: 0;
    width: 12px;
    height: 97%;
    background: linear-gradient(to right, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 35%, rgba(0,0,0,0.28) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.9;
}

.album-cover-layer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.album-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.66) 28%, rgba(0,0,0,0.18) 62%, rgba(0,0,0,0.04) 100%);
    z-index: 1;
    pointer-events: none;
}

.album-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
        rgba(7,10,14,0.54);
    box-shadow:
        0 14px 28px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 12px rgba(0,0,0,0.14);
    z-index: 8;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
    overflow: hidden;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        opacity 0.24s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.album-play::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,0.13), transparent 35%),
        radial-gradient(circle at 70% 75%, rgba(0,0,0,0.18), transparent 44%);
    pointer-events: none;
}

.album-play::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
    pointer-events: none;
}

.album-play-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 22px;
    margin-left: 3px;
    background: rgba(255,255,255,0.98);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.10));
    transition:
        transform 0.22s ease,
        width 0.22s ease,
        height 0.22s ease,
        margin 0.22s ease,
        clip-path 0.22s ease,
        -webkit-clip-path 0.22s ease,
        background 0.22s ease,
        opacity 0.22s ease;
    backface-visibility: hidden;
    z-index: 1;
}

.track-card:hover .album-play,
.track-card.active-track .album-play {
    transform: translate3d(-50%, -50%, 0) scale(1.04);
}

.track-card:hover .album-play {
    border-color: rgba(255,255,255,0.36);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
        rgba(10,14,18,0.64);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.04),
        0 0 16px rgba(214,184,111,0.08);
}

.track-card:hover .album-play .album-play-icon {
    transform: scale(1.04);
}

.track-card.is-playing .album-play {
    border-color: rgba(220,192,128,0.42);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
        rgba(14,11,8,0.68);
    box-shadow:
        0 18px 38px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.04),
        0 0 18px rgba(214,184,111,0.10);
}

.track-card.is-playing .album-play .album-play-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    clip-path: none;
    -webkit-clip-path: none;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.98) 0 7px,
        transparent 7px 13px,
        rgba(255,255,255,0.98) 13px 20px
    );
}

.cover-text {
    position: absolute;
    top: 20px;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-shadow: 0 4px 18px rgba(0,0,0,0.72);
    pointer-events: none;
}

.cover-catalog {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    max-width: calc(100% - 10px);
    padding: 6px 0;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.cover-artist {
    margin: 0 0 10px 0;
    max-width: 78%;
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 0.95vw, 13px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.cover-title {
    margin: 0;
    max-width: 96%;
    padding-bottom: 0.12em;
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 1.72vw, 29px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(255,255,255,0.98);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: text-shadow 0.32s ease, color 0.32s ease;
}

.track-card:not(.active-track):hover .album-vinyl {
    --vinyl-shift: -30px;
    opacity: 0.94;
}

.track-card.active-track .album-vinyl {
    --vinyl-shift: -30px;
    opacity: 0.96;
}

.track-card:hover .album-sleeve,
.track-card.active-track .album-sleeve {
    box-shadow: 0 26px 50px rgba(0,0,0,0.54), 0 0 0 1px rgba(255,255,255,0.07);
}

.track-card:hover .album-sleeve::before,
.track-card.active-track .album-sleeve::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.10), transparent 18%), linear-gradient(to right, rgba(255,255,255,0.03), transparent 12%), linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.08));
}

.track-card:hover .cover-catalog,
.track-card.active-track .cover-catalog {
    color: rgba(255,255,255,0.88);
}

.track-card:hover .cover-artist,
.track-card.active-track .cover-artist {
    color: rgba(255,255,255,0.92);
}

.track-card:hover .cover-title,
.track-card.active-track .cover-title {
    text-shadow: 0 8px 24px rgba(0,0,0,0.72);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 30px 24px 150px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.footer-line {
    width: min(100%, 820px);
    height: 1px;
    margin: 0 auto 26px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
}

.footer-signature {
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.2;
    color: rgba(255,255,255,0.92);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-bottom: 18px;
}

.footer-links a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
    transition: color 0.22s ease;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.94);
}

.footer-meta {
    color: rgba(255,255,255,0.46);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================
   RESPONSIVE
========================= */


@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        max-width: 320px;
        font-size: 15px;
        letter-spacing: 0.8px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 34px;
    }

    .hero-btn,
    .btn-primary,
    .btn-secondary,
    .section-link-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }

    .hero-scroll {
        bottom: 20px;
    }

    .hero-scroll-line {
        height: 30px;
    }

    .featured-hero {
        padding-top: 96px;
        padding-bottom: 48px;
    }

    .featured-inner {
        width: min(100%, calc(100% - 28px));
        gap: 42px;
    }

    .featured-art-wrap {
        width: min(100%, 360px);
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .featured-vinyl {
        left: 56%;
        width: 84%;
        --vinyl-shift: -20px;
    }

    .featured-sleeve {
        width: 76%;
    }

    .featured-heading {
        font-size: clamp(38px, 9vw, 54px);
    }

    .featured-description {
        font-size: 16px;
        line-height: 1.78;
    }

    .home-latest {
        padding-top: 70px;
    }

    .identity-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .album-grid {
        gap: 42px;
    }

    .album-card {
        width: 100%;
    }

    .album-art-wrap {
        aspect-ratio: 1 / 0.88;
    }

    .album-vinyl {
        top: 50%;
        left: 53%;
        width: 64%;
    }

    .album-sleeve {
        width: 76%;
    }

    .album-play {
        width: 66px;
        height: 66px;
    }

    .album-play-icon {
        width: 18px;
        height: 20px;
        margin-left: 3px;
    }

    .track-card.is-playing .album-play .album-play-icon {
        width: 18px;
        height: 18px;
        margin-left: 0;
        clip-path: none;
        -webkit-clip-path: none;
        background: linear-gradient(
            to right,
            rgba(255,255,255,0.98) 0 6px,
            transparent 6px 12px,
            rgba(255,255,255,0.98) 12px 18px
        );
    }

    .cover-text {
        top: 16px;
        left: 18px;
        right: 18px;
        bottom: 16px;
    }

    .cover-catalog {
        max-width: calc(100% - 12px);
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .cover-artist {
        max-width: 82%;
        margin: 0 0 8px 0;
        font-size: clamp(10px, 2.8vw, 12px);
        letter-spacing: 1.8px;
    }

    .cover-title {
        max-width: 98%;
        font-size: clamp(18px, 4.5vw, 25px);
        line-height: 1.06;
    }

    .track-card:not(.active-track):hover .album-vinyl,
    .track-card.active-track .album-vinyl {
        --vinyl-shift: -34px;
    }

    .footer-signature {
        font-size: 21px;
    }
}