@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg: #0b0b0b;
    --text: #f1efe9;
    --muted: #a6a39e;
    --accent: #ff5b20;
    --line: #30302d
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', Arial, sans-serif
}

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

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 7px
}

header {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5%;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 10
}

.wordmark {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px
}

.wordmark span {
    font-family: Arial;
    font-size: 12px;
    vertical-align: top;
    display: inline-block;
    margin: 8px 0 0 4px
}

nav {
    display: flex;
    gap: 38px
}

nav a,
.social {
    font-size: 14px;
    font-weight: 500;
    transition: color .25s
}

nav a:hover,
.social:hover {
    color: var(--accent)
}

.hero {
    padding: 24px 4.5% 40px;
    overflow: hidden;
    min-height: calc(100svh - 88px);
    display: flex;
    flex-direction: column
}

.hero-top,
.section-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 1.3px;
    font-weight: 600
}

.hero-top {
    color: var(--muted)
}

.hero-stage {
    position: relative;
    min-height: 480px;
    height: 53vw;
    max-height: 620px;
    display: grid;
    place-items: center
}

.giant {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-size: 29.5vw;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.025em;
    margin: 0;
    position: absolute;
    top: 23%;
    color: #ecebe5;
    transform: scaleX(1.07)
}

.sculpture {
    width: min(51vw, 650px);
    height: min(51vw, 650px);
    position: absolute;
    z-index: 2;
    top: -5%;
    pointer-events: none;
    will-change: transform
}

.sculpture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    mask-image: radial-gradient(ellipse, black 43%, transparent 73%);
    filter: drop-shadow(0 10px 45px #ff5b2026)
}

.side-note {
    position: absolute;
    left: 0;
    bottom: 16%;
    font-size: 12px;
    letter-spacing: 1.6px;
    line-height: 1.6;
    color: var(--muted)
}

.hero-stamp {
    position: absolute;
    right: 0;
    bottom: 15%;
    text-align: right;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.7;
    color: var(--muted);
    display: grid
}

.hero-bottom {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: auto;
    gap: 25px
}

h1 {
    font-size: clamp(30px, 3.3vw, 50px);
    line-height: 1.06;
    letter-spacing: -2px;
    font-weight: 500;
    margin: 0
}

h1 em {
    font-style: normal;
    color: var(--muted)
}

.round-link {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px
}

.round-link i {
    width: 70px;
    height: 70px;
    border: 1px solid #555;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-style: normal;
    transition: background .3s, color .3s
}

.round-link:hover i {
    background: var(--accent);
    color: #111;
    border-color: var(--accent)
}

.scroll {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted)
}

.ticker {
    background: var(--accent);
    color: #111;
    padding: 16px 0;
    overflow: hidden;
    margin-top: 20px
}

.ticker div {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-size: 32px;
    font-weight: 700;
    white-space: nowrap;
    word-spacing: 12px;
    animation: marquee 30s linear infinite;
    width: max-content
}

.section {
    padding: 65px 4.5% 90px
}

.section-label {
    color: var(--muted);
    margin-bottom: 52px
}

.release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%
}

.release-art {
    aspect-ratio: 1;
    background: #ec5621;
    position: relative;
    padding: 30px;
    overflow: hidden;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, #0000000c 4px), radial-gradient(ellipse at 80% 20%, #ff9751, transparent 70%)
}

.art-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.6
}

.art-title {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 900;
    font-size: clamp(75px, 11.5vw, 170px);
    line-height: .76;
    letter-spacing: -.045em;
    transform: rotate(-7deg);
    padding: 10px 0
}

.art-title span {
    font-size: .6em;
    position: absolute;
    right: 0;
    bottom: 0
}

.art-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    color: var(--accent)
}

.release-copy {
    padding-top: 18px
}

h2 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-size: clamp(60px, 7vw, 110px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .95;
    margin: 25px 0
}

.release-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 360px
}

.button {
    display: inline-flex;
    padding: 17px 23px;
    border: 1px solid #595650;
    gap: 35px;
    font-size: 14px;
    align-items: center;
    margin-top: 20px;
    transition: background .25s, border-color .25s
}

.button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111
}

.button span {
    font-size: 21px
}

.tracks {
    margin-top: 42px;
    border-top: 1px solid var(--line)
}

.tracks a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    transition: color .25s
}

.tracks a:hover {
    color: var(--accent)
}

.tracks span,
.tracks small {
    color: var(--muted);
    font-size: 12px
}

.tracks strong {
    font-size: 18px;
    font-weight: 500
}

.tracks small {
    margin-left: auto
}

.tracks b {
    font-size: 20px;
    font-weight: 400
}

.club {
    background: #e8e6de;
    color: #151515;
    padding-bottom: 58px;
    overflow: hidden
}

.club .section-label {
    color: #5c5b56
}

.club-heading {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.club-heading h2 {
    font-size: clamp(80px, 15vw, 230px);
    margin: 0;
    letter-spacing: -.03em
}

.club-heading h2 span {
    color: #e45423
}

.episode {
    font-size: 14px;
    display: flex;
    flex-direction: column
}

.episode strong {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-size: 75px;
    line-height: 1
}

.wave {
    height: 150px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 32px 0;
    overflow: hidden
}

.wave i {
    flex: 1;
    min-width: 3px;
    background: #272621;
    height: var(--h);
    transform-origin: center;
    animation: pulse var(--t) ease-in-out infinite alternate;
    opacity: .9
}

.club-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.club-bottom p {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.7px;
    margin: 0
}

.light {
    border-color: #85847c;
    margin: 0
}

.about {
    padding-top: 70px;
    padding-bottom: 100px
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10%;
    align-items: center
}

.about-content h2 {
    font-size: clamp(60px, 8vw, 120px);
    margin: 0
}

.about-content h2 span {
    color: var(--accent)
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 420px;
    margin: 0 0 20px
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent)
}

footer {
    border-top: 1px solid var(--line);
    padding: 28px 4.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

footer>span,
footer>a:not(.wordmark) {
    font-size: 12px;
    letter-spacing: .7px;
    color: var(--muted)
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s, transform .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes marquee {
    to {
        transform: translateX(-40%)
    }
}

@keyframes pulse {
    to {
        transform: scaleY(.55)
    }
}

@media(min-width:1500px) {
    .hero-stage {
        height: 620px
    }

    .giant {
        font-size: 440px
    }
}

@media(max-width:700px) {
    header {
        height: 74px;
        padding: 0 6%
    }

    .wordmark {
        font-size: 34px
    }

    nav {
        gap: 18px
    }

    nav a {
        font-size: 13px
    }

    .social {
        display: none
    }

    .hero {
        padding: 24px 6% 30px;
        min-height: calc(90svh - 74px)
    }

    .hero-top {
        font-size: 10px;
        letter-spacing: .5px;
        gap: 20px
    }

    .hero-top span:last-child {
        text-align: right
    }

    .hero-stage {
        min-height: 350px;
        height: 55svh;
        max-height: 480px
    }

    .giant {
        font-size: 30vw;
        top: 35%
    }

    .sculpture {
        width: 105vw;
        height: 105vw;
        max-width: 480px;
        max-height: 480px;
        top: 0
    }

    .side-note,
    .hero-stamp {
        bottom: 6%;
        font-size: 10px
    }

    .hero-bottom {
        align-items: center;
        flex-wrap: wrap
    }

    h1 {
        font-size: 34px;
        letter-spacing: -1.3px
    }

    .round-link {
        gap: 12px;
        font-size: 13px
    }

    .round-link i {
        width: 49px;
        height: 49px;
        font-size: 26px
    }

    .scroll {
        width: 100%;
        margin-top: 18px;
        font-size: 10px
    }

    .ticker {
        margin-top: 0;
        padding: 12px 0
    }

    .ticker div {
        font-size: 25px
    }

    .section {
        padding: 45px 6% 60px
    }

    .section-label {
        font-size: 10px;
        letter-spacing: .7px;
        gap: 20px;
        margin-bottom: 30px
    }

    .section-label span:last-child {
        text-align: right
    }

    .release {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .release-art {
        padding: 26px
    }

    .art-title {
        font-size: 24vw
    }

    .release-copy {
        padding-top: 0
    }

    h2 {
        font-size: 70px
    }

    .tracks {
        margin-top: 28px
    }

    .club-heading h2 {
        font-size: 17vw
    }

    .episode strong {
        font-size: 45px
    }

    .episode {
        font-size: 12px
    }

    .wave {
        height: 105px;
        gap: 3px;
        margin: 24px 0
    }

    .club-bottom {
        align-items: start;
        gap: 20px;
        flex-direction: column
    }

    .club-bottom p {
        font-size: 22px
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .about-content h2 {
        font-size: 80px
    }

    .about-content p {
        font-size: 16px
    }

    footer {
        padding: 24px 6%;
        flex-wrap: wrap
    }

    footer .wordmark {
        width: 55%
    }

    footer>a:not(.wordmark) {
        font-size: 10px
    }

    footer>span {
        font-size: 10px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Original identity and separate pages */
body {
    background: #08090a
}

header {
    background: #08090a
}

.brand-home {
    display: block;
    position: relative;
    width: 150px;
    height: 48px;
    overflow: hidden;
    flex-shrink: 0
}

.brand-home img {
    position: absolute;
    width: 237px;
    max-width: none;
    height: auto;
    left: -44px;
    top: -78px;
    mix-blend-mode: screen
}

nav a[aria-current=page] {
    color: var(--accent)
}

.home-page {
    height: 100svh;
    min-height: 500px;
    display: flex;
    flex-direction: column
}

.home-page header {
    flex: 0 0 88px
}

.home-page main {
    flex: 1;
    min-height: 0
}

.home-screen {
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 24px 4.5% 36px;
    overflow: hidden;
    background: #000
}

.home-page header {
    background: #000
}

.home-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1px
}

.mascot-stage {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.real-mascot {
    display: block;
    width: auto;
    height: 100%;
    max-height: 720px;
    max-width: 100%;
    object-fit: contain;
    animation: mascot-in 1s ease-out both
}

.home-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px
}

.home-location {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.7;
    text-align: right;
    color: var(--muted)
}

.spotify-section {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    padding-top: 35px
}

.spotify-section .section-label {
    margin-bottom: 25px
}

.spotify-section iframe {
    border: 0;
    border-radius: 12px;
    display: block
}

.club {
    min-height: calc(100svh - 88px)
}

.about {
    min-height: calc(100svh - 190px)
}

@keyframes mascot-in {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media(max-width:700px) {
    .brand-home {
        width: 115px;
        height: 40px
    }

    .brand-home img {
        width: 183px;
        left: -34px;
        top: -60px
    }

    .home-page header {
        flex-basis: 74px
    }

    .home-screen {
    padding: 22px 0 28px;
    }

    .home-meta {
        font-size: 10px;
        gap: 20px;
        letter-spacing: .5px
    }

    .home-meta span:last-child {
        text-align: right
    }

    .home-bottom {
        gap: 16px;
        align-items: center
    }

    .home-bottom h1 {
        font-size: 29px
    }

    .home-location {
        display: none
    }

    .real-mascot {
        width: 100%;
        height: 100%;
        max-height: 600px
    }

    .home-bottom .round-link {
        gap: 10px;
        font-size: 12px
    }

    .home-bottom .round-link i {
        width: 42px;
        height: 42px
    }

    .spotify-section {
        margin-top: 45px
    }

    .club {
        min-height: calc(100svh - 74px)
    }
}

@media(max-width:370px) {
    nav {
        gap: 12px
    }

    .brand-home {
        width: 100px
    }

    .home-bottom h1 {
        font-size: 25px
    }
}

@media(max-height:500px) and (min-width:701px) {
    .home-page {
        min-height: 360px
    }

    .home-page header {
        flex-basis: 65px
    }

    .home-screen {
        padding: 12px 4.5% 18px
    }

    .home-bottom h1 {
        font-size: 25px
    }

    .round-link i {
        height: 44px;
        width: 44px
    }
}

[hidden] {
    display: none !important
}

#site-main>[data-view=home] {
    height: 100%
}

.home-screen {
    position: relative;
    padding-bottom: 65px
}

.home-socials {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%)
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px
}

.social-icons a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    transition: opacity .2s
}

.social-icons a:hover {
    opacity: .65
}

.social-icons svg {
    width: 22px;
    height: 22px
}

header>.social-icons {
    margin-left: 20px
}

.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
}

.bio-page {
    background: #000;
    text-align: center;
    padding-top: 40px
}

.bio-portrait {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 616 / 512;
    margin: 0 auto;
    overflow: hidden
}

.bio-portrait img {
    position: absolute;
    max-width: none;
    width: 115.1%;
    height: auto;
    left: -4.7%;
    top: -44.3%
}

.bio-logo {
    position: relative;
    width: min(78vw, 430px);
    aspect-ratio: 3.3;
    margin: 36px auto 20px;
    overflow: hidden
}

.bio-logo img {
    position: absolute;
    width: 159%;
    max-width: none;
    left: -29.1%;
    top: -170%;
    height: auto
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 26px;
    border-top: 2px solid #dc3024
}

.bio-text p {
    font-style: italic;
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.65;
    margin: 0 0 30px
}

.bio-text p:last-child {
    font-weight: 600
}

.home-page header .social-icons {
    display: none
}

@media(max-width:700px) {
    header>.social-icons {
        display: none
    }

    .home-screen {
        padding-bottom: 66px
    }

    .home-socials {
        bottom: 13px
    }

    .social-icons {
        gap: 18px
    }

    .bio-page {
        padding: 26px 6% 45px
    }

    .bio-logo {
        margin-top: 24px
    }

    .bio-text {
        padding-top: 24px
    }

    .bio-text p {
        font-size: 20px;
        line-height: 1.6
    }

    footer .brand-home {
        width: 115px
    }

    nav {
        gap: 24px
    }
}

.home-screen {
    grid-template-rows: auto minmax(0, 1fr)
}

.social-icons a[aria-label="SoundCloud"] svg {
    width: 28px;
    height: 28px
}

.live-video {
    aspect-ratio: 16/9;
    width: 100%;
    margin: 36px 0;
    background: #000
}

.live-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0
}

.bio-text {
    margin-top: 36px
}

/* Official release cover, live colors and section navigation */
.blackout-cover {
    display: block;
    padding: 0;
    background: none;
    color: inherit
}

.blackout-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain
}

.presave-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%
}

.club {
    background: #000;
    color: #fff
}

.club .section-label {
    color: #a6a39e
}

.club-heading h2,
.club-heading h2 span {
    color: #fff
}

.club .light {
    border-color: #595959
}

.bio-text {
    margin-top: 0
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 1px solid #666;
    border-radius: 50%;
    background: #101010;
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 30;
    cursor: pointer;
    box-shadow: 0 4px 18px #0006
}

.back-to-top svg {
    width: 24px;
    height: 24px
}

.back-to-top:hover {
    background: #fff;
    color: #000
}

.back-to-top:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px
}

footer {
    padding-right: 90px
}

@media(max-width:700px) {
    .back-to-top {
        right: 16px;
        bottom: 16px
    }

    footer {
        padding-right: 80px
    }
}

/* Transparent vector identity; no raster cropping or blending. */
.brand-home {
    display: flex;
    align-items: center;
    overflow: visible
}

.brand-home img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    left: auto;
    top: auto;
    mix-blend-mode: normal
}

.bio-logo {
    aspect-ratio: 1399 / 433;
    overflow: visible
}

.bio-logo img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    left: auto;
    top: auto
}

/* Editorial refinement: a single warm accent and restrained motion. */
:root {
    --text: #f3f3f3;
    --muted: #a6a6a6;
    --line: #292929;
    --ease: cubic-bezier(.2, .65, .3, 1)
}

body {
    background: #08090a
}

main {
    min-width: 0
}

iframe {
    max-width: 100%
}

img {
    max-width: 100%
}

header {
    gap: 24px;
    transition: background .3s, border-color .3s
}

body:not(.home-page) header {
    position: sticky;
    top: 0;
    background: rgba(8, 9, 10, .94);
    backdrop-filter: blur(10px)
}

body.is-scrolled header {
    border-bottom-color: #363636
}

header nav {
    min-width: 0;
    gap: clamp(18px, 3vw, 38px)
}

header nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: .875rem;
    letter-spacing: .015em;
    transition: color .25s
}

.brand-home {
    transition: opacity .25s
}

.brand-home:hover {
    opacity: .8
}

.section {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding: 64px 5% 72px
}

.section-label {
    font-size: .75rem;
    line-height: 1.5;
    letter-spacing: .08em;
    gap: 24px;
    margin-bottom: 40px
}

.section-label>* {
    min-width: 0
}

.section-label>:last-child {
    text-align: right
}

.release {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 7%
}

.release>* {
    min-width: 0
}

.release-copy {
    padding: 0
}

.release-copy h2 {
    font-size: clamp(3rem, 6.8vw, 6.5rem);
    line-height: 1;
    letter-spacing: -.025em;
    margin: 20px 0 24px
}

.release-copy p {
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 360px
}

.eyebrow {
    font-size: .75rem;
    line-height: 1.6;
    letter-spacing: .1em
}

.blackout-cover {
    padding: 0;
    background: none;
    display: block
}

.blackout-cover img {
    display: block
}

.button {
    min-height: 50px;
    font-size: .875rem;
    letter-spacing: .045em;
    line-height: 1.4;
    padding: 15px 22px;
    border-color: #505050;
    transition: background .25s, color .25s, border-color .25s
}

.button span {
    transition: transform .3s var(--ease)
}

.button:hover span {
    transform: translate(2px, -2px)
}

.button:hover {
    background: #171717;
    border-color: var(--accent);
    color: #fff
}

.presave-button {
    margin-top: 16px
}

.spotify-section {
    margin-top: 72px;
    padding-top: 32px
}

.spotify-section .section-label {
    margin-bottom: 22px;
    flex-wrap: wrap
}

.spotify-section .section-label a {
    font-size: .75rem;
    transition: color .25s
}

.spotify-section .section-label a:hover {
    color: var(--accent)
}

.bootlegs-section {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--line)
}

.bootlegs-heading {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 36px
}

.bootlegs-heading h2 {
    font-family: 'DM Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 6.5vw, 5.5rem);
    letter-spacing: -.045em;
    line-height: 1.08;
    margin: 16px 0 24px
}

.bootlegs-heading p {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(1.125rem, 2.1vw, 1.6rem);
    letter-spacing: .03em;
    line-height: 1.4;
    margin: 22px 0 0
}

.accent-divider {
    height: 2px;
    width: 100px;
    background: var(--accent);
    margin-inline: auto;
    transform-origin: left
}

.soundcloud-player {
    width: 100%;
    max-width: 940px;
    margin-inline: auto;
    background: #111;
    border: 1px solid #303030;
    border-radius: 4px;
    overflow: hidden
}

.soundcloud-player iframe {
    border: 0;
    display: block;
    width: 100%;
    height: 520px
}

.collection-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    max-width: 940px;
    margin: 14px auto 0;
    min-height: 40px;
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .06em;
    transition: color .25s
}

.collection-link:hover {
    color: #fff
}

.collection-link span {
    color: var(--accent);
    font-size: 18px
}

.bio-page {
    padding-top: 48px;
    text-align: center
}

.bio-portrait {
    width: min(100%, 520px)
}

.bio-logo {
    width: min(70vw, 320px);
    margin: 28px auto 36px
}

.bio-text {
    max-width: 900px;
    text-align: left;
    padding-top: 32px;
    border-top: 1px solid var(--line)
}

.bio-text p {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.85;
    color: #b8b8b8;
    margin: 0 0 22px
}

.bio-text .bio-intro {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.65;
    max-width: 800px;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 500
}

.bio-chapters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px
}

.bio-chapters h2 {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.5;
    letter-spacing: .09em;
    margin: 0 0 20px;
    color: var(--accent)
}

.bio-chapters p:last-child {
    font-weight: 400
}

.bio-text .bio-outro {
    padding-top: 28px;
    margin: 10px 0 0;
    border-top: 1px solid var(--line);
    font-size: 1.125rem;
    color: #eee;
    font-weight: 500;
    max-width: 800px
}

.club {
    min-height: 0
}

.club-heading {
    gap: 24px;
    align-items: flex-end
}

.club-heading h2 {
    font-size: clamp(3rem, 12.5vw, 11rem);
    line-height: 1;
    min-width: 0;
    letter-spacing: -.025em
}

.episode {
    flex-shrink: 0;
    line-height: 1.4
}

.episode strong {
    font-size: clamp(2.5rem, 5vw, 4.5rem)
}

.live-video {
    margin: 36px 0 28px;
    border: 1px solid var(--line)
}

.club-bottom {
    align-items: center;
    gap: 24px
}

.club-bottom p {
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: -.02em;
    color: #b8b8b8
}

.social-icons {
    gap: 8px
}

.social-icons a {
    width: 40px;
    height: 40px
}

.social-icons svg {
    width: 20px;
    height: 20px
}

.social-icons a[aria-label="SoundCloud"] svg {
    width: 25px;
    height: 25px
}

footer {
    padding: 16px max(5%, 72px) 16px 5%;
    min-height: 72px;
    gap: 12px;
    border-top: 1px solid #202020;
    flex-wrap: nowrap
}

footer>span {
    font-size: .75rem;
    color: #777;
    letter-spacing: .04em
}

footer .social-icons {
    gap: 4px
}

footer .social-icons a {
    opacity: .72
}

footer .social-icons a:hover {
    opacity: 1
}

.back-to-top {
    width: 42px;
    height: 42px;
    right: 18px;
    bottom: 18px;
    border-color: #404040;
    box-shadow: none;
    background: #101010e6
}

.back-to-top svg {
    width: 20px;
    height: 20px
}

[data-reveal] {
    opacity: 1;
    transform: none
}

.motion-ready [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translateY(16px)
}

.motion-ready [data-reveal] {
    transition: opacity .65s var(--ease), transform .65s var(--ease);
    transition-delay: var(--reveal-delay, 0ms)
}

.motion-ready .accent-divider[data-reveal]:not(.is-visible) {
    transform: scaleX(0)
}

@media(max-width:900px) {
    header>.social-icons {
        display: none
    }

    .section {
        padding-inline: 5%
    }

    .release-copy h2 {
        font-size: clamp(2.7rem, 6.8vw, 4.6rem)
    }
}

@media(max-width:700px) {
    header {
        padding-inline: 5%;
        gap: 16px
    }

    header nav {
        gap: 20px
    }

    .section {
        padding: 36px 5% 48px
    }

    .section-label {
        font-size: .75rem;
        letter-spacing: .025em;
        gap: 16px;
        margin-bottom: 28px
    }

    .section-label span:last-child {
        max-width: 52%
    }

    .release {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px
    }

    .release-copy h2 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
        margin: 16px 0
    }

    .release-copy p {
        font-size: 1rem;
        margin-bottom: 0
    }

    .spotify-section {
        margin-top: 44px;
        padding-top: 24px
    }

    .spotify-section .section-label {
        gap: 12px
    }

    .bootlegs-section {
        margin-top: 48px;
        padding-top: 36px
    }

    .bootlegs-heading {
        margin-bottom: 26px
    }

    .bootlegs-heading h2 {
        font-size: clamp(2.2rem, 9.3vw, 4rem)
    }

    .soundcloud-player iframe {
        height: 480px
    }

    .bio-page {
        padding-top: 32px
    }

    .bio-logo {
        margin: 24px auto 30px
    }

    .bio-text {
        padding-top: 24px
    }

    .bio-text .bio-intro {
        font-size: 1.2rem;
        margin-bottom: 28px
    }

    .bio-chapters {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px
    }

    .bio-text p {
        font-size: 1rem;
        line-height: 1.8
    }

    .bio-text .bio-outro {
        font-size: 1.0625rem;
        padding-top: 24px
    }

    .club-heading {
        gap: 12px
    }

    .club-heading h2 {
        font-size: clamp(2.7rem, 12vw, 5.25rem)
    }

    .episode {
        font-size: .75rem
    }

    .episode strong {
        font-size: 2.5rem
    }

    .live-video {
        margin: 26px 0 24px
    }

    .club-bottom {
        align-items: flex-start;
        gap: 22px
    }

    .club-bottom .button {
        width: 100%;
        justify-content: space-between
    }

    .club-bottom p {
        font-size: 1.125rem
    }

    footer {
        padding: 12px 68px 12px 5%;
        min-height: 64px
    }

    footer>span {
        font-size: .75rem
    }

    .back-to-top {
        right: 12px;
        bottom: 12px
    }
}

@media(max-width:370px) {
    header nav {
        gap: 14px
    }

    .brand-home {
        width: 100px
    }

    header {
        gap: 12px
    }

    .section-label {
        font-size: .75rem
    }

    .club-heading h2 {
        font-size: 2.65rem
    }

    .episode strong {
        font-size: 2.25rem
    }

    footer .social-icons {
        gap: 0
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .motion-ready [data-reveal]:not(.is-visible) {
        opacity: 1;
        transform: none
    }

    [data-reveal],
    .button,
    .button span,
    header,
    .social-icons a {
        transition: none !important
    }
}

/* Premium v2: measured space, shared rhythm, original identity. */
:root {
    --bg: #000;
    --text: #f5f5f5;
    --muted: #9b9b9b;
    --line: #252525
}

body {
    background: #000
}

header {
    padding-inline: 5%;
    height: 100px;
    border-bottom: 1px solid #191919;
    background: #000;
    gap: 24px
}

header nav {
    gap: 36px
}

.brand-home {
    width: 142px
}

header nav a {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative
}

header nav a:after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s
}

header nav a:hover:after,
header nav a[aria-current]:after {
    transform: scaleX(1)
}

.home-page {
    height: auto;
    min-height: 100svh
}

.home-page header {
    flex-basis: 100px
}

.home-page main {
    display: flex;
    flex: 1
}

.home-page #site-main>[data-view=home] {
    width: 100%;
    height: auto;
    display: flex
}

.home-screen {
    padding: 0;
    width: 100%;
    min-height: calc(100svh - 172px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.official-label {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    letter-spacing: .3em;
    color: #9c9c9c;
    margin: 0
}

.banner-stage {
    width: 100%;
    aspect-ratio: 4.1;
    overflow: hidden
}

.banner-stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center
}

.section {
    max-width: 1360px;
    padding: 76px 6% 96px
}

.section-label {
    font-size: 10px;
    letter-spacing: .13em;
    margin-bottom: 56px
}

.release {
    gap: 9%;
    grid-template-columns: 1.08fr 1fr
}

.release-copy h2 {
    font-size: clamp(54px, 7.6vw, 106px);
    line-height: .98;
    margin: 24px 0 30px
}

.release-copy p {
    color: var(--muted);
    font-size: 16px;
    max-width: 330px
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .16em
}

.button {
    font-size: 11px;
    letter-spacing: .14em;
    min-height: 54px;
    padding: 16px 22px
}

.presave-button {
    text-transform: uppercase;
    margin-top: 18px
}

.spotify-section {
    margin-top: 100px;
    padding-top: 32px
}

.bootlegs-section {
    margin-top: 100px;
    padding-top: 70px
}

.bootlegs-heading {
    margin-bottom: 42px
}

.bootlegs-heading h2 {
    font-size: clamp(44px, 7vw, 90px);
    font-weight: 700;
    letter-spacing: -.055em
}

.bootlegs-heading p {
    font-family: 'DM Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .01em;
    color: var(--muted);
    text-transform: none
}

.accent-divider {
    width: 64px;
    height: 1px
}

.soundcloud-player {
    border-radius: 0;
    border-color: #252525
}

.bio-page {
    padding-top: 60px
}

.bio-portrait {
    width: min(100%, 580px)
}

.bio-logo {
    width: min(65vw, 280px);
    margin: 36px auto 50px
}

.bio-text {
    max-width: 900px;
    padding-top: 42px
}

.bio-text .bio-intro {
    font-size: clamp(21px, 2.4vw, 29px);
    line-height: 1.6;
    margin-bottom: 48px
}

.bio-chapters {
    gap: 60px
}

.bio-chapters h2 {
    font-size: 10px;
    letter-spacing: .16em
}

.bio-text p {
    font-size: 15px;
    line-height: 1.9
}

.bio-text .bio-outro {
    margin-top: 24px;
    padding-top: 32px
}

.club-heading {
    display: block;
    text-align: center;
    margin-bottom: 66px
}

.club-heading h1 {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 700;
    font-size: clamp(60px, 13vw, 170px);
    line-height: .95;
    letter-spacing: -.025em
}

.set-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .15em;
    color: var(--muted)
}

.live-video {
    margin: 18px 0 28px
}

.club-bottom p {
    font-size: 17px
}

.live-set+.live-set {
    margin-top: 80px
}

.press-title {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 700;
    font-size: clamp(58px, 9vw, 120px);
    letter-spacing: -.025em;
    line-height: 1;
    margin: 0 0 60px
}

.press-copy {
    max-width: 690px;
    margin-bottom: 30px
}

.press-copy h2 {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -.025em;
    margin: 18px 0 0
}

.press-visual {
    display: block;
    position: relative;
    aspect-ratio: 1.9;
    overflow: hidden;
    border: 1px solid #202020;
    background: #000
}

.press-visual img {
    position: absolute;
    width: 200%;
    max-width: none;
    height: auto;
    left: -50%;
    top: 50%;
    transform: translateY(-50%)
}

.press-visual>.button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    background: #080808e8;
    color: #fff;
    border-color: #aaa;
    white-space: nowrap
}

.press-visual:hover .button {
    border-color: var(--accent);
    background: #101010
}

.press-article+.press-article {
    margin-top: 80px
}

footer {
    padding: 12px 6%;
    min-height: 72px;
    background: #000;
    border-color: #171717
}

footer>span {
    font-size: 10px;
    letter-spacing: .12em
}

footer .social-icons a {
    width: 36px;
    height: 36px
}

.back-to-top {
    bottom: 82px
}

body:not(.home-page) header {
background: #000;
}

.section-label[data-reveal] {
    transform-origin: left
}

@media(max-width:700px) {

    header,
    .home-page header {
        height: 94px;
        flex-basis: 94px;
        padding: 12px 5%;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center
    }

    .brand-home {
        width: 96px;
        height: 30px;
        margin-right: auto
    }

    header nav {
        gap: clamp(13px, 4vw, 25px)
    }

    header nav a {
        font-size: 10px;
        letter-spacing: .07em;
        min-height: 40px
    }

    .home-screen {
        min-height: calc(100svh - 158px)
    }

    .official-label {
        top: 30px;
        font-size: 9px;
        letter-spacing: .24em
    }

    .banner-stage {
        aspect-ratio: 3.1
    }

    .banner-stage img {
        object-position: 100% center
    }

    .section {
        padding: 40px 6% 60px
    }

    .section-label {
        font-size: 9px;
        gap: 16px;
        margin-bottom: 34px
    }

    .release {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px
    }

    .release-copy h2 {
        font-size: clamp(55px, 14vw, 86px);
        margin: 18px 0 22px
    }

    .release-copy p {
        max-width: 100%;
        font-size: 15px
    }

    .spotify-section {
        margin-top: 58px
    }

    .bootlegs-section {
        margin-top: 64px;
        padding-top: 42px
    }

    .bootlegs-heading h2 {
        font-size: clamp(36px, 10.3vw, 65px)
    }

    .bootlegs-heading p {
        font-size: 13px;
        line-height: 1.6;
        max-width: 270px;
        margin: 22px auto 0
    }

    .bootlegs-heading {
        margin-bottom: 30px
    }

    .bio-logo {
        margin: 28px auto 36px
    }

    .bio-text {
        padding-top: 28px
    }

    .bio-text .bio-intro {
        font-size: 21px;
        margin-bottom: 36px
    }

    .bio-chapters {
        gap: 14px
    }

    .bio-text p {
        font-size: 15px
    }

    .club-heading {
        margin-bottom: 40px
    }

    .club-heading h1 {
        font-size: clamp(58px, 15.2vw, 100px)
    }

    .club-bottom .button {
        font-size: 10px;
        gap: 14px
    }

    .press-title {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 40px
    }

    .press-copy h2 {
        font-size: 23px
    }

    .press-visual {
        aspect-ratio: 1.3
    }

    .press-visual img {
        width: 250%;
        left: -75%
    }

    .press-visual .button {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 10px;
        gap: 20px
    }

    footer {
        padding: 10px 6%;
        min-height: 64px
    }

    .back-to-top {
        bottom: 76px
    }

    .home-page header {
        flex-wrap: nowrap
    }
}

@media(max-width:360px) {

    header,
    .home-page header {
        gap: 8px
    }

    .brand-home {
        width: 75px
    }

    header nav {
        gap: 12px
    }

    header nav a {
        font-size: 9px
    }

    .banner-stage {
        aspect-ratio: 3.1
    }
}

@media(max-width:370px) {
    .release-copy h2 {
        font-size: 48px
    }

    .bootlegs-heading h2 {
        font-size: 33px
    }
}

/* V2 refinement: clear music hierarchy and compact, complete mobile hero. */
.content-title {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: clamp(23px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.025em;
    margin: 0 0 30px
}

.release-name {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .12em;
    margin: 0 0 18px
}

.catalog-heading .content-title {
    margin-bottom: 12px
}

.catalog-heading p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 26px
}

.spotify-section>.section-label {
    display: none
}

.button {
    width: fit-content;
    min-height: 44px;
    padding: 12px 20px;
    gap: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    border: 1px solid #555;
    border-radius: 0;
    background: transparent;
    color: #fff;
    transition: background .25s, border-color .25s, color .25s
}

.button span {
    font-size: 15px
}

.button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #080808
}

.button:hover span {
    transform: translate(1px, -1px)
}

.presave-button {
    width: fit-content;
    display: inline-flex;
    margin-top: 18px;
    min-width: 158px
}

.press-visual>.button {
    min-height: 38px;
    padding: 11px 19px;
    font-size: 10px;
    background: var(--accent);
    border-color: var(--accent);
    color: #080808;
    letter-spacing: .1em
}

.press-visual:hover>.button {
    background: #fff;
    border-color: #fff;
    color: #080808
}

.club-bottom .button {
    width: fit-content
}

.bio-page {
    padding-top: 56px
}

.bootlegs-heading p {
    font-size: 14px
}

.club-heading {
    margin-top: 0
}

.club-bottom {
    align-items: center
}

@media(max-width:700px) {
    .home-page {
        min-height: 0;
        height: auto;
        display: block
    }

    .home-page main {
        display: block;
        flex: none
    }

    .home-page #site-main>[data-view=home] {
        display: block;
        height: auto
    }

    .home-screen {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        height: auto;
        padding: 26px 0 30px;
        overflow: visible
    }

    .official-label {
        position: static;
        margin: 0 0 24px;
        line-height: 1.5;
        font-size: 9px
    }

    .banner-stage {
        width: 100%;
        aspect-ratio: auto;
        overflow: visible
    }

    .banner-stage img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block
    }

    .home-page #site-footer {
        margin-top: 0
    }

    .home-page footer {
        min-height: 60px
    }

    .content-title {
        font-size: 25px;
        margin-bottom: 24px
    }

    .release-name {
        font-size: 12px;
        margin-bottom: 14px
    }

    .release {
        gap: 30px
    }

    .release-copy h2 {
        font-size: clamp(42px, 11vw, 65px)
    }

    .release-copy p {
        margin-bottom: 0
    }

    .button,
    .club-bottom .button {
        width: fit-content;
        min-height: 44px;
        padding: 12px 18px;
        font-size: 10px;
        gap: 18px
    }

    .press-visual>.button {
        min-height: 36px;
        padding: 10px 17px;
        font-size: 9px
    }

    .bio-page {
        padding-top: 32px
    }

    .club-bottom {
        align-items: flex-start
    }

    .bootlegs-heading h2 {
        font-size: clamp(33px, 9.5vw, 58px)
    }
}

/* Dedicated mobile artwork; desktop retains its original banner. */
.banner-stage picture {
    display: block;
    width: 100%;
    height: 100%
}

@media(max-width:700px) {
    .home-screen {
        padding: 18px 0 20px
    }

    .official-label {
        margin-bottom: 14px
    }

    .banner-stage picture {
        height: auto
    }

    .banner-stage img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain
    }
}

/* Consistent section identifiers; bounded, uncropped mobile hero. */
.page-kicker {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .13em;
    color: var(--muted);
    text-align: left;
    margin: 0 0 40px
}

.bio-page {
    padding-top: 76px
}

.bio-title {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 700;
    font-size: clamp(58px, 9vw, 120px);
    letter-spacing: -.025em;
    line-height: 1;
    text-align: left;
    margin: 0 0 60px
}

@media(max-width:700px) {
    .page-kicker {
        font-size: 10px;
        margin-bottom: 30px
    }

    .bio-page {
        padding-top: 40px
    }

    .bio-title {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 40px
    }

    .home-screen .banner-stage {
        width: 100%;
        margin-inline: 0
    }

    .home-screen .banner-stage img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain
    }

    .home-screen {
        padding-bottom: 16px
    }
}

/* Desktop-only home flow; mobile artwork and sizing remain unchanged. */
@media(min-width:701px) {
    .home-page {
        height: auto;
        min-height: 0;
        display: block
    }

    .home-page main {
        display: block
    }

    .home-page #site-main>[data-view=home] {
        height: auto;
        display: block
    }

    .home-screen {
        min-height: 0;
        height: auto;
        display: block;
        padding: 28px 0 24px
    }

    .official-label {
        position: static;
        margin: 0 0 24px
    }

    .banner-stage {
        width: 100%;
        aspect-ratio: auto;
        overflow: visible
    }

    .banner-stage picture {
        height: auto
    }

    .banner-stage img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center
    }
}

.contact-title {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    font-weight: 700;
    font-size: clamp(58px, 9vw, 120px);
    letter-spacing: -.025em;
    line-height: 1;
    text-align: left;
    margin: 0 0 40px
}

.contact-subtitle {
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: .13em;
    color: var(--muted);
    margin: 0 0 32px
}

.contact-details a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(21px, 3vw, 38px);
    line-height: 1.4;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 8px;
    transition: color .25s
}

.contact-details a:hover {
    color: var(--accent)
}

@media(max-width:700px) {
    .contact-title {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 32px
    }
}

/* Immersive desktop hero only. Mobile rules and picture remain untouched. */
@media(min-width:701px) {
    .home-screen {
        padding: 0;
        position: relative
    }

    .home-screen .official-label {
        position: absolute;
        top: 24px;
        left: 0;
        right: 0;
        z-index: 1;
        margin: 0;
        text-align: center
    }

    .home-screen .banner-stage {
        height: 72vh;
        min-height: 0;
        width: 100%;
        aspect-ratio: auto;
        background-image: url('/assets/hero-desktop-youtube.jpeg');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        overflow: hidden
    }

    .home-screen .banner-stage picture {
        visibility: hidden;
        height: 100%
    }

    .home-screen .banner-stage img {
        height: 100%;
        width: 100%;
        object-fit: cover
    }
}