/* ==========================================================================
   Rolla Tunes – Global Styles
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap");


/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
    --color-background: #111111;
    --color-background-soft: #181818;
    --color-surface: #202020;
    --color-surface-light: #292929;
    --color-text: #f2f0ec;
    --color-text-muted: #aaa7a1;
    --color-text-dark: #111111;
    --color-accent: #D80936;
    --color-accent-light: #dfa15e;
    --color-accent-dark: #95501f;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-strong: rgba(255, 255, 255, 0.24);
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;
    --container-width: 1280px;
    --section-spacing: clamp(5rem, 10vw, 9rem);
    --header-height: 5.5rem;
    --ambient-portrait-width: clamp(17rem, 30vw, 34rem);
    --ambient-portrait-opacity: 0.48;
    --portrait-duration: 850ms;
    --portrait-transition: var(--portrait-duration) cubic-bezier(.22, .61, .36, 1);
    --transition-fast: 180ms ease;
    --transition-normal: 320ms ease;
    --shadow-soft: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
    --portrait-dot-stop: 21%;
    --portrait-dot-size: clamp(1.5rem, 2.5vw, 2.4rem);
    --portrait-dot-safe-stop: calc(50% - 13rem);
}


/* ==========================================================================
   Base
   ========================================================================== */

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: var(--header-height);
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-background);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

    body.menu-preparing,
    body.menu-opening,
    body.menu-open,
    body.menu-closing {
        overflow: hidden;
    }

main {
    position: relative;
    z-index: 3;
    min-height: 70vh;
}

::selection {
    color: var(--color-text-dark);
    background: var(--color-accent-light);
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

    a:hover {
        color: var(--color-accent-light);
    }

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3.6rem, 9vw, 8rem);
}

h2 {
    font-size: clamp(2.7rem, 6vw, 5rem);
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}


/* ==========================================================================
   Layout
   ========================================================================== */

.page-shell {
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.site-container,
.container {
    width: min( calc(100% - 3rem), var(--container-width) );
    margin-inline: auto;
}

.site-section {
    position: relative;
    z-index: 3;
    padding-block: var(--section-spacing);
    background: transparent;
}

.site-section--soft {
    background: var(--color-background-soft);
}

.site-section--surface {
    background: var(--color-surface);
}

.section-header {
    max-width: 50rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: .95rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section-intro {
    max-width: 44rem;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.section-title-link {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

    .section-title-link:hover,
    .section-title-link:focus-visible {
        color: var(--color-accent-light);
    }

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.section-heading-row__link {
    color: var(--color-text-muted);
    font-size: .8rem;
    letter-spacing: .06em;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

    .section-heading-row__link:hover,
    .section-heading-row__link:focus-visible {
        color: var(--color-accent-light);
        transform: translateX(.2rem);
    }

.lightgray-text {
    color: rgba(255, 255, 255, 0.70);
}

/* ==========================================================================
   Shared lightbox close button
   ========================================================================== */

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: rgba(0, 0, 0, .65);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

    .lightbox-close:hover,
    .lightbox-close:focus-visible {
        border-color: var(--color-accent);
        background: rgba(0, 0, 0, .85);
        color: #fff;
    }

    .lightbox-close:active {
        border-color: var(--color-accent-dark);
        background: #000;
        transform: scale(.95);
    }

    .lightbox-close:focus-visible {
        outline: 1px solid var(--color-accent);
        outline-offset: 3px;
    }

.press-lightbox__content,
.gallery-lightbox__content,
.event-flyer-overlay__content {
    position: relative;
}

/* ==========================================================================
   Shared lightbox navigation
   ========================================================================== */

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: rgba(0, 0, 0, .65);
    color: var(--color-text);
    font-family: inherit;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.lightbox-nav--previous {
    left: 1rem;
}

.lightbox-nav--next {
    right: 1rem;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, .85);
    color: #fff;
}

.lightbox-nav:active {
    border-color: var(--color-accent-dark);
    background: #000;
    transform: translateY(-50%) scale(.95);
}

.lightbox-nav:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Page header
   ========================================================================== */

.page-header {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .page-header {
        margin-top: 1.5rem;
        margin-bottom: 1.75rem;
    }
}

/* ==========================================================================
   Music Page
   ========================================================================== */

.music-page {
    padding-top: 2.5rem;
}

    .music-page .section-header {
        margin-bottom: 2rem;
    }

    .music-page .section-title {
        margin-bottom: 0;
    }

    .music-page .section-subtitle {
        margin-bottom: 1.5rem;
    }

@media (max-width: 767.98px) {
    .music-page {
        padding-top: 1.5rem;
    }
}

.music-release-section + .music-release-section {
    margin-top: 4rem;
}

/* ==========================================================================
   Card cover
   ========================================================================== */

.card-cover {
    position: relative;
}


/* ==========================================================================
   Radio airplay badge
   ========================================================================== */

.card-airplay {
    position: absolute;
    z-index: 5;
    top: 1.1rem;
    right: 1.1rem;
    padding: .5rem .75rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 5, 5, .72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--color-accent-light);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
}

.card-airplay__dot {
    width: .55rem;
    height: .55rem;
    flex: 0 0 auto;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(216, 9, 54, .65), 0 0 22px rgba(216, 9, 54, .3);
    animation: airplay-pulse 2.4s ease-in-out infinite;
}

@keyframes airplay-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(216, 9, 54, .55), 0 0 18px rgba(216, 9, 54, .2);
    }

    50% {
        box-shadow: 0 0 12px rgba(216, 9, 54, .9), 0 0 28px rgba(216, 9, 54, .45);
    }
}

.release-track__content h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
}

.release-track__airplay {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.release-track__airplay-dot {
    width: .4rem;
    height: .4rem;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(216, 9, 54, .65), 0 0 16px rgba(216, 9, 54, .25);
}

/* ==========================================================================
   Fixed header
   ========================================================================== */

.site-header {
    position: fixed;
    z-index: 4000;
    top: 0;
    right: 0;
    left: 0;
}

.navbar {
    min-height: var(--header-height);
    padding-block: 1rem;
    background: rgba(11, 11, 11, 0.9) !important;
    border-bottom: 1px solid var(--color-border) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

    .navbar > .container,
    .navbar > .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min( calc(100% - 3rem), var(--container-width) );
    }

body.has-scrolled .navbar {
    background: rgba(8, 8, 8, 0.97) !important;
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.18);
}

body.menu-preparing .navbar,
body.menu-opening .navbar,
body.menu-open .navbar,
body.menu-closing .navbar {
    background: #0b0b0b !important;
    border-bottom-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


/* ==========================================================================
   Brand
   ========================================================================== */

a.navbar-brand {
    display: inline-flex;
    padding: 0;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-text) !important;
    white-space: nowrap;
}

a.navbar-brand {
    display: inline-flex;
    padding: 0;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text) !important;
    white-space: nowrap;
}

.navbar-brand__puma {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    transform: translateY(2px);
}

.navbar-brand__wordmark {
    width: 7rem;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.navbar-brand:hover {
    opacity: 0.82;
}

.navbar-brand:hover {
    color: var(--color-accent-light) !important;
}


/* ==========================================================================
   Menu button
   ========================================================================== */

.menu-toggle {
    position: relative;
    z-index: 4001;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    padding: 0;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 0;
    cursor: pointer;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
        border-color: var(--color-accent);
        outline: none;
    }

    .menu-toggle span {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 1.35rem;
        height: 1px;
        background: var(--color-text);
        transform-origin: center;
        transition: transform var(--transition-normal), opacity var(--transition-normal);
    }

        .menu-toggle span:nth-child(1) {
            transform: translate(-50%, -0.42rem);
        }

        .menu-toggle span:nth-child(2) {
            transform: translate(-50%, 0);
        }

        .menu-toggle span:nth-child(3) {
            transform: translate(-50%, 0.42rem);
        }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translate(-50%, 0) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, 0) scaleX(0);
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translate(-50%, 0) rotate(-45deg);
    }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - var(--header-height));
    align-items: end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
}


    .hero__media img,
    .hero__media video,
    .hero-background-placeholder {
        width: 100%;
        height: 100%;
    }

    .hero__media img,
    .hero__media video {
        object-fit: cover;
        object-position: center;
    }

    .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 42%;
    }

@media (max-width: 767.98px) {
    .hero__media img {
        object-position: 16% center;
    }
}
/*.hero-background-placeholder {
    background: radial-gradient( circle at 58% 25%, rgba(201, 121, 50, 0.12), transparent 36% ), linear-gradient( 115deg, #090909 0%, #151515 52%, #24201d 100% );
}*/

.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.55) 50%, rgba(8, 8, 8, 0.2) 100% );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    background: linear-gradient( to bottom, transparent, var(--color-background) );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: min( calc(100% - 3rem), var(--container-width) );
    margin-inline: auto;
    padding-block: clamp(4rem, 10vh, 7rem);
    animation: hero-fade-in 1s ease both;
}

.hero__brand {
    display: flex;
    max-width: min(38rem, 70vw);
    margin-bottom: 2rem;
    align-items: center;
    gap: 1.25rem;
}

.hero__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__brand-puma {
    width: auto;
    height: 16rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.hero__brand-wordmark {
    width: auto;
    height: 10rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.hero__eyebrow {
    margin-bottom: 1.2rem;
    color: var(--color-accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero > .hero__eyebrow--mobile-top {
    display: none;
}

.hero > .hero__content > .hero__eyebrow {
    display: block;
}

.hero__title {
    max-width: 11ch;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.hero__subtitle {
    max-width: 36rem;
    margin-bottom: 2.5rem;
    color: rgba(242, 240, 236, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-portrait-mobile {
    display: none;
}

    .hero-portrait-mobile img,
    .hero-portrait-mobile .portrait-placeholder {
        width: 100%;
        height: 100%;
    }

    .hero-portrait-mobile img {
        object-fit: cover;
        object-position: left center;
    }

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================================================
   Ambient portrait – desktop only
   ========================================================================== */

.ambient-portrait {
    position: fixed;
    z-index: 2;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: var(--ambient-portrait-width);
    overflow: hidden;
    opacity: var(--ambient-portrait-opacity);
    pointer-events: none;
    -webkit-mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.28) 18%, #000 48%, #000 100% );
    mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.28) 18%, #000 48%, #000 100% );
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

    .ambient-portrait::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.25) );
        pointer-events: none;
    }

    .ambient-portrait img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: auto;
        max-width: none;
        height: 100%;
        user-select: none;
        -webkit-user-drag: none;
    }
/* ==========================================================================
   Portrait placeholders
   ========================================================================== */

.portrait-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(255, 255, 255, 0.22);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 7rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portrait-placeholder--primary {
    background: radial-gradient( circle at 65% 35%, rgba(201, 121, 50, 0.15), transparent 40% ), linear-gradient(135deg, #151515, #2a2a2a);
}

.portrait-placeholder--secondary {
    background: radial-gradient( circle at 35% 35%, rgba(223, 161, 94, 0.13), transparent 40% ), linear-gradient(225deg, #151515, #282828);
}
/* ==========================================================================
   Fullscreen menu
   ========================================================================== */

.site-menu {
    position: fixed;
    z-index: 3000;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient( rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.48) );
    transition: opacity 280ms ease, visibility 280ms ease;
}

body.menu-preparing .site-menu,
body.menu-opening .site-menu,
body.menu-open .site-menu,
body.menu-closing .site-menu {
    visibility: visible;
    opacity: 1;
}

body.menu-opening .site-menu,
body.menu-open .site-menu {
    pointer-events: auto;
}

body.menu-preparing .ambient-portrait,
body.menu-opening .ambient-portrait,
body.menu-open .ambient-portrait,
body.menu-closing .ambient-portrait {
    visibility: hidden;
    opacity: 0;
}
/* ==========================================================================
   Menu portraits
   ========================================================================== */

.menu-portrait-stage {
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

    .menu-portrait-stage::after {
        content: "";
        position: absolute;
        z-index: 3;
        top: -2rem;
        left: 50%;
        width: var(--portrait-dot-size);
        height: var(--portrait-dot-size);
        opacity: 0;
        background: var(--color-accent);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 12px rgba(216, 9, 54, 0.45), 0 0 28px rgba(216, 9, 54, 0.2);
        pointer-events: none;
        transition: top var(--portrait-transition), opacity 180ms ease;
        box-shadow: 0 0 20px rgba(216, 9, 54, .55), 0 0 45px rgba(216, 9, 54, .35), 0 0 80px rgba(216, 9, 54, .15);
    }

body.menu-opening .menu-portrait-stage::after,
body.menu-open .menu-portrait-stage::after {
    /*top: clamp( 7rem, 21%, calc(50% - 13rem) );*/

    top: clamp(6rem, 17%, calc(50% - 14rem));
    opacity: 1;
}

body.menu-closing .menu-portrait-stage::after {
    top: -2rem;
    opacity: 0;
}

.menu-portrait {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    transition: right var(--portrait-transition), width var(--portrait-transition);
    will-change: right, width;
}

    .menu-portrait img {
        position: absolute;
        bottom: 0;
        width: auto;
        max-width: none;
        height: 100%;
        user-select: none;
        -webkit-user-drag: none;
    }
/*
   Closed state

   Ralph occupies the ambient portrait area on the right.
   Olivia waits completely outside the viewport.
*/

.menu-portrait--primary {
    right: 0;
    width: var(--ambient-portrait-width);
}

.menu-portrait--secondary {
    right: -50vw;
    width: 50vw;
}
/*
   The inner facial edges are anchored to the centre seam.
*/

.menu-portrait--primary img {
    right: 0;
}

.menu-portrait--secondary img {
    left: 0;
}
/*
   Opening/open state

   Ralph moves into the left half.
   Olivia slides into the right half.
*/

body.menu-opening .menu-portrait--primary,
body.menu-open .menu-portrait--primary {
    right: 50vw;
    width: 50vw;
}

body.menu-opening .menu-portrait--secondary,
body.menu-open .menu-portrait--secondary {
    right: 0;
}
/*
   Closing state

   Ralph returns to the ambient position.
   Olivia slides out to the right.
*/

body.menu-closing .menu-portrait--primary {
    right: 0;
    width: var(--ambient-portrait-width);
}

body.menu-closing .menu-portrait--secondary {
    right: -50vw;
}
/* ==========================================================================
   Menu navigation
   ========================================================================== */

.site-menu__navigation {
    position: absolute;
    z-index: 4;
    inset: var(--header-height) 0 0;
    display: flex;
    padding: 3rem 1.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(.35rem, 1.1vh, .8rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    color: rgba(255, 255, 255, .82);
    transform: translateX(-2vw);
    transition: opacity 380ms ease, visibility 0s linear 380ms;
}

    .site-menu__navigation a {
        position: relative;
        display: inline-flex;
        width: fit-content;
        align-items: center;
        color: rgba(255, 255, 255, .72);
        font-family: var(--font-heading);
        font-size: clamp(1.7rem, 3.5vw, 3.7rem);
        font-weight: 600;
        line-height: .92;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: none;
        transition: color 250ms ease, transform 250ms ease, text-shadow 450ms ease 140ms;
    }

body.menu-open .site-menu__navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 380ms ease 80ms, visibility 0s linear 0s;
}

body.menu-closing .site-menu__navigation {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
}

body.menu-open .site-menu__navigation a {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 0, 0, 0.20);
}

.site-menu__navigation a:hover,
.site-menu__navigation a:focus-visible {
    color: rgba(255, 255, 255, 1);
    outline: none;
    transform: translateX(0.35rem);
}

.site-menu__navigation a::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    opacity: 0;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-12px) scale(0.4);
    transition: opacity 250ms ease, transform 250ms ease;
}

.site-menu__navigation a:hover::before,
.site-menu__navigation a:focus-visible::before,
.site-menu__navigation a:active::before {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.site-menu__booking {
    margin-top: 0.8rem;
    padding: 0.35rem 1.2rem;
    border: 1px solid var(--color-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    min-height: 3.25rem;
    padding: 0.85rem 1.65rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--color-accent);
    --bs-btn-border-color: var(--color-accent);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--color-accent-light);
    --bs-btn-hover-border-color: var(--color-accent-light);
    --bs-btn-focus-shadow-rgb: 0, 0, 0;
    --bs-btn-active-color: var(--color-accent);
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #000;
}

    .btn-primary:hover {
        border-color: var(--color-accent-light);
        background: var(--color-accent-light);
        color: #000;
    }

    .btn-primary:active,
    .btn-primary.active,
    .show > .btn-primary.dropdown-toggle {
        border-color: var(--color-accent);
        background: #000;
        color: var(--color-accent);
        box-shadow: none;
    }

    .btn-primary:focus,
    .btn-primary:focus-visible {
        box-shadow: none;
    }

    .btn-primary:focus-visible {
        outline: 1px solid var(--color-accent);
        outline-offset: 3px;
    }

.btn-outline-light,
.btn-outline {
    color: var(--color-text);
    background: transparent;
    border-color: var(--color-border-strong);
}

    .btn-outline-light:hover,
    .btn-outline:hover {
        color: var(--color-text-dark);
        background: var(--color-text);
        border-color: var(--color-text);
    }

.btn__icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    flex-shrink: 0;
}

.btn:hover .platform-icon {
    opacity: 1;
    filter: drop-shadow(0 0 6px var(--color-accent));
}
/* ==========================================================================
   Cards and grids
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(min(100%, 19rem), 1fr) );
    gap: clamp(1.5rem, 3vw, 3rem);
}

.music-header {
    position: relative;
    z-index: 4;
}

    .music-header .section-eyebrow {
        display: block;
        margin-bottom: 1rem;
    }

.card-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(20rem, 1fr) );
    gap: 2rem;
}

.card {
    display: flex;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

    .card:hover {
        border-color: var(--color-border-strong);
        box-shadow: var(--shadow-soft);
        transform: translateY(-0.4rem);
    }

.card-img-top {
    aspect-ratio: 1;
    object-fit: cover;
}

.card-body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
}

.card-text {
    color: var(--color-text-muted);
}

.card-meta {
    display: grid;
    gap: .35rem;
    margin: 1.5rem 0;
}

.card-meta-row {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: .75rem;
}

.card-meta dt {
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 600;
}

.card-meta dd {
    margin: 0;
    color: var(--color-text-muted);
}

.card-description {
    margin-bottom: 0;
}

.card-description__text {
    margin-bottom: 0;
}

.card-description:not(.is-expanded) .card-description__text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.card-description__toggle {
    display: none;
    margin-top: 0.65rem;
    padding: 0;
    color: var(--color-accent-light);
    background: none;
    border: 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.card-description.is-overflowing .card-description__toggle {
    display: inline-block;
}

.card-description__toggle:hover,
.card-description__toggle:focus-visible {
    color: var(--color-text);
}

.video-card__thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2.1 / 1;
    background: #000;
}

    .video-card__thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 450ms ease, filter 450ms ease;
    }

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(4rem, 7vw, 5.5rem);
    height: clamp(4rem, 7vw, 5.5rem);
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    box-shadow: 0 0 18px rgba(216, 9, 54, 0.45), 0 0 42px rgba(216, 9, 54, 0.22);
    transition: opacity 220ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.video-card__play-icon {
    width: 0;
    height: 0;
    margin-left: 0.38rem;
    border-top: 0.78rem solid transparent;
    border-bottom: 0.78rem solid transparent;
    border-left: 1.2rem solid rgba(255,255,255,.98);
}

.video-card__thumbnail:hover img,
.video-card__thumbnail:focus-visible img {
    transform: scale(1.045);
    filter: brightness(0.82);
}

.video-card__thumbnail:hover .video-card__play,
.video-card__thumbnail:focus-visible .video-card__play {
    opacity: 1;
    animation: videoPlayPulse .45s ease-out, videoPlayGlow 2.5s ease-in-out infinite .45s;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 26px rgba(216, 9, 54, .65), 0 0 62px rgba(216, 9, 54, .35);
}

.video-card__thumbnail:hover .video-card__play-icon,
.video-card__thumbnail:focus-visible .video-card__play-icon {
    transform: scale(1.08);
}

.video-card__thumbnail:focus-visible {
    outline: 1px solid var(--color-accent-light);
    outline-offset: 0.25rem;
}

.video-card__release-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-accent-light);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 250ms ease, transform 250ms ease;
}

    .video-card__release-link:hover,
    .video-card__release-link:focus-visible {
        color: var(--color-text);
        transform: translateX(0.25rem);
    }

/* ==========================================================================
   Story page
   ========================================================================== */

.story-page {
    padding-bottom: clamp(5rem, 10vw, 10rem);
}


/* ==========================================================================
   Story hero
   ========================================================================== */

.story-hero {
    display: flex;
    align-items: flex-end;
    min-height: min(70vh, 50rem);
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem) clamp(4rem, 8vw, 7rem);
}

.story-hero__content {
    width: min(100%, 72rem);
}

.story-hero__title {
    max-width: 10ch;
    margin: .75rem 0 2rem;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .82;
}

.story-hero__lead {
    max-width: 44rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.7;
}


/* ==========================================================================
   Story sections
   ========================================================================== */

.story-sections {
    display: flex;
    flex-direction: column;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 7rem);
}

    .story-section:nth-child(even) {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }

        .story-section:nth-child(even) .story-section__visual {
            order: 2;
        }

        .story-section:nth-child(even) .story-section__content {
            order: 1;
        }

.story-section__visual {
    min-width: 0;
}

    .story-section__visual img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

.story-section__content {
    max-width: 42rem;
}

.story-section__title {
    max-width: 12ch;
    margin: .75rem 0 2rem;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .9;
}

.story-section__text {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.8;
}

    .story-section__text p {
        margin: 0 0 1.4rem;
    }

        .story-section__text p:last-child {
            margin-bottom: 0;
        }

.story-section__caption {
    margin-top: .8rem;
    max-width: 34rem;
    color: var(--color-text-muted);
    font-size: .85rem;
    line-height: 1.5;
}
    /* ==========================================================================
   Story outro
   ========================================================================== */

    .story-outro {
        padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 6vw, 7rem);
    }

    .story-outro__title {
        max-width: 10ch;
        margin: .75rem 0 2.5rem;
        font-size: clamp(4rem, 9vw, 9rem);
        line-height: .82;
    }

    .story-outro__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    /* ==========================================================================
   Story mobile
   ========================================================================== */

    @media (max-width: 767.98px) {

        .story-hero {
            min-height: auto;
            padding-top: 3rem;
            padding-bottom: 5rem;
        }

        .story-hero__title {
            font-size: clamp(3.5rem, 17vw, 5.5rem);
        }

        .story-section,
        .story-section:nth-child(even) {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

            .story-section:nth-child(even) .story-section__visual,
            .story-section:nth-child(even) .story-section__content {
                order: initial;
            }

        .story-section__visual img {
            aspect-ratio: 1 / 1;
        }

        .story-section__title {
            font-size: clamp(2.8rem, 13vw, 4rem);
        }

        .story-outro {
            padding-top: 5rem;
            padding-bottom: 6rem;
        }

        .story-outro__title {
            font-size: clamp(3.5rem, 16vw, 5rem);
        }

        .story-outro__actions {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    /* ==========================================================================
   Gallery
   ========================================================================== */

    .gallery-header {
        padding-top: 2.5rem;
        margin-bottom: 2rem;
    }

        .gallery-header .section-title {
            max-width: 8ch;
            margin-bottom: 0;
            font-size: clamp(3.25rem, 5.5vw, 5.5rem);
            line-height: .92;
        }

    .gallery-section {
        margin-top: 2rem;
    }
    /* ==========================================================================
   Gallery grid
   ========================================================================== */

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
    /* ==========================================================================
   Gallery card
   ========================================================================== */

    .gallery-card {
        min-width: 0;
    }

        .gallery-card .card-description {
            margin-bottom: .75rem;
        }
    /* Card image */

    .gallery-card__image {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: 16 / 9;
    }

        .gallery-card__image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /*
     * Gallery-specific interaction:
     * slightly zoomed in at rest,
     * slowly revealing more of the image on hover.
     */
            transform: scale(1.12);
            transition: transform 15s cubic-bezier(.22, 1, .36, 1);
        }

    .gallery-card__image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, .25), transparent 55% );
        opacity: .5;
        pointer-events: none;
        transition: opacity .6s ease;
    }
    /* Desktop card interaction */

    @media (hover: hover) and (pointer: fine) {

        .gallery-card:hover,
        .gallery-card:focus-within {
            transform: translateY(-.3rem);
            box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .18);
        }

            .gallery-card:hover .gallery-card__image img,
            .gallery-card:focus-within .gallery-card__image img {
                transform: scale(1);
            }

            .gallery-card:hover .gallery-card__image-overlay,
            .gallery-card:focus-within .gallery-card__image-overlay {
                opacity: .8;
            }
    }
    /* Card body */

    .gallery-card__body {
        padding: 1.75rem 2rem;
    }
    /* Card description */

    .gallery-card__description {
        margin: 0;
        color: var(--color-text-muted);
        line-height: 1.65;
        overflow-wrap: break-word;
        word-break: normal;
    }
    /*
 * Gallery cards use a shorter teaser than the shared cards.
 * The shared .card-description rules handle expand/collapse.
 */
    .card-description:not(.is-expanded) .gallery-card__description {
        -webkit-line-clamp: 3;
    }
    /* Card footer */

    .gallery-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
        min-width: 0;
        margin-top: auto;
    }

        .gallery-card__footer > * {
            min-width: 0;
        }

    .gallery-card__count {
        color: var(--color-text-muted);
        font-size: .75rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .gallery-card__link {
        color: var(--color-accent-light);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-decoration: none;
        text-transform: uppercase;
        transition: color .25s ease, transform .25s ease;
    }

        .gallery-card__link:hover,
        .gallery-card__link:focus-visible {
            color: var(--color-text);
            transform: translateX(.2rem);
        }
    /* ==========================================================================
   Gallery detail
   ========================================================================== */

    .gallery-detail {
        padding-top: 2.5rem;
        padding-bottom: clamp(4rem, 8vw, 7rem);
    }

    .gallery-detail__header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(18rem, .9fr);
        gap: clamp(2.5rem, 5vw, 5rem);
        align-items: start;
        margin-bottom: clamp(3rem, 6vw, 5rem);
    }

    .gallery-detail__intro {
        min-width: 0;
    }
    /* Detail cover */

    .gallery-detail__cover {
        display: block;
        width: 100%;
        max-width: 28rem;
        justify-self: end;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        border: 1px solid var(--color-border);
    }

        .gallery-detail__cover img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .gallery-detail__cover:hover img,
        .gallery-detail__cover:focus-visible img {
            transform: scale(1.025);
        }
    /* Breadcrumb */

    .gallery-detail__breadcrumb {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: .75rem;
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .gallery-detail__breadcrumb-link {
        color: var(--color-text-muted);
        text-decoration: none;
        transition: color .25s ease;
    }

        .gallery-detail__breadcrumb-link:hover,
        .gallery-detail__breadcrumb-link:focus-visible {
            color: var(--color-text);
        }

    .gallery-detail__breadcrumb-separator {
        color: rgba(255, 255, 255, .25);
    }

    .gallery-detail__breadcrumb-current {
        color: var(--color-accent-light);
    }
    /* Detail title and description */

    .gallery-detail__title {
        margin-bottom: 1.25rem;
        font-size: clamp(3.5rem, 7vw, 6.5rem);
    }

    .gallery-detail__description {
        max-width: 42rem;
        margin-bottom: 0;
        color: var(--color-text-muted);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .gallery-detail__aside {
        width: 100%;
        max-width: 28rem;
        justify-self: end;
    }

        .gallery-detail__aside .gallery-detail__cover {
            max-width: none;
            justify-self: auto;
        }

    .gallery-detail__event {
        margin-top: 1.5rem;
    }

    .gallery-detail__event-title {
        margin: .65rem 0 .75rem;
        font-family: var(--font-heading);
        font-size: clamp(1.8rem, 2.5vw, 2.5rem);
        font-weight: 400;
        line-height: 1;
    }

        .gallery-detail__event-title a {
            color: inherit;
            text-decoration: none;
            transition: color .25s ease;
        }

            .gallery-detail__event-title a:hover,
            .gallery-detail__event-title a:focus-visible {
                color: var(--color-accent-light);
            }

    .gallery-detail__event-meta {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem 1rem;
        color: var(--color-text-muted);
        font-size: .8rem;
    }

    .gallery-detail__event-link {
        display: inline-block;
        margin-top: 1rem;
        color: var(--color-accent-light);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-decoration: none;
        text-transform: uppercase;
        transition: color .25s ease;
    }

        .gallery-detail__event-link:hover,
        .gallery-detail__event-link:focus-visible {
            color: var(--color-text);
        }

    @media (max-width: 767.98px) {
        .gallery-detail__aside {
            max-width: 100%;
            justify-self: stretch;
        }
    }
    /* ==========================================================================
   Gallery detail media wall
   ========================================================================== */

    .gallery-detail__grid {
        columns: 3;
        column-gap: clamp(1rem, 2vw, 1.5rem);
    }

    .gallery-detail__item,
    .gallery-detail__external {
        break-inside: avoid;
        margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    }

    .gallery-detail__image-link {
        display: block;
        overflow: hidden;
        cursor: zoom-in;
    }

        .gallery-detail__image-link img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform .4s ease;
        }

    .gallery-detail__caption {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: .65rem;
        color: var(--color-text-muted);
        font-size: .75rem;
    }

        .gallery-detail__caption small {
            color: var(--color-text-muted);
        }

    @media (hover: hover) and (pointer: fine) {

        .gallery-detail__image-link:hover img,
        .gallery-detail__image-link:focus-visible img {
            transform: scale(1.025);
        }
    }

    .gallery-detail__video-link {
        position: relative;
        display: block;
        overflow: hidden;
        cursor: pointer;
        background: #000;
    }

    .gallery-detail__video-preview {
        display: block;
        width: 100%;
        height: auto;
        pointer-events: none;
    }

    .gallery-detail__video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        display: grid;
        width: clamp(3.25rem, 4vw, 3.75rem);
        height: clamp(3.25rem, 4vw, 3.75rem);
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: var(--color-accent);
        transform: translate(-50%, -50%);
        box-shadow: 0 0 18px rgba(216, 9, 54, .45), 0 0 42px rgba(216, 9, 54, .22);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .gallery-detail__video-play-icon {
        width: 0;
        height: 0;
        margin-left: .15rem;
        border-top: .45rem solid transparent;
        border-bottom: .45rem solid transparent;
        border-left: .7rem solid #fff;
    }

    .gallery-detail__video-link:hover .gallery-detail__video-play,
    .gallery-detail__video-link:focus-visible .gallery-detail__video-play {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 26px rgba(216, 9, 54, .65), 0 0 62px rgba(216, 9, 54, .35);
    }

    .gallery-detail__video-link:hover .gallery-detail__video-play-icon,
    .gallery-detail__video-link:focus-visible .gallery-detail__video-play-icon {
        border-left-color: #fff;
    }

    .gallery-lightbox__video {
        display: block;
        max-width: min(90vw, 90rem);
        max-height: 90vh;
        background: #000;
    }

        .gallery-lightbox__video[hidden],
        .gallery-lightbox__image[hidden] {
            display: none;
        }
    /* ==========================================================================
   Gallery lightbox
   ========================================================================== */

    .gallery-lightbox {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 5000;
        display: grid;
        place-items: center;
        padding: 1rem clamp(1rem, 4vw, 3rem) 1.5rem;
        background: rgba(0, 0, 0, .88);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
    }

        .gallery-lightbox.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

    .gallery-lightbox__content {
        position: relative;
        display: grid;
        place-items: center;
        max-width: min(92vw, 80rem);
        max-height: 100%;
        padding: .75rem;
        border: 1px solid var(--color-border);
        background: #111;
    }

    .gallery-lightbox__image {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: calc(100vh - var(--header-height) - 3.5rem);
        object-fit: contain;
    }

    .gallery-lightbox__video {
        display: block;
        width: auto;
        height: auto;
        max-width: min(90vw, 90rem);
        max-height: calc(100vh - var(--header-height) - 3.5rem);
        background: #000;
    }

        .gallery-lightbox__video[hidden],
        .gallery-lightbox__image[hidden] {
            display: none;
        }
    /* ==========================================================================
   External gallery media
   ========================================================================== */

    .gallery-detail__external {
        margin: clamp(2rem, 4vw, 4rem) 0;
        padding: clamp(2rem, 5vw, 4rem);
        border: 1px solid var(--color-border);
        background: var(--color-surface);
    }

    .gallery-detail__external-title {
        margin: .5rem 0 1rem;
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    .gallery-detail__external-description {
        max-width: 40rem;
        color: var(--color-text-muted);
    }

    .gallery-detail__external-credit {
        color: var(--color-text-muted);
        font-size: .8rem;
    }
    /* ==========================================================================
   Tablet
   ========================================================================== */

    @media (max-width: 991.98px) {

        .gallery-detail__grid {
            columns: 2;
        }
    }
    /* ==========================================================================
   Mobile
   ========================================================================== */

    @media (max-width: 800px) {

        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767.98px) {

        .gallery-detail {
            padding-top: 1.5rem;
        }

        .gallery-detail__header {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .gallery-detail__cover {
            max-width: 100%;
        }

        .gallery-detail__grid {
            columns: 1;
        }

        .gallery-detail__caption {
            flex-direction: column;
            gap: .25rem;
        }
        /*
     * No hover-specific starting zoom on touch devices.
     * Keep the image stable while scrolling.
     */
        .gallery-card__image img {
            transform: scale(1);
            transition: none;
        }
    }
    /* ==========================================================================
   Live
   ========================================================================== */

    .live-page {
        width: min(calc(100% - 3rem), 82rem);
        margin-inline: auto;
        padding-top: 2.5rem;
        padding-bottom: clamp(4rem, 8vw, 7rem);
    }

    .live-page__header {
        max-width: 48rem;
        margin-bottom: clamp(3rem, 6vw, 5rem);
    }

        .live-page__header .page-title {
            line-height: .74;
        }

    .live-page__section + .live-page__section {
        margin-top: clamp(3rem, 5vw, 4.5rem);
    }

    .live-page__section--past {
        padding-top: clamp(2.5rem, 4vw, 3.5rem);
        border-top: 1px solid var(--color-border);
    }

    .live-page__empty {
        padding-block: 2rem 5rem;
        color: var(--color-text-muted);
    }
    /* ==========================================================================
   Event grid
   ========================================================================== */

    .event-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    /* ==========================================================================
   Event card — shared
   ========================================================================== */

    .event-card {
        min-width: 0;
    }

    .event-card__visual {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: 1;
        background: rgba(255, 255, 255, .03);
    }

        .event-card__visual img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .event-card__visual:hover img,
        .event-card__visual:focus-visible img {
            transform: scale(1.025);
        }

    .event-card__content {
        padding: clamp(1.4rem, 3vw, 2rem);
    }

    .event-card__date {
        display: block;
        margin-bottom: .6rem;
        color: var(--color-accent-light);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .event-card__title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1;
    }

        .event-card__title a {
            color: inherit;
            text-decoration: none;
            transition: color .25s ease;
        }

            .event-card__title a:hover,
            .event-card__title a:focus-visible {
                color: var(--color-accent-light);
            }

    .event-card__location {
        margin: .75rem 0 0;
        color: var(--color-text-muted);
    }

    .event-card__link {
        display: inline-block;
        margin-top: 1rem;
        color: var(--color-accent-light);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-decoration: none;
        transition: color .25s ease, transform .25s ease;
    }

        .event-card__link:hover,
        .event-card__link:focus-visible {
            color: var(--color-text);
            transform: translateX(.2rem);
        }

    .event-card__status {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: .45rem .65rem;
        background: var(--color-accent);
        color: var(--color-text);
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    /* ==========================================================================
   Upcoming events — editorial desktop layout
   ========================================================================== */

    .event-list--upcoming {
        display: grid;
        gap: 0;
    }

    @media (min-width: 768px) {

        .event-list--upcoming .card-title {
            font-size: clamp(2.2rem, 4vw, 4rem);
        }

        .event-list--upcoming .event-card {
            display: grid;
            grid-template-columns: minmax(15rem, .55fr) minmax(0, 1fr);
            gap: clamp(2rem, 4vw, 4rem);
            align-items: start;
            width: 100%;
            height: auto;
            padding-block: clamp(2rem, 4vw, 3.5rem);
            overflow: visible;
            background: transparent;
            border: 0;
            border-bottom: 1px solid var(--color-border);
            box-shadow: none;
            transform: none;
        }

            .event-list--upcoming .event-card:hover,
            .event-list--upcoming .event-card:focus-within {
                border-color: var(--color-border);
                box-shadow: none;
                transform: none;
            }

            .event-list--upcoming .event-card:first-child {
                padding-top: 0;
            }

            .event-list--upcoming .event-card:last-child {
                margin-bottom: -3.75rem;
                border-bottom: 0;
            }

        .event-list--upcoming .event-card__visual {
            aspect-ratio: auto;
            background: transparent;
        }

            .event-list--upcoming .event-card__visual img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }

        .event-list--upcoming .event-card__content {
            padding: 0;
        }

        .event-list--upcoming .event-card__date {
            margin-bottom: .8rem;
        }

        .event-list--upcoming .event-card__location {
            margin-top: 1rem;
        }

        .event-list--upcoming .card-description__text {
            -webkit-line-clamp: 4;
        }
    }
    /* ==========================================================================
   Past events — cards
   ========================================================================== */

    .live-page__section--past .event-card__content {
        padding: clamp(1.4rem, 3vw, 2rem);
    }
    /* Past card desktop interaction */

    @media (min-width: 768px) {

        .live-page__section--past .event-card:hover,
        .live-page__section--past .event-card:focus-within {
            transform: translateY(-.25rem);
            box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .18);
        }

            .live-page__section--past .event-card:hover .event-card__visual img,
            .live-page__section--past .event-card:focus-within .event-card__visual img {
                transform: scale(1.025);
            }
    }
    /* ==========================================================================
   Event gallery preview
   ========================================================================== */

    .event-detail__gallery {
        /*margin-top: clamp(2.5rem, 4vw, 3.5rem);*/
        padding-top: clamp(2.5rem, 4vw, 3.5rem);
        padding-bottom: clamp(4rem, 7vw, 6rem);
        border-top: 1px solid var(--color-border);
    }

    .event-detail__gallery-heading {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .event-detail__gallery-title {
        margin: 0;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    .event-detail__gallery-link {
        flex: 0 0 auto;
        padding-bottom: .35rem;
        color: var(--color-accent-light);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        transition: color .25s ease, transform .25s ease;
    }

        .event-detail__gallery-link:hover,
        .event-detail__gallery-link:focus-visible {
            color: var(--color-text);
            transform: translateX(.25rem);
        }

    .event-detail__gallery-visual {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: 16 / 7;
        border: 1px solid var(--color-border);
        background: var(--color-surface);
    }

        .event-detail__gallery-visual img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.12);
            transition: transform 15s cubic-bezier(.22, 1, .36, 1);
        }

    .event-detail__gallery-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        color: var(--color-text-muted);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

        .event-detail__gallery-footer a {
            color: var(--color-accent-light);
            transition: color .25s ease, transform .25s ease;
        }

            .event-detail__gallery-footer a:hover,
            .event-detail__gallery-footer a:focus-visible {
                color: var(--color-text);
                transform: translateX(.25rem);
            }

    @media (hover: hover) and (pointer: fine) {

        .event-detail__gallery-visual:hover img,
        .event-detail__gallery-visual:focus-visible img {
            transform: scale(1);
        }
    }

    @media (max-width: 767.98px) {

        .event-detail__gallery {
            margin-top: 3rem;
            padding-top: 3rem;
            padding-bottom: 4rem;
        }

        .event-detail__gallery-heading {
            display: block;
        }

        .event-detail__gallery-link {
            display: inline-block;
            margin-top: 1rem;
        }

        .event-detail__gallery-visual {
            aspect-ratio: 16 / 9;
        }

        .event-detail__gallery-footer {
            align-items: flex-start;
            flex-direction: column;
            gap: .5rem;
        }

        .event-detail__gallery-visual img {
            transform: scale(1);
            transition: none;
        }
    }
    /* ==========================================================================
   Tablet
   ========================================================================== */

    @media (max-width: 991.98px) {

        .event-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    /* ==========================================================================
   Mobile
   ========================================================================== */

    @media (max-width: 767.98px) {

        .live-page {
            width: calc(100% - 2rem);
            padding-top: 1.5rem;
            padding-bottom: 4rem;
        }

        .event-grid {
            grid-template-columns: 1fr;
        }
        /* --------------------------------------------------------------
   All event cards use the same visual language on mobile
   -------------------------------------------------------------- */

        .event-list--upcoming .event-card,
        .live-page__section--past .event-card {
            display: block;
            padding: 0;
            overflow: hidden;
            border: 1px solid var(--color-border);
            background: var(--color-surface);
            box-shadow: none;
            transform: none;
        }

            .event-list--upcoming .event-card + .event-card,
            .live-page__section--past .event-card + .event-card {
                margin-top: 2rem;
            }

        .event-list--upcoming .event-card__visual,
        .live-page__section--past .event-card__visual {
            margin: 0;
            aspect-ratio: 1;
            background: rgba(255, 255, 255, .03);
        }

            .event-list--upcoming .event-card__visual img,
            .live-page__section--past .event-card__visual img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .event-list--upcoming .event-card__content,
        .live-page__section--past .event-card__content {
            padding: 1.5rem;
        }

        .event-list--upcoming .card-title {
            font-size: clamp(2rem, 10vw, 3rem);
        }

        .event-list--upcoming .event-card__location {
            margin-top: .75rem;
        }

        .event-list--upcoming .card-description__text {
            -webkit-line-clamp: 4;
        }
    }
    /* ==========================================================================
   Event detail
   ========================================================================== */

    .event-detail {
        width: min(calc(100% - 3rem), 82rem);
        margin-inline: auto;
        padding-top: 2.5rem;
    }
    /* Header
   ========================================================================== */

    .event-detail__header {
        margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .event-detail__breadcrumb {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1.5rem;
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .event-detail__breadcrumb-link {
        color: var(--color-text-muted);
        text-decoration: none;
        transition: color .25s ease;
    }

        .event-detail__breadcrumb-link:hover,
        .event-detail__breadcrumb-link:focus-visible {
            color: var(--color-text);
        }

    .event-detail__breadcrumb-separator {
        color: rgba(255, 255, 255, .25);
    }

    .event-detail__breadcrumb-current {
        color: var(--color-accent-light);
    }
    /* Heading
   ========================================================================== */

    .event-detail__heading {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
        gap: clamp(3rem, 7vw, 7rem);
        align-items: end;
    }

    .event-detail__heading-main {
        min-width: 0;
    }

    .event-detail__title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(3.5rem, 7vw, 7rem);
        line-height: .82;
    }

    .event-detail__status {
        display: inline-block;
        margin-top: 1.25rem;
        padding: .45rem .7rem;
        background: var(--color-accent);
        color: var(--color-text);
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    /* Header meta
   ========================================================================== */

    .event-detail__meta {
        display: grid;
        gap: .3rem;
        padding-bottom: .35rem;
        color: var(--color-text-muted);
    }

    .event-detail__date {
        color: var(--color-accent-light);
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .event-detail__time {
        margin-bottom: .7rem;
        color: var(--color-text);
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1;
    }

    .event-detail__venue {
        color: var(--color-text);
    }

    .event-detail__city {
        font-size: .9rem;
    }
    /* Main event information
   ========================================================================== */

    .event-detail__main {
        display: grid;
        grid-template-columns: minmax(18rem, .75fr) minmax(20rem, 1.25fr);
        gap: clamp(3rem, 7vw, 7rem);
        align-items: start;
        margin-top: clamp(2.5rem, 5vw, 4rem);
    }
    /* Details
   ========================================================================== */

    .event-detail__details {
        display: grid;
        gap: 3rem;
    }

    .event-detail__details-section {
        min-width: 0;
    }

    .event-detail__facts {
        margin-top: 1rem;
        border-top: 1px solid var(--color-border);
    }

    .event-detail__fact {
        display: grid;
        grid-template-columns: 5rem minmax(0, 1fr);
        gap: 1rem;
        padding: .85rem 0;
        border-bottom: 1px solid var(--color-border);
        color: var(--color-text-muted);
    }

    .event-detail__fact-label {
        color: var(--color-text);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .event-detail__address {
        display: grid;
        margin: 0;
        color: inherit;
        font-style: normal;
    }

    .event-detail__gallery-heading-main {
        min-width: 0;
    }

    .event-detail__gallery-description {
        max-width: 42rem;
        margin: 1rem 0 0;
        color: var(--color-text-muted);
        line-height: 1.65;
    }
    /* Event links
   ========================================================================== */

    .event-detail__links {
        display: grid;
        margin-top: 1rem;
    }

    .event-detail__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: .9rem 0;
        color: var(--color-text-muted);
        border-bottom: 1px solid var(--color-border);
        text-decoration: none;
        transition: color .25s ease, padding-left .25s ease, border-color .25s ease;
    }

        .event-detail__link:first-child {
            border-top: 1px solid var(--color-border);
        }

    .event-detail__link-main {
        display: flex;
        align-items: center;
        gap: .9rem;
        min-width: 0;
    }

        .event-detail__link-main img {
            flex: 0 0 auto;
            width: 1.15rem;
            height: 1.15rem;
            object-fit: contain;
            opacity: .78;
            transition: opacity .25s ease, transform .25s ease;
        }

    .event-detail__link-arrow {
        flex: 0 0 auto;
        color: var(--color-accent-light);
        transition: transform .25s ease;
    }

    .event-detail__link:hover,
    .event-detail__link:focus-visible {
        padding-left: .4rem;
        color: var(--color-text);
        border-color: rgba(216, 9, 54, .45);
    }

        .event-detail__link:hover .event-detail__link-main img,
        .event-detail__link:focus-visible .event-detail__link-main img {
            opacity: 1;
            transform: scale(1.1);
        }

        .event-detail__link:hover .event-detail__link-arrow,
        .event-detail__link:focus-visible .event-detail__link-arrow {
            transform: translate(.2rem, -.2rem);
        }
    /* Share panel
   ========================================================================== */
    .event-detail__share {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem 1.1rem;
        border: 1px solid var(--color-accent);
        background: transparent;
        color: var(--color-text);
        font-family: var(--font-body);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color .25s ease, color .25s ease, background .25s ease;
    }

        .event-detail__share:hover,
        .event-detail__share:focus-visible {
            background: var(--color-accent);
            color: var(--color-text);
        }

    .event-share-panel {
        margin-top: .5rem;
        border-top: 1px solid var(--color-border);
    }

    .event-share-panel__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: .9rem 0;
        border: 0;
        border-bottom: 1px solid var(--color-border);
        background: transparent;
        color: var(--color-text-muted);
        text-decoration: none;
        font: inherit;
        cursor: pointer;
        transition: color .25s ease, padding-left .25s ease, border-color .25s ease;
    }

        .event-share-panel__link:hover,
        .event-share-panel__link:focus-visible {
            padding-left: .4rem;
            color: var(--color-text);
            border-color: rgba(216, 9, 54, .45);
        }
    /* Flyer preview
   ========================================================================== */

    .event-detail__hero {
        display: flex;
        justify-content: center;
        min-width: 0;
        padding: .75rem;
        border: 1px solid var(--color-border);
        background: rgba(255, 255, 255, .018);
    }

    .event-detail__hero-trigger {
        display: grid;
        place-items: center;
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: .5rem;
        border: 1px solid var(--color-border);
        background: #111;
        appearance: none;
        cursor: zoom-in;
    }

        .event-detail__hero-trigger img {
            display: block;
            width: min(100%, 24rem);
            height: auto;
            margin: auto;
            transition: transform .35s ease;
        }

        .event-detail__hero-trigger:hover img,
        .event-detail__hero-trigger:focus-visible img {
            transform: scale(1.015);
        }
    /* Description
   ========================================================================== */

    .event-detail__about {
        margin-top: clamp(2rem, 6vw, 5rem);
        padding-top: clamp(2rem, 4vw, 3rem);
        padding-bottom: clamp(2rem, 4vw, 3rem);
        border-top: 1px solid var(--color-border);
    }

    .event-detail__description {
        margin: 1rem 0 0;
        max-width: 52rem;
        color: var(--color-text-muted);
        line-height: 1.75;
    }

    .event-detail__date {
        color: var(--color-accent-light);
        font-size: .95rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    /* Flyer overlay
   ========================================================================== */

    .event-flyer-overlay {
        position: fixed;
        inset: 0;
        z-index: 2000;
        display: grid;
        place-items: center;
        padding: clamp(1rem, 4vw, 3rem);
        background: rgba(0, 0, 0, .88);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
    }

        .event-flyer-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }

    .event-flyer-overlay__content {
        position: relative;
        display: grid;
        place-items: center;
        width: fit-content;
        max-width: min(92vw, 36rem);
        max-height: 88vh;
        padding: clamp(.75rem, 2vw, 1.25rem);
        border: 1px solid var(--color-border);
        background: #111;
        box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .55);
    }

        .event-flyer-overlay__content img {
            display: block;
            width: auto;
            max-width: 100%;
            max-height: calc(88vh - 2.5rem);
            object-fit: contain;
        }
    /* Mobile
   ========================================================================== */

    @media (max-width: 767.98px) {

        .event-detail {
            width: calc(100% - 2rem);
            padding-top: 1.5rem;
        }

        .event-detail__heading {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .event-detail__title {
            font-size: clamp(3rem, 14vw, 5rem);
        }

        .event-detail__meta {
            padding-bottom: 0;
        }

        .event-detail__time {
            font-size: 2.25rem;
        }

        .event-detail__main {
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 2.5rem;
        }

        .event-detail__hero {
            padding: 1rem;
        }

        .event-detail__hero-trigger {
            padding: .5rem;
        }

            .event-detail__hero-trigger img {
                width: min(100%, 24rem);
            }

        .event-detail__about {
            margin-top: 3rem;
            padding-top: 3rem;
        }

        .event-flyer-overlay {
            padding: 1rem;
        }

        .event-flyer-overlay__content {
            max-width: 100%;
            padding: .75rem;
        }

            .event-flyer-overlay__content img {
                max-height: calc(90vh - 1.5rem);
            }
    }
    /* ==========================================================================
   Video detail
   ========================================================================== */

    .video-detail {
        width: min(calc(100% - 3rem), 82rem);
        margin-inline: auto;
        padding-top: 2.5rem;
    }
    /* Header */

    .video-detail__header {
        width: 100%;
        margin: 0 0 1.25rem;
    }

    .video-detail__breadcrumb {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: .9rem;
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .video-detail__breadcrumb-link {
        color: var(--color-text-muted);
        text-decoration: none;
        transition: color .25s ease;
    }

        .video-detail__breadcrumb-link:hover,
        .video-detail__breadcrumb-link:focus-visible {
            color: var(--color-text);
        }

    .video-detail__breadcrumb-separator {
        color: rgba(255, 255, 255, .25);
    }

    .video-detail__breadcrumb-current {
        color: var(--color-accent-light);
    }

    .video-detail__header-meta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr);
        gap: clamp(3rem, 7vw, 7rem);
        align-items: baseline;
        margin-bottom: .9rem;
    }

    .video-detail__breadcrumb {
        margin: 0;
        line-height: 1;
    }

    .video-detail__published {
        margin: .65rem 0 0;
        color: var(--color-text-muted);
        font-size: .8rem;
        letter-spacing: .03em;
        text-align: left;
    }

    .video-detail__published--mobile {
        display: none;
    }

    .video-detail__published--desktop {
        display: block;
    }
    /* Title + description */

    .video-detail__heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr);
        gap: clamp(3rem, 7vw, 7rem);
        align-items: start;
    }

    .video-detail__heading-title {
        min-width: 0;
    }

    .video-detail__heading-copy {
        padding-top: .45rem;
    }

    .video-detail__title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(3.5rem, 6vw, 6rem);
        line-height: .9;
    }

    .video-detail__published {
        margin: 1rem 0 0;
        color: var(--color-text-muted);
        font-size: .8rem;
        letter-spacing: .06em;
    }
    /* Player */

    .video-detail__player {
        position: relative;
        width: 100%;
        margin-inline: auto;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        background: #000;
    }

        .video-detail__player iframe,
        .video-detail__player img {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-detail__player img {
            object-fit: cover;
        }

    .video-detail__youtube-consent {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        overflow: hidden;
        border: 0;
        background: #000;
        color: #fff;
        cursor: pointer;
        text-align: left;
    }

        .video-detail__youtube-consent::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, .42) 0,
                rgba(0, 0, 0, .08) 34%,
                transparent 62%
            );
            pointer-events: none;
        }

        .video-detail__youtube-consent:focus-visible {
            outline: 2px solid var(--color-accent-light);
            outline-offset: -2px;
        }

    .video-detail__youtube-notice {
        position: absolute;
        z-index: 2;
        left: clamp(1rem, 2.5vw, 2rem);
        bottom: clamp(1rem, 2.5vw, 2rem);
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: .75rem;
        align-items: center;
        max-width: min(26rem, calc(100% - 2rem));
        padding: .85rem 1rem;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: .65rem;
        background: rgba(8, 8, 10, .76);
        box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .22);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        pointer-events: none;
    }

    .video-detail__youtube-notice-icon {
        display: grid;
        width: 1.85rem;
        height: 1.85rem;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid rgba(255, 255, 255, .78);
        border-radius: 50%;
        color: rgba(255, 255, 255, .92);
        font-size: .8rem;
        font-weight: 700;
        font-style: normal;
        line-height: 1;
    }

    .video-detail__youtube-notice-copy {
        display: grid;
        gap: .18rem;
        min-width: 0;
    }

        .video-detail__youtube-notice-copy strong {
            font-size: .92rem;
            font-weight: 600;
        }

        .video-detail__youtube-notice-copy > span {
            color: rgba(255, 255, 255, .7);
            font-size: .75rem;
            line-height: 1.35;
        }

    @media (max-width: 640px) {
        .video-detail__youtube-notice {
            padding: .65rem .75rem;
        }

            .video-detail__youtube-notice-copy strong {
                font-size: .8rem;
            }

            .video-detail__youtube-notice-copy > span {
                font-size: .68rem;
            }
    }
    /* Information below player */

    .video-detail__info {
        display: grid;
        grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr);
        gap: clamp(3rem, 7vw, 7rem);
        width: 100%;
        margin-top: clamp(2.5rem, 5vw, 4rem);
    }
    /* Shared subheading */

    .video-detail__subheading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 2rem;
        margin-bottom: .75rem;
    }

        .video-detail__subheading .section-eyebrow {
            margin: 0;
            white-space: nowrap;
        }
    /* Watch elsewhere */

    .video-detail__platform-list {
        display: grid;
    }

    .video-detail__platform {
        display: grid;
        grid-template-columns: 1.4rem minmax(0, 1fr) auto;
        gap: .9rem;
        align-items: center;
        padding: .9rem 0;
        color: var(--color-text-muted);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        text-decoration: none;
        transition: color .25s ease, padding-left .25s ease, border-color .25s ease;
    }

        .video-detail__platform:first-child {
            border-top: 1px solid rgba(255, 255, 255, .12);
        }

        .video-detail__platform img {
            width: 1.15rem;
            height: 1.15rem;
            object-fit: contain;
            opacity: .78;
            transition: opacity .25s ease, transform .25s ease, filter .25s ease;
        }

    .video-detail__platform-arrow {
        color: var(--color-accent-light);
        transition: transform .25s ease;
    }

    .video-detail__platform:hover,
    .video-detail__platform:focus-visible {
        padding-left: .4rem;
        color: var(--color-text);
        border-color: rgba(216, 9, 54, .45);
    }

        .video-detail__platform:hover img,
        .video-detail__platform:focus-visible img {
            opacity: 1;
            transform: scale(1.1);
            filter: drop-shadow(0 0 .25rem rgba(216, 9, 54, .55)) drop-shadow(0 0 .55rem rgba(216, 9, 54, .25));
        }

        .video-detail__platform:hover .video-detail__platform-arrow,
        .video-detail__platform:focus-visible .video-detail__platform-arrow {
            transform: translate(.2rem, -.2rem);
        }
    /* Related release */

    .video-detail__release {
        margin: 0;
        padding: 0;
        border: 0;
    }

    .video-detail__release-more {
        margin-left: auto;
        color: var(--color-accent-light);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
        transition: color .25s ease, transform .25s ease;
    }

        .video-detail__release-more:hover,
        .video-detail__release-more:focus-visible {
            color: var(--color-text);
            transform: translateX(.2rem);
        }

    .video-detail__release-body {
        display: grid;
        grid-template-columns: minmax(8rem, 10rem) minmax(0, 1fr);
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
    }

    .video-detail__release-artwork {
        display: block;
        overflow: hidden;
        aspect-ratio: 1;
    }

        .video-detail__release-artwork img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .video-detail__release-artwork:hover img,
        .video-detail__release-artwork:focus-visible img {
            transform: scale(1.035);
        }

    .video-detail__release-content {
        min-width: 0;
    }

    .video-detail__release-title {
        margin: 0 0 .75rem;
        font-family: var(--font-heading);
        font-size: clamp(1.8rem, 3vw, 2.7rem);
        line-height: 1;
    }

        .video-detail__release-title a {
            color: inherit;
            text-decoration: none;
        }

            .video-detail__release-title a:hover,
            .video-detail__release-title a:focus-visible {
                color: var(--color-accent-light);
            }

    .video-detail__release-description {
        display: -webkit-box;
        overflow: hidden;
        margin: 0;
        color: var(--color-text-muted);
        line-height: 1.65;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .video-detail__description {
        display: -webkit-box;
        overflow: hidden;
        margin: 0;
        color: var(--color-text-muted);
        line-height: 1.7;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .video-detail__description-wrap.is-expanded .video-detail__description {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .video-detail__description-toggle {
        display: none;
        margin-top: .8rem;
        padding: 0;
        border: 0;
        background: none;
        color: var(--color-accent-light);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .video-detail__description-wrap.is-overflowing .video-detail__description-toggle, .video-detail__description-wrap.is-expanded .video-detail__description-toggle {
    display: inline-block;
}

/* Shared journey link style */

.video-detail__description-toggle,
.video-detail__release-link {
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

    .video-detail__description-toggle:hover,
    .video-detail__description-toggle:focus-visible,
    .video-detail__release-link:hover,
    .video-detail__release-link:focus-visible {
        color: var(--color-text);
    }

.video-detail__release-link {
    display: none;
    margin-top: .8rem;
}

.video-detail__release-content.is-overflowing
.video-detail__release-link {
    display: inline-block;
}

/* Mobile */

@media (max-width: 767.98px) {

    .video-detail {
        width: calc(100% - 2rem);
        padding-top: 1.5rem;
    }

    .video-detail__header {
        margin-bottom: 1.25rem;
    }

    .video-detail__heading {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .video-detail__heading-copy {
        padding-top: 0;
    }

    .video-detail__header-meta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
        align-items: baseline;
    }

    .video-detail__published--desktop {
        display: none;
    }

    .video-detail__published--mobile {
        display: block;
        justify-self: end;
        margin: 0;
        font-size: .72rem;
        line-height: 1;
        white-space: nowrap;
    }

    .video-detail__breadcrumb {
        min-width: 0;
        margin: 0;
        line-height: 1;
    }

    .video-detail__title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .video-detail__info {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        margin-top: 2.5rem;
    }

    /* Video destinations first on mobile */
    .video-detail__platforms {
        order: 1;
    }

    .video-detail__release {
        order: 2;
    }

    .video-detail__release-body {
        grid-template-columns: 7rem minmax(0, 1fr);
        gap: 1.25rem;
    }

    .video-detail__release-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .video-detail__release-description {
        -webkit-line-clamp: 4;
    }
}

/* ==========================================================================
   Release detail
   ========================================================================== */

.release-detail {
    padding-top: 2.5rem;
}

.release-detail__hero {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.release-detail__artwork {
    margin-top: 2.4rem;
    position: relative;
}

    .release-detail__artwork img {
        display: block;
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

.release-detail__content {
    max-width: 42rem;
}

.release-detail__title {
    margin: 0.35rem 0 1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
}

.release-detail__description {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.release-detail__meta {
    display: grid;
    gap: 0.4rem;
    margin: 0 0 2rem;
}

.release-detail__meta-row {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: baseline;
    gap: 1rem;
}

.release-detail__meta dt {
    color: var(--color-accent-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.release-detail__meta dd {
    margin: 0;
    color: var(--color-text-muted);
}

.release-detail__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .release-detail__links .btn {
        gap: .6rem;
    }

.release-detail__platform-icon-wrap {
    position: relative;
    display: inline-block;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.release-detail__platform-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

/* Dark button → white icon */
.release-detail__links .release-detail__platform-icon--light {
    opacity: .78;
}

/* Black icon is hidden initially */
.release-detail__links .release-detail__platform-icon--dark {
    opacity: 0;
}

/* White button → hide white icon */
.release-detail__links .btn:hover .release-detail__platform-icon--light,
.release-detail__links .btn:focus-visible .release-detail__platform-icon--light {
    opacity: 0;
}

/* White button → show black icon */
.release-detail__links .btn:hover .release-detail__platform-icon--dark,
.release-detail__links .btn:focus-visible .release-detail__platform-icon--dark {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 .22rem rgba(216, 9, 54, .45)) drop-shadow(0 0 .45rem rgba(216, 9, 54, .18));
}

.release-detail__links .btn:hover img,
.release-detail__links .btn:focus-visible img {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 .25rem rgba(216, 9, 54, .55)) drop-shadow(0 0 .55rem rgba(216, 9, 54, .25));
}

.release-detail__section {
    margin-top: clamp(5rem, 9vw, 8rem);
}

.release-detail__section-title {
    margin: 0.35rem 0 2rem;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 0.95;
}

.release-detail__back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: clamp(2rem, 3vw, 3rem);
    color: var(--color-text-muted);
    font-size: .9rem;
    letter-spacing: .05em;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

    .release-detail__back:hover,
    .release-detail__back:focus-visible {
        color: var(--color-accent-light);
        transform: translateX(-.25rem);
    }

.release-detail__breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.release-detail__breadcrumb-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color .25s ease;
}

    .release-detail__breadcrumb-link:hover,
    .release-detail__breadcrumb-link:focus-visible {
        color: var(--color-text);
    }

.release-detail__breadcrumb-separator {
    color: rgba(255,255,255,.25);
}

.release-detail__breadcrumb-current {
    color: var(--color-accent-light);
}

.release-detail__platform-icon {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
    opacity: .78;
}

.release-detail__platform-icon-wrap {
    position: relative;
    display: inline-block;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.release-detail__platform-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.release-detail__platform-icon--light {
    opacity: .78;
}

.release-detail__platform-icon--dark {
    opacity: 0;
}

.release-detail__links .btn:hover .release-detail__platform-icon--light,
.release-detail__links .btn:focus-visible .release-detail__platform-icon--light {
    opacity: 0;
}

.release-detail__links .btn:hover .release-detail__platform-icon--dark,
.release-detail__links .btn:focus-visible .release-detail__platform-icon--dark {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 .22rem rgba(216, 9, 54, .45)) drop-shadow(0 0 .45rem rgba(216, 9, 54, .18));
}

@media (max-width: 767.98px) {

    .release-detail__artwork {
        margin-top: 0rem;
    }
}
/* ==========================================================================
   Release track list
   ========================================================================== */

.release-track-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.release-track {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.release-track__number {
    color: var(--color-accent-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    grid-column: 1;
}

.release-track__content h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    grid-column: 2;
    min-width: 0;
}

.release-track__isrc {
    display: block;
    margin-top: 0.2rem;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.release-track__duration {
    grid-column: 4;
    justify-self: end;
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}

.release-track__platforms {
    grid-column: 3;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .55rem;
    margin-top: 0;
}

.release-track__platform {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    opacity: .65;
    transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

    .release-track__platform img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .release-track__platform:hover,
    .release-track__platform:focus-visible {
        opacity: 1;
        transform: translateY(-1px);
        filter: drop-shadow(0 0 .25rem rgba(216, 9, 54, .55)) drop-shadow(0 0 .5rem rgba(216, 9, 54, .22));
    }

.platform-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.platform-link:hover .platform-icon,
.platform-link:focus-visible .platform-icon {
    opacity: 1;
    transform: translateY(-1px);
    filter: drop-shadow(0 0 4px var(--color-accent)) drop-shadow(0 0 10px var(--color-accent));
}

@media (max-width: 767.98px) {
    .release-track {
        grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    }

    .release-track__number {
        grid-column: 1;
        grid-row: 1;
    }

    .release-track__content {
        grid-column: 2;
        grid-row: 1;
    }

    .release-track__duration {
        grid-column: 3;
        grid-row: 1;
    }

    .release-track__platforms {
        grid-column: 2 / 4;
        grid-row: 2;
        margin-top: .5rem;
    }
}

/* ==========================================================================
   Release videos
   ========================================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(min(100%, 24rem), 1fr) );
    gap: 2rem;
}

/* ==========================================================================
   Press Room
   ========================================================================== */

.press-page {
    padding-top: 2.5rem;
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.press-page__header {
    max-width: 58rem;
    margin-bottom: clamp(4rem, 8vw, 7rem);
}


/* ==========================================================================
   Press hero
   ========================================================================== */

.press-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .95fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.press-hero__intro {
    min-width: 0;
}

.press-hero__eyebrow,
.press-hero__epk-eyebrow {
    margin-bottom: 1.25rem;
    color: var(--color-accent-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.press-page__title {
    max-width: 11ch;
    margin: 0 0 1.5rem;
    font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: .9;
}

.press-page__intro {
    max-width: 42rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}


/* ==========================================================================
   Press hero — EPK
   ========================================================================== */

.press-hero__epk {
    margin-top: 1.5rem;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--color-border);
    background: linear-gradient( 135deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .008) ), var(--color-surface);
}

.press-hero__epk-document-title {
    margin: .75rem 0 0;
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    line-height: .95;
}

.press-hero__epk-description {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.press-hero__epk-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.press-hero__epk-actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 1rem;
    margin-top: 2rem;
}

.press-hero__epk-actions .press-package-download {
    grid-column: 1 / -1;
    width: 100%;
}

/* ==========================================================================
   Press sections
   ========================================================================== */

.press-section {
    padding-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--color-border);
}

    .press-section + .press-section {
        margin-top: clamp(4rem, 8vw, 7rem);
    }

.press-section__heading {
    max-width: 48rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.press-section__title {
    margin: 0 0 1rem;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: .95;
}

.press-section__description {
    max-width: 40rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Press photos
   ========================================================================== */

.press-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.press-photo {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

    .press-photo:first-child {
        grid-column: span 2;
    }

.press-photo__image {
    display: block;
    overflow: hidden;
    background: #0b0b0b;
}

    .press-photo__image img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform .6s cubic-bezier(.22, 1, .36, 1);
    }

.press-photo:first-child .press-photo__image img {
    width: 100%;
    max-height: 42rem;
    object-fit: cover;
}

.press-photo__body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.5rem 1.75rem;
}

.press-photo__title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.press-photo__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1rem;
    margin-top: .8rem;
    color: var(--color-text-muted);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.press-photo .press-asset__download {
    margin-top: auto;
    padding-top: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {

    .press-photo:hover,
    .press-photo:focus-within {
        transform: translateY(-.3rem);
        box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .18);
    }

        .press-photo:hover .press-photo__image img,
        .press-photo:focus-within .press-photo__image img {
            transform: scale(1.025);
        }
}

/* ==========================================================================
   Press photo lightbox
   ========================================================================== */

.press-lightbox {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 1rem clamp(1rem, 3vw, 2rem) 1.5rem;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

    .press-lightbox.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.press-lightbox__content {
    display: grid;
    gap: 1rem;
    justify-items: center;
    max-width: 94vw;
    max-height: 100%;
}

.press-lightbox__image {
    display: block;
    max-width: 92vw;
    max-height: calc(100vh - 11rem);
    object-fit: contain;
    border: 1px solid var(--color-border);
}

.press-lightbox__download {
    min-width: 12rem;
}

/* ==========================================================================
   Shared press asset link
   ========================================================================== */

.press-asset__download {
    display: inline-block;
    width: fit-content;
    color: var(--color-accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

    .press-asset__download:hover,
    .press-asset__download:focus-visible {
        color: var(--color-text);
        transform: translateX(.2rem);
    }


/* ==========================================================================
   Logos & branding
   ========================================================================== */

.press-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.press-logo {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.press-logo__preview {
    display: grid;
    min-height: 18rem;
    padding: 2rem;
    place-items: center;
    background: linear-gradient( 135deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .005) ), #161616;
}

    .press-logo__preview img {
        display: block;
        width: 100%;
        max-width: 14rem;
        max-height: 14rem;
        object-fit: contain;
    }

.press-logo__body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.5rem;
}

.press-logo__title {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.05;
}

.press-logo__description {
    margin: .8rem 0 0;
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.press-logo__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {

    .press-logo:hover,
    .press-logo:focus-within {
        transform: translateY(-.25rem);
        box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .16);
    }
}


/* ==========================================================================
   Technical & booking
   ========================================================================== */

.press-document-list {
    display: grid;
    gap: 1.25rem;
}

.press-document {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border: 1px solid var(--color-border);
    background: linear-gradient( 135deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .006) ), var(--color-surface);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.press-document__content {
    min-width: 0;
}

.press-document__title {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: .95;
}

.press-document__description {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.press-document__actions {
    display: grid;
    grid-template-columns: auto auto;
    gap: .75rem;
    align-items: center;
}

.press-document__version {
    grid-column: 1 / -1;
    color: var(--color-text-muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: right;
    text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {

    .press-document:hover,
    .press-document:focus-within {
        transform: translateY(-.2rem);
        box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .14);
    }
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991.98px) {

    .press-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .press-hero__epk {
        margin-top: 0;
    }

    .press-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .press-document {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .press-document__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767.98px) {

    .press-page {
        padding-top: 1.5rem;
        padding-bottom: 5rem;
    }

    .press-page__header {
        margin-bottom: 4rem;
    }

    .press-hero {
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .press-page__title {
        max-width: 11ch;
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .press-hero__epk {
        margin-top: 0;
        padding: 1.5rem;
    }

    .press-hero__epk-title {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .press-hero__epk-actions {
        grid-template-columns: 1fr;
    }

        .press-hero__epk-actions .btn,
        .press-hero__epk-actions .press-package-download {
            grid-column: auto;
            width: 100%;
        }

    .press-section {
        padding-top: 3rem;
    }

        .press-section + .press-section {
            margin-top: 4rem;
        }

    .press-section__title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .press-photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-photo:first-child {
        grid-column: auto;
    }

        .press-photo:first-child .press-photo__image img {
            max-height: none;
        }

    .press-logo-grid {
        grid-template-columns: 1fr;
    }

    .press-logo__preview {
        min-height: 15rem;
    }

    .press-document {
        padding: 1.25rem;
    }

    .press-document__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .press-document__version {
        grid-column: 1 / -1;
    }

    .press-document__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .press-document__version {
        text-align: left;
    }
}

/* ==========================================================================
   Booking page
   ========================================================================== */

.booking-page {
    padding-top: 2.5rem;
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.booking-page__header {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.booking-page__title {
    max-width: 12ch;
    margin: .75rem 0 1.5rem;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: .9;
}

.booking-page__intro {
    min-width: 0;
}

.booking-page__lead {
    max-width: 38rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}

.booking-page__resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
}

.booking-page__resource-link {
    color: var(--color-accent-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

    .booking-page__resource-link:hover,
    .booking-page__resource-link:focus-visible {
        color: var(--color-text);
        transform: translateX(.2rem);
    }

.booking-page__meta {
    padding: 0 0 .5rem;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
}

/* ==========================================================================
   Booking live gallery
   ========================================================================== */

.booking-live {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #050505;
    color: var(--color-text);
    text-decoration: none;
    isolation: isolate;
}

.booking-live__images {
    position: absolute;
    inset: 0;
}

.booking-live__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    filter: brightness(.48) contrast(1.08) saturate(.85);
    transform: scale(1.035);
    transition: opacity 2.5s ease, transform 9s ease, filter 1.5s ease;
}

    .booking-live__image.is-active {
        opacity: 1;
        transform: scale(1);
    }

.booking-live__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .05) 38%, rgba(0, 0, 0, .72) 100% ), linear-gradient( 90deg, rgba(0, 0, 0, .35), transparent 50%, rgba(0, 0, 0, .15) );
    pointer-events: none;
}

.booking-live__light {
    position: absolute;
    z-index: 3;
    top: -35%;
    left: -45%;
    width: 90%;
    height: 170%;
    background: radial-gradient( ellipse at center, rgba(255, 255, 255, .17) 0%, rgba(255, 255, 255, .07) 30%, transparent 68% );
    opacity: .45;
    transform: rotate(16deg) translateX(0);
    animation: booking-live-light 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.booking-live__content {
    position: absolute;
    z-index: 4;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.booking-live__title {
    max-width: 16ch;
    margin-top: .45rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: .95;
}

.booking-live__link {
    margin-top: 1rem;
    color: var(--color-accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.booking-live:hover .booking-live__image.is-active,
.booking-live:focus-visible .booking-live__image.is-active {
    filter: brightness(.68) contrast(1.08) saturate(.95);
}

.booking-live:hover .booking-live__link,
.booking-live:focus-visible .booking-live__link {
    color: var(--color-text);
    transform: translateX(.25rem);
}

.booking-live:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 3px;
}

@keyframes booking-live-light {

    from {
        transform: rotate(16deg) translateX(-8%);
        opacity: .25;
    }

    to {
        transform: rotate(16deg) translateX(115%);
        opacity: .6;
    }
}

/* ==========================================================================
   Booking form section
   ========================================================================== */

.booking-form-section {
    display: block;
    padding-top: clamp(3rem, 5vw, 4rem);
    border-top: 1px solid var(--color-border);
}

.booking-form-section__heading {
    max-width: 42rem;
    margin-bottom: 2.5rem;
}

/*
.booking-form-section {
    display: grid;
    grid-template-columns: minmax(16rem, .7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 7vw, 7rem);
    padding-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--color-border);
}

.booking-form-section__heading {
    max-width: 28rem;
}
*/

.booking-form-section__title {
    margin: .75rem 0 1rem;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: .95;
}

.booking-form-section__description {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* ==========================================================================
   Booking form
   ========================================================================== */

.booking-form {
    min-width: 0;
}

.booking-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.booking-field {
    min-width: 0;
}

.booking-field--full {
    grid-column: 1 / -1;
}

.booking-field__label {
    display: block;
    margin-bottom: .55rem;
    color: var(--color-text-muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.booking-field__input {
    display: block;
    width: 100%;
    padding: .95rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: var(--color-surface);
    color: var(--color-text);
    font: inherit;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

    .booking-field__input:hover {
        border-color: rgba(255, 255, 255, .28);
    }

    .booking-field__input:focus {
        border-color: var(--color-accent);
        outline: none;
        background: #111;
        box-shadow: 0 0 0 1px var(--color-accent), 0 0 1.5rem rgba(216, 9, 54, .08);
    }

.booking-field__textarea {
    min-height: 12rem;
    resize: vertical;
}

.booking-field__input::placeholder {
    color: var(--color-text-muted);
    opacity: .65;
}

select.booking-field__input {
    cursor: pointer;
}

.booking-field__validation {
    display: block;
    min-height: 1.1rem;
    margin-top: .4rem;
    color: var(--color-accent-light);
    font-size: .72rem;
}

.booking-form__validation-summary {
    margin-bottom: 1.5rem;
    color: var(--color-accent-light);
}

    .booking-form__validation-summary:empty {
        display: none;
    }


/* ==========================================================================
   Booking form footer
   ========================================================================== */

.booking-form__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.booking-form__note {
    max-width: 28rem;
    margin: 0;
    color: var(--color-text-muted);
    font-size: .8rem;
    line-height: 1.6;
}

.booking-form__submit {
    flex: 0 0 auto;
}


/* ==========================================================================
   Booking success
   ========================================================================== */

.booking-success {
    max-width: 48rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--color-border);
    background: linear-gradient( 135deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .005) ), var(--color-surface);
}

.booking-success__title {
    margin: .75rem 0 1rem;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: .95;
}

.booking-success__text {
    max-width: 36rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.booking-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}


/* ==========================================================================
   Booking tablet
   ========================================================================== */

@media (max-width: 1199.98px) {
    .booking-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {

    .booking-page__header {
        grid-template-columns: 1fr;
    }

    .booking-page__meta {
        max-width: 24rem;
    }

    .booking-form-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   Booking mobile
   ========================================================================== */

@media (max-width: 767.98px) {

    .booking-page {
        padding-top: 1.5rem;
        padding-bottom: 5rem;
    }

    .booking-page__header {
        grid-template-columns: 1fr;
    }

    .booking-live {
        width: min(100%, 36rem);
    }

    .booking-page__title {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .booking-form-section {
        padding-top: 3rem;
    }

    .booking-form-section__title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .booking-form__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .booking-field--full {
        grid-column: auto;
    }

    .booking-form__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
    }

    .booking-form__submit {
        width: 100%;
    }

    .booking-field__input {
        padding: .85rem .9rem;
    }

    .booking-field__textarea {
        min-height: 10rem;
    }

    .booking-form-section__heading {
        margin-bottom: 2rem;
    }

    .booking-success {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Shop hero
   ========================================================================== */

.shop-page__header {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    padding-top: clamp(2rem, 3vw, 3rem);
    margin-bottom: clamp(2.5rem, 7vw, 4rem);
}

.shop-page__intro {
    min-width: 0;
}

.shop-page__title {
    max-width: 9ch;
    margin: .75rem 0 1.5rem;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .9;
}

.shop-page__lead {
    max-width: 36rem;
    margin: 0 0 2rem;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}

@media (max-width: 767.98px) {

    .shop-page__header {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 1.5rem;
    }

    .shop-page__intro .section-eyebrow {
        margin-bottom: .9rem;
    }
}

/* ==========================================================================
   Shop hero visual
   ========================================================================== */

.shop-hero-visual {
    margin-top: 2.5rem;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    text-decoration: none;
}

.shop-hero-visual__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease, filter .6s ease;
}

.shop-hero-visual__content {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1rem 1rem;
    background: linear-gradient( to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0) );
}

.shop-hero-visual__title {
    margin-top: .4rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: .95;
}

.shop-hero-visual__link {
    margin-top: 1rem;
    color: var(--color-accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.shop-hero-visual:hover .shop-hero-visual__image,
.shop-hero-visual:focus-visible .shop-hero-visual__image {
    transform: scale(1.025);
}

.shop-hero-visual:hover .shop-hero-visual__link,
.shop-hero-visual:focus-visible .shop-hero-visual__link {
    color: var(--color-text);
    transform: translateX(.25rem);
}

.shop-hero-visual:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 3px;
}

@media (max-width: 991.98px) {

    .shop-page__header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .shop-hero-visual {
        width: min(100%, 36rem);
    }
}

@media (max-width: 767.98px) {

    .shop-page__title {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .shop-page__lead {
        margin-bottom: 1.5rem;
    }

    .shop-hero-visual__content {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }
}

/* ==========================================================================
   Shop collection
   ========================================================================== */

.shop-collection {
    padding-top: clamp(2.5rem, 4vw, 4rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
    border-top: 1px solid var(--color-border);
}

    .shop-collection .section-header {
        margin-bottom: clamp(2rem, 4vw, 3.5rem);
    }

.shop-collection__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.shop-item {
    display: block;
    min-width: 0;
    color: var(--color-text);
    text-decoration: none;
}

.shop-item__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-surface);
}

    .shop-item__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease, filter .6s ease;
    }

.shop-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, .18), transparent 45% );
    pointer-events: none;
}

.shop-item__content {
    padding-top: 1.25rem;
}

.shop-item__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1;
}

.shop-item__description {
    max-width: 30rem;
    margin: .75rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.shop-item__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.shop-item:hover .shop-item__media img,
.shop-item:focus-visible .shop-item__media img {
    transform: scale(1.025);
}

.shop-item:hover .shop-item__link,
.shop-item:focus-visible .shop-item__link {
    color: var(--color-text);
    transform: translateX(.25rem);
}


/* ==========================================================================
   Shop collection — mobile
   ========================================================================== */

@media (max-width: 767.98px) {

    .shop-collection {
        padding-block: 4rem;
    }

    .shop-collection__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .shop-item__media {
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-label {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-control,
.form-select {
    min-height: 3.25rem;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .form-control:focus,
    .form-select:focus {
        color: var(--color-text);
        background: var(--color-surface);
        border-color: var(--color-accent);
        box-shadow: 0 0 0 3px rgba(201, 121, 50, 0.16);
    }

    .form-control::placeholder {
        color: #77736e;
    }


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-block: 3rem;
    color: var(--color-text-muted);
    background: rgba(8, 8, 8, 0.92);
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    line-height: 1.7;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .footer a {
        color: var(--color-text-muted);
    }

        .footer a:hover {
            color: var(--color-accent-light);
        }

.footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(10rem, 0.6fr));
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.footer__logo {
    display: inline-flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__puma {
    width: auto;
    height: 6rem;
    object-fit: contain;
}

.footer__wordmark {
    width: auto;
    height: 3rem;
    object-fit: contain;
    object-position: left center;
}

.footer__logo:hover {
    opacity: 0.82;
}

.footer__tagline {
    max-width: 24rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.35;
}

.footer__navigation,
.footer__social {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
}

    .footer__navigation a,
    .footer__social a {
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.footer__bottom {
    display: flex;
    margin-top: 3rem;
    padding-top: 1.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}


/* ==========================================================================
   Bootstrap overrides
   ========================================================================== */

.text-dark {
    color: var(--color-text) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.bg-white,
.bg-light {
    background: var(--color-background) !important;
}

.border-top {
    border-top: 1px solid var(--color-border) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--color-border) !important;
}

.box-shadow {
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.2) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--color-text-dark);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

button.accept-policy {
    font-size: 0.8rem;
    line-height: inherit;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-accent {
    color: var(--color-accent-light);
}

.text-muted-custom {
    color: var(--color-text-muted);
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.visually-hidden-focusable:focus {
    position: fixed !important;
    z-index: 9999;
    top: 1rem;
    left: 1rem;
    width: auto !important;
    height: auto !important;
    padding: 0.75rem 1rem !important;
    color: var(--color-text-dark);
    background: var(--color-accent-light);
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991.98px) {
    :root {
        --ambient-portrait-width: clamp(14rem, 35vw, 24rem);
    }

    .hero::before {
        background: linear-gradient( 90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.42) );
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 5rem;
        --header-height: 4.75rem;
    }

    body.menu-opening .site-menu::after,
    body.menu-open .site-menu::after {
        transform: translate( -50%, 9rem );
    }

    .site-container,
    .container,
    .navbar > .container,
    .navbar > .container-fluid,
    .hero__content {
        width: min( calc(100% - 2rem), var(--container-width) );
    }

    .music-header {
        padding-top: 0.5rem;
    }

    .video-card__thumbnail {
        aspect-ratio: 16 / 9;
    }

    .video-card__play {
        opacity: 0.88;
        transform: translate(-50%, -50%) scale(0.92);
    }

    body.menu-opening .menu-portrait-stage::after,
    body.menu-open .menu-portrait-stage::after {
        top: clamp(5.5rem, 14%, calc(50% - 14.5rem));
        left: 54%;
    }

    .menu-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    .site-menu__navigation a::before {
        width: 1rem;
        height: 1rem;
        margin-right: .75rem;
    }

    .navbar-brand {
        gap: 0.6rem;
    }

    .navbar-brand__puma {
        width: 3rem;
        height: 3rem;
        transform: translateY(2px);
    }

    .navbar-brand__wordmark {
        width: clamp(8rem, 38vw, 10rem);
        height: 2.1rem;
    }

    .hero__brand {
        position: absolute;
        right: .75rem;
        bottom: -.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: min(8rem, 29vw);
        max-width: none;
        gap: .4rem;
        pointer-events: none;
    }

    .hero__brand-puma,
    .hero__brand-wordmark {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero__actions {
        width: min(13rem, 52vw);
        max-width: none;
        align-items: stretch;
        flex-direction: column;
    }

        .hero__actions .btn {
            width: 100%;
        }

    .hero > .hero__eyebrow--mobile-top {
        position: absolute !important;
        z-index: 20;
        top: 1.25rem;
        left: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
        margin: 0;
        line-height: 1;
        letter-spacing: .1em;
        white-space: nowrap;
        transform: none;
        display: block;
        text-align: center;
    }

    .hero > .hero__content > .hero__eyebrow {
        display: none;
    }

    .hero__title,
    .hero__subtitle {
        max-width: calc(100% - 1rem);
    }

    .footer__logo {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }

    .footer__puma {
        height: 5rem;
    }

    .footer__wordmark {
        height: 2.5rem;
    }

    /*
       No fixed portrait on mobile.
    */

    .ambient-portrait {
        display: block;
        top: var(--header-height);
        bottom: 0;
        width: min(58vw, 24rem);
        right: -4.5rem;
        opacity: 0.22;
        -webkit-mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.2) 12%, #000 38%, #000 100% );
        mask-image: linear-gradient( to right, transparent 0%, rgba(0, 0, 0, 0.2) 12%, #000 38%, #000 100% );
    }

    .hero {
        min-height: calc(100svh - var(--header-height));
    }

    .hero__content {
        padding-top: 1.75rem;
        padding-bottom: 1.25rem;
    }

    .hero__title {
        max-width: 10ch;
    }

    .hero__subtitle {
        max-width: 24rem;
    }

    /*
       Mobile portrait belongs only to the hero and sits behind content.
    */

    .hero-portrait-mobile {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: min(58vw, 24rem);
        overflow: hidden;
        opacity: 0.32;
        pointer-events: none;
        -webkit-mask-image: linear-gradient( to right, transparent, #000 46% );
        mask-image: linear-gradient( to right, transparent, #000 46% );
    }

        .hero-portrait-mobile img,
        .hero-portrait-mobile .portrait-placeholder {
            width: 100%;
            height: 100%;
        }

        .hero-portrait-mobile img {
            object-fit: cover;
            object-position: left center;
        }

    /*
   Menu still uses two equal portrait halves.
   Mobile intentionally uses an overlapping reveal:
   Ralph slides out from behind Olivia.
*/

    .menu-portrait--primary {
        right: -4.5rem;
        width: min(58vw, 24rem);
        z-index: 1;
    }

    .menu-portrait--secondary {
        right: -50vw;
        width: 50vw;
        z-index: 2;
    }

    body.menu-opening .menu-portrait--primary,
    body.menu-open .menu-portrait--primary {
        right: 45vw;
        width: 54vw;
    }

    body.menu-opening .menu-portrait--secondary,
    body.menu-open .menu-portrait--secondary {
        right: -4vw;
        width: 50vw;
    }

    body.menu-closing .menu-portrait--primary {
        right: -4.5rem;
        width: min(58vw, 24rem);
    }

    body.menu-closing .menu-portrait--secondary {
        right: -50vw;
    }

    .site-menu__navigation {
        padding: 2rem 1.25rem;
        gap: .8rem;
    }

        .site-menu__navigation a {
            font-size: clamp(2rem, 8.5vw, 3.4rem);
            line-height: 1;
        }

    .site-section {
        background: transparent;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__navigation {
        grid-column: 1;
    }

    .footer__social {
        grid-column: 2;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .release-detail {
        padding-top: 1.5rem;
    }

    .release-detail__hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .release-detail__content {
        max-width: none;
    }

    .release-detail__title {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .release-track {
        display: grid;
        grid-template-columns: 3rem minmax(0, 1fr) auto auto;
        gap: 1rem;
        align-items: center;
        padding: 1.1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .release-track__platforms {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: .55rem;
        margin-top: 0;
    }

    .release-track__isrc {
        display: none;
    }
}

@media (max-width: 390px) {

    .release-track {
        grid-template-columns: 2.5rem 1fr auto;
    }

    .release-track__platforms {
        grid-column: 2 / 4;
        margin-top: .5rem;
    }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .booking-live__light {
        animation: none;
    }

    .booking-live__image {
        transition: none;
        transform: none;
    }
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.home-feature-grid__item {
    min-width: 0;
}

    .home-feature-grid__item > .card,
    .home-feature-grid__item > .event-card,
    .home-feature-grid__item > .gallery-card {
        height: 100%;
    }

.home-feature-grid__item--event .event-card__visual {
    aspect-ratio: 1;
}

.home-feature-grid .video-card .card-description__text {
    -webkit-line-clamp: 4;
}

.home-feature-grid .video-card__play {
    width: clamp(3rem, 4vw, 3.75rem);
    height: clamp(3rem, 4vw, 3.75rem);
}

/* Home: expandable teaser */
.home-feature-grid .event-card__link {
    display: none;
}

/* Live listing: teaser only, no expand toggle */
.live-page .card-description__toggle {
    display: none !important;
}

.live-page .event-card__link {
    -webkit-line-clamp: 4;
    display: inline-block;
}

.live-page__section--past .card-description__text {
    -webkit-line-clamp: 3;
}

.event-card__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}

    .event-card__link:hover,
    .event-card__link:focus-visible {
        color: var(--color-text);
        transform: translateX(.2rem);
    }

.card-meta,
.card-status {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-status {
    color: var(--color-accent-light);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .card-actions .btn img {
        width: 1rem;
        height: 1rem;
        object-fit: contain;
        flex: 0 0 auto;
    }

    .card-actions .btn {
        display: inline-flex;
        align-items: center;
        gap: .55rem;
    }

.card-action__icon-wrap {
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.card-action__icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.card-action__icon--light {
    opacity: .78;
}

.card-action__icon--dark {
    opacity: 0;
}

.card-actions .btn:hover .card-action__icon--light,
.card-actions .btn:focus-visible .card-action__icon--light {
    opacity: 0;
}

.card-actions .btn:hover .card-action__icon--dark,
.card-actions .btn:focus-visible .card-action__icon--dark {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 .22rem rgba(216, 9, 54, .45)) drop-shadow(0 0 .45rem rgba(216, 9, 54, .18));
}

.card-actions .btn:hover .card-action__icon,
.card-actions .btn:focus-visible .card-action__icon {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 .22rem rgba(216, 9, 54, .5)) drop-shadow(0 0 .45rem rgba(216, 9, 54, .2));
}

@media (max-width: 1199.98px) {
    .home-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-feature-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes videoPlayPulse {

    0% {
        transform: translate(-50%, -50%) scale(.92);
    }

    65% {
        transform: translate(-50%, -50%) scale(1.10);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes videoPlayGlow {

    0%,100% {
        box-shadow: 0 0 20px rgba(216,9,54,.45), 0 0 46px rgba(216,9,54,.22);
    }

    50% {
        box-shadow: 0 0 30px rgba(216,9,54,.70), 0 0 70px rgba(216,9,54,.38);
    }
}

/* ==========================================================================
   Error pages
   ========================================================================== */

.error-page {
    width: min(calc(100% - 3rem), 82rem);
    margin-inline: auto;
    padding-top: clamp(3rem, 8vw, 7rem);
    padding-bottom: clamp(5rem, 10vw, 9rem);
}

.error-page__code {
    margin: .5rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(8rem, 24vw, 20rem);
    font-weight: 400;
    line-height: .72;
}

.error-page__title {
    margin: 2rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
}

.error-page__description {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.error-page__link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-accent-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

    .error-page__link:hover,
    .error-page__link:focus-visible {
        color: var(--color-text);
        transform: translateX(.25rem);
    }

@media (max-width: 767.98px) {
    .error-page {
        width: calc(100% - 2rem);
        padding-top: 3rem;
        padding-bottom: 5rem;
    }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-page {
    width: min(calc(100% - 3rem), 82rem);
    margin-inline: auto;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.legal-page__header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.legal-page__title {
    max-width: 10ch;
    margin: .75rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    line-height: .88;
}

.legal-page__content {
    max-width: 52rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

    .legal-page__content section + section {
        margin-top: clamp(2.5rem, 5vw, 4rem);
        padding-top: clamp(2rem, 4vw, 3rem);
        border-top: 1px solid var(--color-border);
    }

    .legal-page__content h2 {
        margin: 0 0 1rem;
        color: var(--color-text);
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
    }

    .legal-page__content h3 {
        margin: 2rem 0 .75rem;
        color: var(--color-text);
        font-size: 1rem;
    }

    .legal-page__content p {
        margin: 0 0 1rem;
    }

    .legal-page__content a {
        color: var(--color-accent-light);
        text-decoration: none;
        transition: color .25s ease;
    }

        .legal-page__content a:hover,
        .legal-page__content a:focus-visible {
            color: var(--color-text);
        }

    .legal-page__content address {
        color: inherit;
        font-style: normal;
    }

@media (max-width: 767.98px) {
    .legal-page {
        width: calc(100% - 2rem);
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
}

/* Public Markdown rendering ------------------------------------------ */

.story-hero__lead > :first-child,
.press-hero__epk-description > :first-child,
.press-photo__description > :first-child,
.press-logo__description > :first-child,
.press-document__description > :first-child,
.shop-item__description > :first-child {
    margin-top: 0;
}

.story-hero__lead > :last-child,
.press-hero__epk-description > :last-child,
.press-photo__description > :last-child,
.press-logo__description > :last-child,
.press-document__description > :last-child,
.shop-item__description > :last-child {
    margin-bottom: 0;
}

/* Booking submission hardening --------------------------------------- */

.booking-rate-limit {
    display: grid;
    gap: .35rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(216, 9, 54, .32);
    border-radius: .7rem;
    background: rgba(216, 9, 54, .065);
}

.booking-rate-limit strong {
    color: var(--color-text);
}

.booking-rate-limit span {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.booking-form__submit:disabled,
.booking-form__submit.btn-primary:disabled {
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: var(--color-accent);
    --bs-btn-disabled-border-color: var(--color-accent);

    cursor: wait;
    color: #000;
    background: var(--color-accent);
    border-color: var(--color-accent);
    opacity: .72;
    transform: none;
}

