:root {
    --black: #080807;
    --coal: #0f100f;
    --charcoal: #171816;
    --iron: #242521;
    --smoke: #9b9b92;
    --bone: #e8e1d2;
    --white: #f5f0e5;
    --gold: #c79a46;
    --gold-light: #e1bd72;
    --ember: #a94b1c;
    --line: rgba(232, 225, 210, .14);
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --sans: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    color: var(--bone);
    background:
        radial-gradient(circle at 15% 30%, rgba(199, 154, 70, .035), transparent 24rem),
        var(--coal);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    content: "";
    opacity: .22;
    background:
        repeating-radial-gradient(circle at 12% 19%, transparent 0 2px, rgba(255,255,255,.012) 3px 4px),
        repeating-linear-gradient(117deg, transparent 0 7px, rgba(255,255,255,.01) 8px 9px);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, audio { font: inherit; }

.wrap {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section { padding: 130px 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    color: var(--black);
    background: var(--gold-light);
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1320px, calc(100% - 48px));
    height: 106px;
    border-bottom: 1px solid rgba(255,255,255,.17);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
}

.brand-name {
    font-family: var(--sans);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.primary-nav a {
    position: relative;
    color: rgba(245, 240, 229, .75);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; }

.hero {
    position: relative;
    display: grid;
    min-height: 900px;
    grid-template-rows: 1fr auto;
    align-items: center;
    padding-top: 106px;
    overflow: hidden;
    isolation: isolate;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-image {
    z-index: -3;
    background: url("../img/hero.jpg") 58% center / cover no-repeat;
    transform: scale(1.015);
}

.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5,5,4,.94) 0%, rgba(7,7,6,.70) 42%, rgba(8,8,7,.22) 73%),
        linear-gradient(0deg, var(--coal) 0%, transparent 28%, rgba(6,6,5,.4) 100%);
}

.hero-copy {
    align-self: center;
    padding-top: 70px;
    padding-bottom: 60px;
}

.kicker {
    margin: 0 0 20px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .23em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.music-heading h2,
.process-copy h2,
.closing h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: .015em;
    line-height: .92;
    text-transform: uppercase;
}

.hero h1 { max-width: 1000px; font-size: clamp(74px, 9.2vw, 138px); }

h1 em, h2 em {
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 225, 210, .75);
    font-style: normal;
}

.hero-lede {
    max-width: 610px;
    margin: 34px 0 38px;
    color: rgba(232, 225, 210, .78);
    font-size: 19px;
    line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-gold { color: #0a0907; background: var(--gold-light); }
.button-gold:hover, .button-gold:focus-visible { background: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(5,5,5,.18); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--gold-light); color: var(--gold-light); }

.hero-foot {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero-foot p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: baseline;
    margin: 0;
    color: rgba(245,240,229,.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-foot span { color: var(--gold-light); }

.secret-cross {
    position: absolute;
    z-index: -1;
    top: 150px;
    right: 9%;
    width: 210px;
    height: 390px;
    opacity: .07;
    transition: opacity 1.2s ease;
}

.secret-cross::before,
.secret-cross::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
}

.secret-cross::before { top: 0; left: 50%; width: 1px; height: 100%; }
.secret-cross::after { top: 31%; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.hero:hover .secret-cross { opacity: .18; }

.manifesto {
    position: relative;
    overflow: hidden;
    background: var(--coal);
}

.manifesto-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 100px;
}

.manifesto h2 { max-width: 520px; font-size: clamp(68px, 8.5vw, 122px); }
.manifesto-copy { padding: 23px 0 0 42px; border-left: 1px solid var(--gold); }
.manifesto-copy p { color: var(--smoke); }
.manifesto-copy .lead { margin-top: 0; color: var(--bone); font-family: var(--serif); font-size: 27px; line-height: 1.42; }

.manifesto-word {
    position: absolute;
    right: -3vw;
    bottom: -10vw;
    color: transparent;
    font-family: var(--display);
    font-size: 31vw;
    line-height: .8;
    -webkit-text-stroke: 1px rgba(199, 154, 70, .055);
    pointer-events: none;
}

.image-creed {
    position: relative;
    display: grid;
    min-height: 720px;
    grid-template-columns: 1.2fr .8fr;
    background: #0b0b0a;
}

.image-creed-photo {
    background:
        linear-gradient(90deg, transparent 62%, #0b0b0a 100%),
        linear-gradient(0deg, #0b0b0a 0%, transparent 24%, transparent 78%, #0b0b0a 100%),
        url("../img/women.jpg") 68% center / cover no-repeat;
    filter: contrast(1.13);
}

.image-creed-copy {
    align-self: center;
    max-width: 560px;
    padding: 70px 8vw 70px 20px;
}

.line-mark { display: block; width: 82px; height: 2px; margin-bottom: 34px; background: var(--gold); }

.image-creed blockquote {
    margin: 0 0 30px;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(40px, 4.3vw, 70px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.image-creed-copy > p:last-child { color: var(--smoke); }

.music { padding-bottom: 40px; background: #11120f; }

.music-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
    padding-bottom: 80px;
}

.music-heading h2 { font-size: clamp(64px, 7.5vw, 112px); }
.music-heading-actions { display: flex; max-width: 430px; flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 8px; }
.music-heading-actions > p:first-child { margin: 0; color: var(--smoke); font-size: 19px; }
.random-play { gap: 15px; cursor: pointer; }
.random-play > span:last-child { font-size: 20px; line-height: 1; }
.random-status { min-height: 1.4em; margin: -6px 0 0 !important; color: #74756e !important; font-size: 12px !important; letter-spacing: .03em; }

.albums { display: grid; gap: 140px; }

.album {
    display: grid;
    grid-template-columns: minmax(300px, .76fr) minmax(460px, 1.24fr);
    gap: 72px;
    align-items: start;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.album-reverse { grid-template-columns: minmax(460px, 1.24fr) minmax(300px, .76fr); }
.album-reverse .album-visual { grid-column: 2; }
.album-reverse .album-content { grid-column: 1; grid-row: 1; }

.album-visual { position: sticky; top: 28px; min-width: 0; overflow: visible; }
.album-visual img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; box-shadow: 0 34px 80px rgba(0,0,0,.42); }
.album-number { margin: 0 0 16px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .2em; }

.album-header { display: grid; grid-template-columns: 1fr .7fr; gap: 42px; align-items: end; margin: 42px 0 35px; }
.album-header h3 { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(50px, 5.2vw, 78px); font-weight: 400; letter-spacing: .02em; line-height: .92; text-transform: uppercase; }
.album-header > p { margin: 0 0 3px; color: var(--smoke); font-size: 15px; }

.player-shell {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 12px;
    padding: 19px 22px;
    border: 1px solid rgba(199, 154, 70, .35);
    background: #0a0b09;
}

.now-playing { display: grid; line-height: 1.2; }
.now-playing span { margin-bottom: 5px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.now-playing strong { color: var(--bone); font-size: 15px; }

audio { width: 100%; height: 38px; accent-color: var(--gold); }

.track-list { margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--line); }
.track-list li { border-top: 1px solid var(--line); }

.track-list button {
    display: grid;
    width: 100%;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 8px;
    border: 0;
    color: var(--bone);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, padding .2s ease;
}

.track-list button:hover,
.track-list button:focus-visible { padding-left: 15px; color: var(--gold-light); background: rgba(199,154,70,.045); outline: none; }
.track-list button.is-current { color: var(--gold-light); background: rgba(199,154,70,.07); }
.track-list button span { color: #66675f; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.track-list button strong { font-size: 15px; letter-spacing: .025em; }
.track-list button i { color: var(--gold); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; opacity: 0; transition: opacity .2s ease; }
.track-list button:hover i, .track-list button:focus-visible i, .track-list button.is-current i { opacity: 1; }

.process-section {
    display: grid;
    min-height: 860px;
    grid-template-columns: 1fr 1fr;
    margin-top: 110px;
    background: #0a0a09;
}

.process-image {
    background:
        linear-gradient(90deg, transparent 65%, #0a0a09 100%),
        linear-gradient(0deg, #0a0a09 0%, transparent 28%, transparent 78%, #0a0a09 100%),
        url("../img/water.jpg") center / cover no-repeat;
    filter: saturate(.55) contrast(1.18);
}

.process-copy { align-self: center; max-width: 700px; padding: 100px 8vw 100px 7vw; }
.process-copy h2 { margin-bottom: 38px; font-size: clamp(57px, 6.2vw, 94px); }
.process-copy p { color: var(--smoke); }
.process-copy p:first-of-type { color: var(--bone); font-size: 20px; }

.text-link {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
}

.closing {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 48%, rgba(199,154,70,.10), transparent 25rem),
        var(--coal);
}

.closing::before,
.closing::after {
    position: absolute;
    left: 50%;
    content: "";
    background: rgba(199,154,70,.28);
    transform: translateX(-50%);
}

.closing::before { top: 0; width: 1px; height: 84px; }
.closing::after { bottom: 0; width: 1px; height: 84px; }
.closing h2 { margin-bottom: 45px; font-size: clamp(66px, 8vw, 120px); }

.site-footer { padding: 75px 0 25px; border-top: 1px solid var(--line); background: #080807; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr; gap: 80px; padding-bottom: 65px; }
.footer-brand { margin-bottom: 24px; }
.footer-grid p { color: #73746d; font-size: 14px; }
.footer-grid > div:nth-child(n+2) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a:not(.brand) { color: var(--bone); font-size: 14px; text-underline-offset: 4px; }
.footer-label { margin: 0 0 10px; color: var(--gold) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #5d5e58; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
    .hero { min-height: 820px; }
    .manifesto-grid { gap: 60px; }
    .image-creed { grid-template-columns: 1fr 1fr; }
    .album, .album-reverse { grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr); gap: 42px; }
    .album-header { grid-template-columns: 1fr; gap: 22px; }
    .album-reverse .album-visual { grid-column: 1; }
    .album-reverse .album-content { grid-column: 2; }
    .player-shell { grid-template-columns: 1fr; gap: 12px; }
    .process-section { grid-template-columns: .85fr 1.15fr; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .wrap { width: min(100% - 32px, 1180px); }
    .section { padding: 88px 0; }
    .site-header { width: calc(100% - 32px); height: 82px; }
    .brand-name { font-size: 18px; }
    .nav-toggle {
        position: relative;
        z-index: 5;
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 7px;
        border: 0;
        color: var(--white);
        background: transparent;
    }
    .nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .2s ease; }
    .nav-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .primary-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        background: rgba(8,8,7,.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }
    .primary-nav.is-open { opacity: 1; pointer-events: auto; }
    .primary-nav a { font-family: var(--display); font-size: 35px; letter-spacing: .04em; }
    .hero { min-height: 830px; align-items: stretch; padding-top: 82px; }
    .hero-image { background-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(5,5,4,.94), rgba(7,7,6,.54)), linear-gradient(0deg, var(--coal), transparent 43%); }
    .hero-copy { align-self: center; padding-top: 70px; padding-bottom: 40px; }
    .hero h1 { font-size: clamp(62px, 18vw, 90px); }
    .hero-lede { margin-top: 28px; font-size: 16px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 300px; }
    .hero-foot { grid-template-columns: 1fr; gap: 6px; margin-bottom: 24px; padding-top: 14px; }
    .hero-foot p { font-size: 9px; }
    .secret-cross { right: -36px; width: 150px; height: 290px; }
    .manifesto-grid, .music-heading { grid-template-columns: 1fr; gap: 42px; }
    .manifesto h2 { font-size: clamp(65px, 20vw, 94px); }
    .manifesto-copy { padding: 0 0 0 24px; }
    .manifesto-copy .lead { font-size: 23px; }
    .image-creed { grid-template-columns: 1fr; min-height: 860px; align-content: end; }
    .image-creed-photo { position: absolute; inset: 0; background: linear-gradient(0deg, #0b0b0a 8%, transparent 72%), linear-gradient(90deg, rgba(0,0,0,.2), transparent), url("../img/women.jpg") 68% center / cover no-repeat; opacity: .78; }
    .image-creed-copy { position: relative; max-width: 100%; padding: 70px 24px; }
    .music-heading { padding-bottom: 60px; }
    .music-heading h2 { font-size: clamp(59px, 18vw, 88px); }
    .albums { gap: 100px; }
    .album, .album-reverse { display: grid; grid-template-columns: 1fr; gap: 24px; padding-top: 22px; }
    .album-reverse .album-visual, .album-reverse .album-content { grid-column: 1; }
    .album-reverse .album-visual { grid-row: 1; }
    .album-reverse .album-content { grid-row: 2; }
    .album-visual { position: static; }
    .album-header { margin-top: 20px; }
    .album-header h3 { font-size: clamp(52px, 16vw, 76px); }
    .player-shell { padding: 16px; }
    .process-section { position: relative; display: grid; min-height: 940px; grid-template-columns: 1fr; align-content: end; margin-top: 80px; }
    .process-image { position: absolute; inset: 0; background: linear-gradient(0deg, #0a0a09 15%, transparent 76%), url("../img/water.jpg") center / cover no-repeat; opacity: .63; }
    .process-copy { position: relative; max-width: 100%; padding: 90px 24px; }
    .process-copy h2 { font-size: clamp(54px, 15vw, 76px); }
    .closing { min-height: 570px; }
    .closing h2 { font-size: clamp(61px, 18vw, 86px); }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { display: grid; gap: 6px; }
}

@media (max-width: 420px) {
    .brand-name { display: inline; font-size: 17px; }
    .hero h1 { font-size: 58px; }
    .track-list button { grid-template-columns: 32px 1fr auto; }
    .track-list button strong { font-size: 14px; }
    .track-list button i { font-size: 8px; }
}
