:root {
    --bg: #050505;
    --text: #f4f1ea;
    --muted: rgba(244, 241, 234, 0.68);
    --line: rgba(244, 241, 234, 0.18);
    --accent: #962a72;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

em {
    font-style: italic;
}

.dot {
    color: var(--accent);
}

/* header */
.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    width: 100%;
    padding: 26px 34px;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--text);
    mix-blend-mode: difference;
}

body.menu-open .site-header {
    mix-blend-mode: normal;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text);
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:first-child {
    transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
}

.page-title,
.menu-links a,
.footer-bottom a,
.section-copy a {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding-bottom: 4px;
}

.page-title::after,
.menu-links a::after,
.footer-bottom a::after,
.section-copy a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-title:hover::after,
.menu-links a:hover::after,
.footer-bottom a:hover::after,
.section-copy a:hover::after {
    transform: scaleX(1);
}

.page-title {
    font-size: 16px;
    letter-spacing: -0.045em;
}

/* menu */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.site-menu {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: min(380px, 88vw);
    height: 100%;
    background: var(--bg);
    border-right: 1px solid var(--line);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 26px 34px;
}

.site-menu.is-open {
    transform: translateX(0);
}

.menu-inner {
    margin-top: 72px;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-links a {
    font-size: clamp(22px, 3.5vw, 32px);
    letter-spacing: -0.04em;
    font-weight: 500;
    line-height: 1;
}

/* image sections */
.image-section {
    position: relative;
    height: 84vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-section {
    height: 100vh;
    min-height: 700px;
}

.compact-image {
    height: 76vh;
    min-height: 560px;
}

.release-section {
    height: 78vh;
    min-height: 560px;
}

.release-section img {
    object-position: center 42%;
}

.feature-image img {
    object-position: center 38%;
}

.image-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
}

.hero-copy,
.section-copy {
    position: absolute;
    z-index: 2;
    left: 34px;
    bottom: 44px;
    max-width: 960px;
}

.hero-copy p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 14px;
}

.hero-copy h1 {
    font-size: clamp(64px, 14vw, 180px);
    line-height: 0.82;
    letter-spacing: -0.085em;
    font-weight: 500;
}

.hero-copy h2 {
    margin-top: 22px;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(24px, 3.4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.section-copy h2 {
    font-size: clamp(42px, 7vw, 104px);
    line-height: 0.88;
    letter-spacing: -0.075em;
    font-weight: 500;
    margin-bottom: 22px;
}

.section-copy span {
    color: var(--muted);
    font-size: 18px;
}

.section-copy a {
    font-size: 15px;
}

/* intro */
.intro-section {
    padding: 92px 34px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 34px;
    align-items: start;
}

.intro-label {
    color: var(--accent);
    font-size: 16px;
}

.intro-copy {
    max-width: 980px;
}

.intro-copy p {
    color: var(--text);
    font-size: clamp(24px, 3.6vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    font-weight: 400;
}

/* article text */
.article-section {
    padding: 84px 34px;
    border-bottom: 1px solid var(--line);
}

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

.article-copy p {
    color: var(--muted);
    font-size: clamp(19px, 2vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

/* section headings */
.section-heading {
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(52px, 9vw, 132px);
    line-height: 0.84;
    letter-spacing: -0.085em;
    font-weight: 500;
}

/* tracks */
.tracks-section {
    padding: 88px 34px;
    border-bottom: 1px solid var(--line);
}

.track-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.track-row img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    margin-bottom: 16px;
}

.track-row h3 {
    font-size: clamp(24px, 3vw, 46px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 500;
    margin-bottom: 10px;
}

.track-row p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.32;
}

/* similar artists */
.similar-section {
    padding: 88px 34px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.artist-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
    margin-right: -34px;
    padding-right: 34px;
}

.artist-carousel::-webkit-scrollbar {
    height: 6px;
}

.artist-carousel::-webkit-scrollbar-track {
    background: rgba(244, 241, 234, 0.08);
}

.artist-carousel::-webkit-scrollbar-thumb {
    background: var(--accent);
}

.artist-carousel article {
    flex: 0 0 min(31vw, 430px);
    scroll-snap-align: start;
}

.artist-carousel img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    margin-bottom: 14px;
}

.artist-carousel h3 {
    font-size: clamp(28px, 4vw, 60px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 500;
}

/* footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 90px 34px 30px;
}

.footer-statement h2 {
    font-size: clamp(52px, 10vw, 140px);
    line-height: 0.86;
    letter-spacing: -0.08em;
    font-weight: 500;
}

.footer-statement p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 20px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

@media (max-width: 800px) {
    .site-header {
        padding: 20px;
    }

    .site-menu {
        padding: 20px;
    }

    .page-title {
        font-size: 14px;
    }

    .image-section,
    .compact-image,
    .release-section {
        height: 72vh;
        min-height: 520px;
    }

    .hero-section {
        height: 100vh;
        min-height: 640px;
    }

    .hero-copy,
    .section-copy {
        left: 20px;
        right: 20px;
        bottom: 28px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        padding: 72px 20px;
        gap: 18px;
    }

    .intro-copy p {
        font-size: clamp(24px, 8vw, 38px);
    }

    .article-section {
        padding: 72px 20px;
    }

    .article-copy {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tracks-section,
    .similar-section {
        padding: 72px 20px;
    }

    .track-row {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin-right: -20px;
        padding-right: 20px;
        padding-bottom: 18px;
    }

    .track-row article {
        flex: 0 0 74vw;
        scroll-snap-align: start;
    }

    .artist-carousel {
        margin-right: -20px;
        padding-right: 20px;
    }

    .artist-carousel article {
        flex: 0 0 72vw;
    }

    .site-footer {
        padding: 70px 20px 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }
}