:root {
    --bg: #030303;
    --text: #d8d8d8;
    --muted: #8d8d8d;
    --line: rgba(255,255,255,.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: .02em;
}

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

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.15),
            rgba(0,0,0,.82)
        ),
        url('assets/forest.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 55% 45%,
            transparent 0,
            rgba(0,0,0,.2) 25%,
            rgba(0,0,0,.92) 78%
        );
    pointer-events: none;
}

.fog {
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(
            115deg,
            transparent,
            rgba(255,255,255,.05),
            transparent
        );
    filter: blur(18px);
    opacity: .5;
}

.nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 48px 6vw;
}

.logo {
    width: min(500px, 80vw);
    filter: invert(1) contrast(1.4) drop-shadow(0 0 12px #000);
}

nav {
    display: flex;
    gap: 24px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .22em;
    color: #aaa;
}

nav a {
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
}

nav a:hover {
    border-color: #fff;
    color: #fff;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 40px 0 0 7vw;
}

.overline {
    text-transform: uppercase;
    letter-spacing: .45em;
    font-size: 12px;
    color: var(--muted);
}

h1 {
    font-size: clamp(54px, 10vw, 150px);
    font-weight: 400;
    letter-spacing: .22em;
    margin: .15em 0;
    text-transform: uppercase;
    color: #eee;
    text-shadow: 0 0 30px #000;
}

.claim {
    font-size: clamp(20px, 2.2vw, 33px);
    line-height: 1.35;
    max-width: 680px;
    color: #c8c8c8;
}

.button {
    display: inline-block;
    margin-top: 28px;
    border: 1px solid #bdbdbd;
    padding: 14px 22px;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    background: rgba(255,255,255,.06);
}

.button:hover {
    background: #ddd;
    color: #000;
}

/* CONTENT SECTIONS */

.album,
.split,
.press {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7vw;
    align-items: center;
    padding: 110px 7vw;
    border-top: 1px solid var(--line);
}

.cover-wrap {
    display: flex;
    justify-content: center;
}

.cover {
    width: min(620px, 100%);
    box-shadow: 0 0 80px #000;
    border: 1px solid var(--line);
}

.text-block h2,
.listen h2,
.press h2 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: clamp(34px, 5vw, 72px);
    margin: .2em 0 .5em;
}

.text-block p,
.listen p {
    font-size: 19px;
    line-height: 1.75;
    color: #c2c2c2;
}

.narrow {
    max-width: 720px;
}

/* DISCOGRAPHY */

.discography {
    border-left: 1px solid var(--line);
    padding-left: 38px;
    color: #aaa;
}

.discography h3 {
    text-transform: uppercase;
    letter-spacing: .3em;
    font-weight: 400;
    color: #eee;
}

.discography p {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 0;
    margin: 0;
}

/* LISTEN */

.listen {
    text-align: center;
    padding: 130px 7vw;
    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.88)
        ),
        url('assets/forest.jpg') center/cover fixed no-repeat;
    border-top: 1px solid var(--line);
}

.ghost {
    background: #ddd;
    color: #000;
}

/* PRESS */

.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.press-grid a {
    border: 1px solid var(--line);
    padding: 22px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    color: #bbb;
}

.press-grid a:hover {
    border-color: #fff;
    color: #fff;
}

/* QUOTES */

.quotes {
    padding: 90px 7vw;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.quotes blockquote {
    font-size: 30px;
    line-height: 1.4;
    color: #bfbfbf;
    margin: 0;
    font-style: italic;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 90px 7vw 110px;
    border-top: 1px solid var(--line);
    color: #999;
}

.footer-logo {
    width: 220px;
    filter: invert(1) contrast(1.4);
    opacity: .9;
}

footer a {
    display: inline-block;
    margin-top: 10px;
    color: #eee;
    border-bottom: 1px solid #777;
}

/* MOBILE */

@media (max-width: 850px) {

    .nav {
        display: block;
    }

    .logo {
        width: 260px;
    }

    nav {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-copy {
        margin-top: 40px;
    }

    .album,
    .split,
    .press,
    .quotes {
        grid-template-columns: 1fr;
        padding: 70px 24px;
    }

    .discography {
        border-left: 0;
        padding-left: 0;
    }

    .listen {
        padding: 90px 24px;
        background-attachment: scroll;
    }

    h1 {
        letter-spacing: .12em;
    }
}
/* SUBPAGES */

.subpage-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 48px 6vw;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.15),
            rgba(0,0,0,.82)
        ),
        url('assets/forest.jpg') center/cover no-repeat;
}

.album-hero {
    min-height: calc(100vh - 170px);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7vw;
    align-items: center;
    padding: 70px 7vw 110px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.7),
            rgba(0,0,0,.35),
            rgba(0,0,0,.9)
        ),
        url('assets/forest.jpg') center/cover no-repeat;
    border-top: 1px solid var(--line);
}

.album-intro {
    max-width: 760px;
}

.album-intro p {
    font-size: 21px;
    line-height: 1.7;
    color: #c8c8c8;
}

.page-section {
    padding: 110px 18vw;
    border-top: 1px solid var(--line);
    background: #030303;
}

.page-section.dark {
    background:
        linear-gradient(
            rgba(0,0,0,.82),
            rgba(0,0,0,.94)
        ),
        url('assets/forest.jpg') center/cover fixed no-repeat;
}

.page-section h2 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: clamp(34px,5vw,72px);
    margin: .2em 0 .5em;
}

.page-section p {
    font-size: 21px;
    line-height: 1.8;
    color: #c2c2c2;
}

.tracklist {
    font-size: 22px;
    line-height: 2;
    color: #c8c8c8;
    padding-left: 24px;
}

.tracklist li {
    border-bottom: 1px solid rgba(255,255,255,.09);
    padding: 10px 0;
}

@media(max-width:850px) {
    .subpage-header {
        display: block;
        padding: 38px 24px;
    }

    .album-hero {
        grid-template-columns: 1fr;
        padding: 60px 24px 80px;
    }

    .page-section {
        padding: 70px 24px;
    }
}
