/* =========================================================
   ONCE WE KNEW — OFFICIAL WEBSITE
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --white: #f8f7f2;
    --cream: #f0ede4;

    --dark: #273329;

    --line-light:
        rgba(248, 247, 242, 0.22);

    --line-dark:
        rgba(39, 51, 41, 0.22);

    --sans:
        "DM Sans",
        Arial,
        sans-serif;

    --display:
        "Montserrat",
        Arial,
        sans-serif;

    --container: 1200px;
    --container-wide: 1450px;
    --container-text: 760px;

    --fast: 180ms ease;
    --medium: 350ms ease;
    --slow: 700ms ease;

}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    min-height: 100%;

    scroll-behavior: smooth;

    overflow-x: hidden;

    background: #000;

}


body {

    position: relative;

    min-height: 100vh;

    overflow-x: hidden;

    background: transparent;

    color:
        var(--white);

    font-family:
        var(--sans);

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;

}


body.menu-open,
body.lightbox-open {

    overflow: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    color: inherit;

    font: inherit;

}


button,
a,
summary {

    -webkit-tap-highlight-color:
        transparent;

}


/* =========================================================
   BACKGROUND VIDEO
   ========================================================= */

.background-video {

    position: fixed;

    inset: 0;

    width: 100vw;

    height: 100vh;

    object-fit: cover;

    object-position:
        center center;

    z-index: 0;

    pointer-events: none;

}


/* =========================================================
   BACKGROUND OVERLAY
   ========================================================= */

/*
    Very subtle.
    It does NOT replace the video.
*/

.background-overlay {

    position: fixed;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.02) 45%,
            rgba(0, 0, 0, 0.18) 100%
        );

}


/* =========================================================
   CONTENT STACKING
   ========================================================= */

.site-header,
.main-navigation,
main,
.site-footer {

    position: relative;

    z-index: 2;

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {

    font-family:
        var(--display);

    font-weight: 500;

}


h2 {

    font-size:
        clamp(
            1.4rem,
            3vw,
            2.3rem
        );

    line-height: 0.96;

    letter-spacing:
        -0.035em;

}


h3 {

    font-size:
        clamp(
            1.25rem,
            2.4vw,
            2rem
        );

    line-height: 1.2;

}


p {

    line-height: 1.75;

}


.eyebrow {

    margin-bottom: 16px;

    font-family:
        var(--display);

    font-size: 0.64rem;

    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;

    opacity: 0.62;

}


/* =========================================================
   CONTAINERS
   ========================================================= */

.container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;

}


.container--wide {

    width:
        min(
            calc(100% - 48px),
            var(--container-wide)
        );

}


.container--text {

    width:
        min(
            calc(100% - 48px),
            var(--container-text)
        );

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: fixed;
    top: 0;
    left: 0;

    z-index: 100;

    width: 100%;
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 35px;

    padding:
        10px
        clamp(22px, 4vw, 55px);

    transition:
        min-height var(--medium),
        padding var(--medium),
        background var(--medium),
        backdrop-filter var(--medium),
        -webkit-backdrop-filter var(--medium);

}


.header-logo {

    order: -1;

    width:
        clamp(
            200px,
            60vw,
            200px
        );

    flex: 0 0 auto;

    transition:
        opacity var(--fast),
        width var(--medium);

}


.header-logo:hover {

    opacity: 0.65;

}


.header-logo img {

    width: 100%;
    height: auto;

}


.desktop-navigation {

    margin-left: auto;

}


.site-header.scrolled {

    min-height: 30px;

    padding:
        6px
        clamp(22px, 2vw, 44px);

    background:
        rgba(0, 0, 0, 0.08);

    backdrop-filter:
        blur(1px);

    -webkit-backdrop-filter:
        blur(1px);

}


.site-header.scrolled .header-logo {

    width:
        clamp(
            80px,
            15vw,
            140px
        );

}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-navigation {

    display: flex;

    align-items: center;

    gap:
        clamp(
            22px,
            3vw,
            45px
        );

}


.desktop-navigation a {

    position: relative;

    font-family:
        var(--display);

    font-size: 0.63rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    transition:
        opacity var(--fast);

}


.desktop-navigation a:hover {

    opacity: 0.55;

}


.desktop-navigation
a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -9px;

    height: 1px;

    background:
        currentColor;

}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.navigation-group {
    position: relative;
    padding: 18px 0;
}

.navigation-submenu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    min-width: 150px;
    display: grid;
    gap: 14px;
    padding: 18px 20px;
    transform: translate(-50%, 8px);
    background: transparent;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--fast), transform var(--fast), visibility var(--fast);
}

.navigation-group:hover .navigation-submenu,
.navigation-group:focus-within .navigation-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.navigation-submenu a {
    white-space: nowrap;
    font-size: 0.58rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.navigation-group.active > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 1px;
    background: currentColor;
}


.menu-toggle {

    width: 44px;

    height: 44px;

    display: none;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 5px;

    border: 0;

    background:
        transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 25px;

    height: 1px;

    background:
        var(--white);

}


.menu-toggle
span:nth-child(2) {

    width: 18px;

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.main-navigation {

    position: fixed;

    inset: 0;

    z-index: 150;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap:
        clamp(
            24px,
            5vh,
            42px
        );

    background:
        rgba(0, 0, 0, 0.88);

    backdrop-filter:
        blur(0px);

    -webkit-backdrop-filter:
        blur(0px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity var(--medium),
        visibility var(--medium);

}


.main-navigation.open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.main-navigation a {

    font-family:
        var(--display);

    font-size:
        clamp(
            1rem,
            4vw,
            1.35rem
        );

    font-weight: 500;

    letter-spacing:
        0.18em;

}


.mobile-media-links {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.main-navigation .mobile-media-links a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    opacity: 0.76;
}


.menu-close {

    position: absolute;

    top: 22px;

    right: 24px;

    width: 44px;

    height: 44px;

    border: 0;

    background:
        transparent;

    font-size: 2rem;

    cursor: pointer;

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 100svh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        110px 20px 90px;

    text-align: center;

    background:
        transparent;

}


/* =========================================================
   HERO RELEASE
   ========================================================= */
.hero-release {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;
    transform: translateY(30px);

    animation:
        hero-in
        1s ease both;
}


.hero-release-logo {
    width:
        clamp(
            145px,
            19vw,
            240px
        );

    height: auto;

    object-fit: contain;

    margin-bottom: 0px;

    filter:
        drop-shadow(
            0 2px 2px
            rgba(0, 0, 0, 0.22)
        );
}


.hero-release-label {
    margin: 0 0 4px;

    font-family:
        var(--display);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    color: var(--white);
}


.hero-listen-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 0;

    padding: 13px 28px;

    border:
        1px solid
        rgba(248, 247, 242, 0.75);

    background:
        rgba(0, 0, 0, 0.12);

    color: var(--white);

    font-family:
        var(--display);

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
        background var(--fast),
        color var(--fast),
        transform var(--fast);
}


.hero-listen-button:hover {
    background: var(--white);
    color: var(--dark);

    transform: translateY(-2px);
}

/* =========================================================
   HERO BUTTON
   ========================================================= */

.hero-listen-button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 8px;

    padding:
        13px 28px;

    border:
        1px solid
        rgba(
            248,
            247,
            242,
            0.75
        );

    background:
        rgba(0, 0, 0, 0.12);

    font-family:
        var(--display);

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    backdrop-filter:
        blur(5px);

    -webkit-backdrop-filter:
        blur(5px);

    transition:
        background var(--fast),
        color var(--fast),
        transform var(--fast);

}


.hero-listen-button:hover {

    background:
        var(--white);

    color:
        var(--dark);

    transform:
        translateY(-2px);

}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom:
        clamp(
            20px,
            4vh,
            38px
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    transform:
        translateX(-50%);

    font-family:
        var(--display);

    font-size: 0.53rem;

    font-weight: 600;

    letter-spacing: 0.26em;

    opacity: 0.72;

}


.scroll-arrow {

    font-size: 1rem;

    animation:
        scroll-arrow
        1.8s
        ease-in-out
        infinite;

}


@keyframes scroll-arrow {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(5px);

    }

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        clamp(
            60px,
            7vw,
            100px
        )
        0;

    background:
        transparent;

}


/* =========================================================
   LIGHT CONTENT PANELS
   ========================================================= */

.music-section
.container,

.stories-section
.container,

.gallery-section
.container,

.press-section
.container,

.lyrics-section
.container,

.contact-section
.container {

    padding:
        clamp(
            32px,
            5vw,
            70px
        );

    background:
        rgba(
            240,
            237,
            228,
            0.90
        );

    color:
        var(--dark);

    backdrop-filter:
        blur(2px);

    -webkit-backdrop-filter:
        blur(2px);

}


/* =========================================================
   DARK TRANSPARENT PANELS
   ========================================================= */

.band-section
.container,

.video-section
.container,

.live-section
.container {

    padding:
        clamp(
            30px,
            5vw,
            70px
        );

    background:
        rgba(
            0,
            0,
            0,
            0.30
        );

    backdrop-filter:
        blur(2px);

    -webkit-backdrop-filter:
        blur(2px);

}


/* =========================================================
   SECTION HEADERS
   ========================================================= */

.section-header {

    margin-bottom:
        clamp(
            30px,
            4vw,
            55px
        );

}


/* =========================================================
   MUSIC
   ========================================================= */

.music-title-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 24px 32px;

}


.press-section .section-header {

    max-width: 760px;

    margin-bottom: 16px;

    padding-top: 8px;

}


.music-section h2 {

    font-size:
        clamp(
            1.75rem,
            4.5vw,
            3.75rem
        );

    line-height: 0.9;

}

.release-card {

    display: grid;

    grid-template-columns:
        minmax(220px, 320px)
        minmax(300px, 540px);

    align-items: start;
    justify-content: center;

    gap:
        clamp(
            35px,
            6vw,
            80px
        );

}


.release-artwork {

    width: 100%;
    max-width: 320px;

}


.release-artwork img {

    width: 100%;

    aspect-ratio:
        1 / 1;

    object-fit: cover;

    transition:
        transform var(--slow);

}


.release-card:hover
.release-artwork img {

    transform:
        scale(1.02);

}


.release-meta {

    margin-bottom: 18px;

    font-family:
        var(--display);

    font-size: 0.65rem;

    letter-spacing:
        0.19em;

    opacity: 0.55;

}


.release-credits {

    margin-top: 24px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(39, 51, 41, 0.24);

    font-family:
        var(--display);

    font-size: 0.62rem;

    line-height: 1.55;

    letter-spacing: 0.035em;

}


.release-performers {

    display: grid;

    gap: 7px;

}


.release-performers div {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 14px;

}


.release-performers dt {

    font-weight: 600;

}


.release-performers dd {

    margin: 0;

    text-align: right;

    opacity: 0.68;

}


.release-production {

    margin-top: 20px;

    padding-top: 16px;

    border-top:
        1px solid
        rgba(39, 51, 41, 0.16);

    opacity: 0.78;

}


.release-production p + p {

    margin-top: 5px;

}


.release-rights {

    margin-top: 16px;

    font-size: 0.56rem;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    opacity: 0.52;

}

.release-info {

    padding-top: 4px;

}


.release-logo {

    width:
        clamp(
            130px,
            18vw,
            230px
        );

    margin-bottom: 28px;

}


.release-description {

    max-width: 540px;

    opacity: 0.8;

    line-height: 1.75;

}


.release-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin: 0 0 4px;
}

.release-app-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border:
        1px solid
        rgba(39, 51, 41, 0.35);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.24);

    font-family:
        var(--display);

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    gap: 10px;

    transition:
        transform var(--fast),
        background var(--fast),
        border-color var(--fast);
}

.release-app-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

.release-app-button:hover {
    transform: translateY(-2px);

    background:
        rgba(255, 255, 255, 0.55);

    border-color:
        rgba(39, 51, 41, 0.55);

    font-family:
        var(--display);

    font-size: 0.68rem;

    font-weight: 600;

}


.release-secondary-links {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

}


.release-secondary-links a {

    font-family:
        var(--display);

    font-size: 0.66rem;

    font-weight: 600;

}


/* =========================================================
   BAND
   ========================================================= */

.band-feature-image {

    margin-bottom:
        clamp(
            22px,
            3vw,
            40px
        );

    overflow: hidden;

}


.band-feature-image img {

    width: 100%;

    max-height: 78vh;

    aspect-ratio:
        16 / 9;

    object-fit: cover;

}


.band-title {

    margin-bottom: 28px;

}


.band-members {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 18px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.band-members li {

    padding-top: 14px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.28);

}


.band-members strong,
.band-members span {

    display: block;

}


.band-members strong {

    font-family:
        var(--display);

    font-size: 0.68rem;

    line-height: 1.4;

}


.band-members span {

    margin-top: 5px;

    font-size: 0.65rem;

    opacity: 0.68;

}


.band-layout {

    margin-top:
        clamp(
            30px,
            5vw,
            65px
        );

    display: grid;

    grid-template-columns:
        minmax(0, 700px);

    justify-content: start;

    gap:
        clamp(
            45px,
            9vw,
            125px
        );

}


.band-bio {

    max-width: 760px;

    text-align: left;

    line-height: 1.75;

}


.band-bio p + p {

    margin-top: 24px;

}


.band-secondary-image {

    width:
        min(
            70%,
            700px
        );

    margin:
        100px 0 0 auto;

}


.band-secondary-image img {

    width: 100%;

    aspect-ratio:
        4 / 5;

    object-fit: cover;

}


/* =========================================================
   STORIES
   ========================================================= */

.story-feature {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;

    gap:
        clamp(
            40px,
            8vw,
            110px
        );

}


.story-image img {

    width: 100%;

    aspect-ratio:
        4 / 5;

    object-fit: cover;

}


.story-meta {

    margin-bottom: 14px;

    font-family:
        var(--display);

    font-size: 0.65rem;

    letter-spacing:
        0.17em;

    opacity: 0.54;

}


.story-content h3 {

    margin-bottom: 24px;

}


.story-details {

    margin-top: 35px;

}


.story-details summary {

    cursor: pointer;

    list-style: none;

    font-family:
        var(--display);

    font-size: 0.67rem;

    font-weight: 600;

    letter-spacing:
        0.16em;

}


.story-details
summary::-webkit-details-marker {

    display: none;

}


.story-full {

    margin-top: 30px;

}


.story-full p + p {

    margin-top: 20px;

}


/* =========================================================
   VIDEO
   ========================================================= */

.featured-video {

    width: min(100%, 860px);

    display: block;

    padding: 20px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.28);

}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0d0b;
}

.video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


.video-image {

    position: relative;

    overflow: hidden;

}


.video-image img {

    width: 100%;

    aspect-ratio:
        1 / 1;

    object-fit: cover;

}


.video-play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    transform:
        translate(
            -50%,
            -50%
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    border-radius: 50%;

    background:
        rgba(
            0,
            0,
            0,
            0.35
        );

}


.video-info {

    margin-top: 20px;

}


.video-info p {

    margin-top: 7px;

    opacity: 0.65;

}


.video-link-label {

    display: inline-block;

    font-family:
        var(--display);

    font-size: 0.64rem;

    font-weight: 600;

}


.video-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px 24px;

    margin-top: 18px;

}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-category
+
.gallery-category {

    margin-top:
        clamp(
            80px,
            10vw,
            130px
        );

}


.gallery-category-title {

    margin-bottom: 30px;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(
            12,
            1fr
        );

    gap:
        clamp(
            12px,
            2vw,
            24px
        );

}


.gallery-item {

    grid-column:
        span 4;

    min-height: 320px;

    overflow: hidden;

    border: 0;

    background:
        transparent;

    cursor: zoom-in;

}


.gallery-item--large,
.gallery-item--wide {

    grid-column:
        span 8;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    min-height: 320px;

    object-fit: cover;

    transition:
        transform var(--slow);

}


.gallery-item:hover img {

    transform:
        scale(1.025);

}


/* =========================================================
   PRESS
   ========================================================= */

.press-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 760px);

    gap: 32px;

}


/* Tighter transition from Music into Band */

.section.music-section {

    padding-bottom:
        clamp(
            45px,
            5vw,
            75px
        );

}


.section.band-section {

    padding-top:
        clamp(
            45px,
            5vw,
            75px
        );

}


.press-label {

    margin-bottom: 16px;

    font-family:
        var(--display);

    font-size: 0.64rem;

    font-weight: 600;

    letter-spacing: 0.13em;

}


.press-quote h3 {

    font-size:
        clamp(
            1.45rem,
            3vw,
            2.25rem
        );

    line-height: 1.25;

}


.press-description {

    max-width: 650px;

    margin-top: 20px;

    line-height: 1.7;

    opacity: 0.82;

}


.press-quote {

    padding:
        35px 0;

    border-top:
        1px solid
        var(--line-dark);

}


.press-quote blockquote {

    font-size:
        clamp(
            1rem,
            1.8vw,
            1.4rem
        );

    line-height: 1.65;

}


.press-source {

    margin-top: 28px;

    font-family:
        var(--display);

    font-size: 0.64rem;

    font-weight: 600;

}


/* =========================================================
   LYRICS
   ========================================================= */

.lyrics-item {

    border-top:
        1px solid
        var(--line-dark);

    border-bottom:
        1px solid
        var(--line-dark);

}


.lyrics-item summary {

    min-height: 85px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    cursor: pointer;

    list-style: none;

    font-family:
        var(--display);

}


.lyrics-item
summary::-webkit-details-marker {

    display: none;

}


.lyrics-toggle {

    font-size: 1.35rem;

}


.lyrics-text {

    max-width: 620px;

    padding:
        10px 0 60px;

    white-space:
        pre-line;

}


/* =========================================================
   LIVE
   ========================================================= */

.event {

    display: grid;

    grid-template-columns:
        150px 1fr auto;

    align-items: center;

    gap: 30px;

    padding:
        30px 0;

    border-top:
        1px solid
        var(--line-light);

}


.event:last-child {

    border-bottom:
        1px solid
        var(--line-light);

}


.event-date {

    font-family:
        var(--display);

    font-size: 0.72rem;

    font-weight: 600;

}


.event-details p {

    margin-top: 5px;

    font-size: 0.8rem;

    opacity: 0.64;

}


.button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        13px 26px;

    border:
        1px solid transparent;

    font-family:
        var(--display);

    font-size: 0.66rem;

    font-weight: 600;

}


.button--outline {

    border-color:
        rgba(
            248,
            247,
            242,
            0.70
        );

}


.button--outline:hover {

    background:
        var(--white);

    color:
        var(--dark);

}


.past-shows {

    margin-top: 90px;

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 40px;

}


.contact-item {

    padding-top: 25px;

    border-top:
        1px solid
        var(--line-dark);

}


.contact-label {

    display: block;

    margin-bottom: 13px;

    font-family:
        var(--display);

    font-size: 0.61rem;

    font-weight: 600;

}


.social-links {

    display: flex;

    flex-wrap: wrap;

    gap:
        16px 28px;

    margin-top: 75px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    z-index: 2;

    padding:
        65px 24px;

    background:
        rgba(
            0,
            0,
            0,
            0.48
        );

    backdrop-filter:
        blur(10px);

}


.footer-inner {

    width:
        min(
            calc(100% - 20px),
            var(--container)
        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 40px;

}


.footer-navigation {

    display: flex;

    flex-wrap: wrap;

    gap: 22px;

}


.footer-logo {

    width: 130px;

}


.footer-logo img {

    width: 100%;

}


.copyright {

    justify-self: end;

    font-size: 0.6rem;

    opacity: 0.6;

}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 500;

    display: grid;

    place-items: center;

    padding: 70px;

    background:
        rgba(
            0,
            0,
            0,
            0.96
        );

}


.lightbox[hidden] {

    display: none;

}


.lightbox-content {

    width:
        min(
            88vw,
            1300px
        );

    height:
        min(
            82vh,
            900px
        );

}


.lightbox-content img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.lightbox-close,
.lightbox-previous,
.lightbox-next {

    position: absolute;

    border: 0;

    background:
        transparent;

    color:
        var(--white);

    cursor: pointer;

}


.lightbox-close {

    top: 24px;

    right: 28px;

    font-size: 2rem;

}


.lightbox-previous {

    left: 25px;

    top: 50%;

    font-size: 1.7rem;

}


.lightbox-next {

    right: 25px;

    top: 50%;

    font-size: 1.7rem;

}


/* =========================================================
   SECTION REVEAL
   ========================================================= */

.section > .container {

    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity 800ms ease,
        transform 800ms ease;

}


.section.visible
> .container {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible {

    outline:
        2px solid currentColor;

    outline-offset: 5px;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {


    .desktop-navigation {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .release-card,
    .band-layout,
    .story-feature {

        grid-template-columns:
            1fr;

    }


    .press-grid,
    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .gallery-item {

        grid-column:
            span 6;

    }


    .gallery-item--large,
    .gallery-item--wide {

        grid-column:
            span 12;

    }


    .event {

        grid-template-columns:
            110px 1fr auto;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {


    .background-video {

        display: block;

    }


    body {

        background: #18231c;

    }


    body * {

        backdrop-filter: none !important;

        -webkit-backdrop-filter: none !important;

    }


    .container,
    .container--wide,
    .container--text {

        width:
            calc(
                100% - 30px
            );

    }


    .section {

        padding:
            48px 0;

    }


    .site-header {

        min-height: 68px;

        padding:
            12px 16px;

    }


    .header-logo {

        width: 110px;

    }


    .hero {

        padding:
            95px 18px 90px;

    }


    .hero-release-logo {

        width:
            clamp(
                120px,
                42vw,
                175px
            );

    }


    .music-section
    .container,

    .band-section
    .container,

    .stories-section
    .container,

    .video-section
    .container,

    .gallery-section
    .container,

    .press-section
    .container,

    .lyrics-section
    .container,

    .live-section
    .container,

    .contact-section
    .container {

        padding:
            28px 22px;

    }


    h2 {

        font-size:
            clamp(
                2.1rem,
                13vw,
                3.4rem
            );

    }


    .band-feature-image img {

        aspect-ratio:
            3 / 2;

    }


    .band-secondary-image {

        width: 86%;

        margin-top: 65px;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .gallery-item,
    .gallery-item--large,
    .gallery-item--wide {

        grid-column:
            span 1;

        min-height: 220px;

    }


    .gallery-item:first-child {

        grid-column:
            span 2;

    }


    .gallery-item img {

        min-height: 220px;

    }


    .event {

        grid-template-columns:
            1fr;

        gap: 13px;

    }


    .event .button {

        width: 100%;

    }


    .footer-inner {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (max-width: 900px) {

    .band-members {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


@media (max-width: 600px) {

    .band-members {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

/* Compact horizontal photo gallery */

section[id],
div[id="media"] {
    scroll-margin-top: 82px;
}

@media (max-width: 900px) {
    .main-navigation {
        justify-content: flex-start;
        gap: clamp(16px, 2.5vh, 26px);
        padding: 86px 24px 36px;
        overflow-y: auto;
    }
}

.gallery-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.gallery-controls {
    display: flex;
    gap: 8px;
}

.gallery-scroll {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(39, 51, 41, 0.3);
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
}

.gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(240px, 32vw, 390px);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
}

.gallery-item,
.gallery-item--large,
.gallery-item--wide,
.gallery-item:first-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
    scroll-snap-align: start;
}

.gallery-item img {
    min-height: 0;
    aspect-ratio: 3 / 2;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-auto-columns: min(82vw, 330px);
    }

    .featured-video {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 18px;
    }

    .video-embed {
        min-height: 200px;
    }

    .hero {
        background: transparent;
    }

    .hero-release-logo {
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.22));
    }

    .music-title-row {
        align-items: flex-start;
    }

    .release-links {
        width: 100%;
    }

    .release-card {
        gap: 34px;
    }

    .band-title {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
    }

    .video-section .section-header {
        margin-bottom: 16px;
    }

    .social-links {
        margin-top: 46px;
    }

    .footer-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 14px 24px;
    }
}

.shows-coming-soon,
.contact-primary {
    max-width: 620px;
    padding: 28px 0;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.82;
}

.contact-primary a {
    display: inline-block;
    margin-top: 10px;
    overflow-wrap: anywhere;
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
    .hero {
        background:
            radial-gradient(circle at center, rgba(70, 89, 72, 0.58), rgba(16, 31, 23, 0.24) 62%);
    }

    .hero-release-logo {
        filter: invert(1) brightness(1.9) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.18));
    }
}


@media (
    prefers-reduced-motion: reduce
) {


    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }


    .section > .container {

        opacity: 1;

        transform: none;

    }


    /*
        IMPORTANT:
        background-video is NOT hidden.
    */

}


/* =========================================================
   CONTACT + FOOTER REFINEMENT
   ========================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: end;
}

.contact-intro h2 {
    margin-top: 10px;
}

.contact-copy {
    max-width: 390px;
    margin-top: 20px;
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.7;
    opacity: 0.76;
}

.contact-details {
    border-top: 1px solid var(--line-dark);
}

.contact-email {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 27px 0;
    border-bottom: 1px solid var(--line-dark);
}

.contact-email .contact-label,
.contact-platforms .contact-label {
    margin: 0;
    letter-spacing: 0.16em;
    opacity: 0.66;
}

.contact-email strong {
    min-width: 0;
    font-size: clamp(1rem, 1.65vw, 1.35rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.contact-arrow {
    font-size: 1.25rem;
    transition: transform var(--fast);
}

.contact-email:hover .contact-arrow,
.contact-email:focus-visible .contact-arrow {
    transform: translate(3px, -3px);
}

.contact-socials {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding-top: 27px;
}

.contact-socials > .contact-label {
    margin: 0;
    letter-spacing: 0.16em;
    opacity: 0.66;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: background var(--fast), color var(--fast);
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
    background: var(--dark);
    color: var(--cream);
}

.contact-platforms {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding-top: 27px;
}

.contact-platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
}

.contact-platform-links a {
    position: relative;
    font-family: var(--display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-platform-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--fast);
}

.contact-platform-links a:hover::after,
.contact-platform-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-footer {
    padding: 42px 24px 34px;
    background: transparent;
    border-top: 1px solid rgba(248, 247, 242, 0.14);
    backdrop-filter: none;
}

.gallery-entry {
    display: grid;
    min-width: 0;
    gap: 11px;
    align-content: start;
    scroll-snap-align: start;
}

.gallery-entry .gallery-item {
    width: 100%;
    aspect-ratio: 3 / 2;
    scroll-snap-align: none;
}

.gallery-credit {
    display: flex;
    gap: 9px;
    align-items: baseline;
    min-height: 2.8em;
    padding-inline: 2px;
    font-size: 0.66rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
    opacity: 0.74;
}

.gallery-credit span {
    flex: 0 0 auto;
    font-family: var(--display);
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    opacity: 0.72;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-navigation {
    justify-content: center;
    gap: 14px clamp(22px, 3vw, 40px);
}

.footer-navigation a {
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.76;
    transition: opacity var(--fast);
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    opacity: 1;
}

.copyright {
    justify-self: auto;
    white-space: nowrap;
    padding-top: 20px;
    border-top: 1px solid rgba(248, 247, 242, 0.12);
    width: min(100%, 430px);
    font-size: 0.57rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.52;
}

@media (max-width: 760px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-email {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 18px;
    }

    .contact-email .contact-label {
        grid-column: 1 / -1;
    }

    .contact-socials {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-social-links {
        grid-template-columns: 1fr 1fr;
    }

    .contact-platforms {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-inner {
        gap: 22px;
    }

    .footer-navigation {
        display: flex;
        width: auto;
        justify-content: center;
    }

    .site-footer {
        padding-block: 34px 28px;
    }
}
