/* =========================================================
   BODO SCHOPF
   MAIN STYLESHEET
========================================================= */

:root {
    --bg: #080808;
    --bg-soft: #101010;

    --white: #f4f1ea;
    --text: #aaa69e;

    --gold: #b7975c;
    --gold-light: #d6bd83;

    --border: rgba(255, 255, 255, .10);
}


/* RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.bs-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: rgba(8,8,8,.12);
    backdrop-filter: blur(4px);

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.bs-header.is-scrolled {
    background: rgba(8,8,8,.88);

    backdrop-filter: blur(16px);

    border-color: rgba(183,151,92,.14);

    box-shadow: 0 12px 35px rgba(0,0,0,.25);
}


.bs-header-inner {
    width: calc(100% - 100px);
    max-width: 1700px;

    height: 100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: height .35s ease;
}

.bs-header.is-scrolled .bs-header-inner {
    height: 78px;
}

.bs-header.is-scrolled .bs-nav-logo {
    width: 240px;
}


/* LOGO */

/* =========================================================
   NAV LOGO
========================================================= */

.bs-logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.bs-nav-logo {
    width: 300px;
    max-width: 100%;
    height: auto;

    transition:
        width .35s ease,
        transform .35s ease,
        filter .35s ease;
}




/* HOVER */

.bs-logo:hover .bs-nav-logo {
    transform: scale(1.04);

    filter:
        brightness(1.12)
        drop-shadow(0 0 8px rgba(215, 181, 105, .45));
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-nav-logo {
        width: 210px;
    }

    .bs-header.is-scrolled .bs-nav-logo {
        width: 185px;
    }
}




/* NAVIGATION */

.bs-menu {
    display: flex;
    align-items: center;

    gap: 38px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.bs-menu a {
    position: relative;
    display: inline-block;

    padding: 12px 0;

    color: rgba(255,255,255,.62);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;

    text-transform: uppercase;

    transition: color .3s ease;
}

.bs-menu a:hover {
    color: #fff;
}

.bs-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 5px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .35s ease;
}

.bs-menu a:hover::after,
.bs-menu .current-menu-item > a::after,
.bs-menu .current_page_item > a::after {
    width:100%;
}

/* AKTIVE SEITE */

.bs-menu .current-menu-item > a,
.bs-menu .current_page_item > a {
    color: var(--gold-light);
    
}


/* MOBILE MENU TOGGLE - DESKTOP AUSBLENDEN */

.bs-menu-toggle {
    display: none;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.bs-hero-slider {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: #080808;
}


/* =========================================================
   SLIDES
========================================================= */

.bs-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.bs-slide.active {
    opacity: 1;

    visibility: visible;

    z-index: 2;
}


/* BACKGROUND IMAGE */

.bs-slide-bg {
    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1.05);

    transition: transform 7s ease;
}

.bs-slide.active .bs-slide-bg {
    transform: scale(1.12);
}


/* =========================================================
   OVERLAY
========================================================= */

.bs-slide-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.93) 0%,
            rgba(0,0,0,.72) 34%,
            rgba(0,0,0,.35) 60%,
            rgba(0,0,0,.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8,8,8,.85) 0%,
            transparent 32%
        );
}


/* =========================================================
   CONTENT
========================================================= */

.bs-slide-content {
    position: relative;

    z-index: 10;

    width: min(1500px, calc(100% - 180px));

    min-height: 100vh;

    margin: 0 auto;

    padding-top: 100px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .9s ease .35s,
        transform .9s ease .35s;
}

.bs-slide.active .bs-slide-content {
    opacity: 1;

    transform: translateY(0);
}


/* KICKER */

.bs-slide-kicker {
    display: block;

    margin-bottom: 28px;

    color: var(--gold-light);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 6px;

    text-transform: uppercase;
}


/* TITLES */

.bs-slide h1,
.bs-slide h2 {
    margin: 0;

    max-width: 1000px;

    color: #fff;

    font-size: clamp(85px, 10vw, 180px);

    font-weight: 800;

    line-height: .78;

    letter-spacing: -7px;

    text-transform: uppercase;
}

.bs-slide h1 span,
.bs-slide h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.70);
}


/* DESCRIPTION */

.bs-slide-content p {
    max-width: 650px;

    margin: 42px 0 0;

    color: rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.7;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.bs-slider-nav {
    position: absolute;

    left: 50%;

    bottom: 42px;

    z-index: 20;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 28px;
}


/* ARROWS */

.bs-slider-prev,
.bs-slider-next {
    width: 44px;

    height: 44px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.20);

    background: rgba(0,0,0,.18);

    color: rgba(255,255,255,.75);

    font-size: 17px;

    cursor: pointer;

    transition: .3s ease;
}

.bs-slider-prev:hover,
.bs-slider-next:hover {
    border-color: var(--gold);

    color: var(--gold-light);
}


/* DOTS */

.bs-slider-dots {
    display: flex;

    align-items: center;

    gap: 12px;
}

.bs-slider-dots button {
    width: 26px;

    height: 2px;

    padding: 0;

    border: 0;

    background: rgba(255,255,255,.25);

    cursor: pointer;

    transition: .35s ease;
}

.bs-slider-dots button.active {
    width: 48px;

    background: var(--gold);
}


/* =========================================================
   COUNTER
========================================================= */

.bs-slider-counter {
    position: absolute;

    right: 50px;

    bottom: 48px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.38);

    font-size: 9px;

    letter-spacing: 3px;
}

.bs-current-slide {
    color: var(--gold-light);

    font-size: 13px;
}

.bs-counter-line {
    width: 50px;

    height: 1px;

    background: rgba(255,255,255,.25);
}


/* =========================================================
   OPTIONAL: VERY SUBTLE GRAIN / VIGNETTE
========================================================= */

.bs-hero-slider::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            transparent 45%,
            rgba(0,0,0,.30) 100%
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bs-slide-content {
        width: calc(100% - 70px);
    }

    .bs-slide h1,
    .bs-slide h2 {
        font-size: clamp(72px, 13vw, 130px);

        letter-spacing: -5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-hero-slider,
    .bs-slide,
    .bs-slide-content {
        min-height: 100svh;
    }

    .bs-slide-bg {
        background-position: 65% center;
    }

    .bs-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.88) 0%,
                rgba(0,0,0,.58) 65%,
                rgba(0,0,0,.20) 100%
            ),
            linear-gradient(
                0deg,
                rgba(8,8,8,.90) 0%,
                rgba(8,8,8,.15) 45%,
                rgba(8,8,8,.15) 100%
            );
    }

    .bs-slide-content {
        width: calc(100% - 40px);

        padding-top: 80px;

        justify-content: center;
    }

    .bs-slide-kicker {
        margin-bottom: 20px;

        font-size: 9px;

        letter-spacing: 3px;
    }

    .bs-slide h1,
    .bs-slide h2 {
        max-width: 100%;

        font-size: clamp(58px, 17vw, 90px);

        line-height: .83;

        letter-spacing: -3px;
    }

    .bs-slide h2.bs-slide-title-small {
    font-size: 13vw;
}

    .bs-slide-content p {
        max-width: 90%;

        margin-top: 30px;

        font-size: 10px;

        line-height: 1.7;

        letter-spacing: 2px;
    }

    .bs-slider-nav {
        left: 20px;

        bottom: 28px;

        transform: none;

        gap: 15px;
    }

    .bs-slider-prev,
    .bs-slider-next {
        width: 38px;

        height: 38px;
    }

    .bs-slider-dots button {
        width: 16px;
    }

    .bs-slider-dots button.active {
        width: 32px;
    }

    .bs-slider-counter {
        right: 20px;

        bottom: 37px;
    }

    .bs-counter-line {
        width: 25px;
    }

}


/* =========================================================
   HERO SIDE TEXT
========================================================= */

.bs-hero-side {
    position: absolute;

    right: -25px;
    top: 50%;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 20px;

    transform: translateY(-50%) rotate(90deg);
}

.bs-hero-side span {
    color: rgba(255,255,255,.40);

    font-size: 8px;

    letter-spacing: 4px;
}

.bs-scroll-line {
    width: 70px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   EST YEAR
========================================================= */

.bs-hero-year {
    position: absolute;

    left: 50px;
    bottom: 40px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 12px;
}

.bs-hero-year span {
    color: rgba(255,255,255,.35);

    font-size: 9px;

    letter-spacing: 2px;
}

.bs-hero-year strong {
    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .bs-header-inner {
        width: calc(100% - 40px);
        height: 80px;
    }

     .bs-nav {
        display: none;

        position: fixed;

        top: 80px;
        left: 0;

        width: 100%;
        height: calc(100vh - 80px);

        padding: 28px 32px 40px;

        background:
            radial-gradient(
                circle at 80% 25%,
                rgba(183,151,92,.07),
                transparent 35%
            ),
            rgba(8,8,8,.98);

        overflow-y: auto;

        border-top: 1px solid rgba(183,151,92,.15);
    }

    .bs-nav.is-open {
        display: block;
    }

    /* MENÜ */

    .bs-menu {
        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        width: 100%;

        margin: 0;
        padding: 0;
    }

    .bs-menu li {
        width: 100%;

        border-bottom: 1px solid rgba(255,255,255,.055);
    }

     .bs-menu a {
        display: flex;
        align-items: center;

        width: 100%;

        padding: 15px 0;

        color: rgba(255,255,255,.72);

        font-size: 15px;
        font-weight: 800;

        line-height: 1;

        letter-spacing: 2.2px;

        text-transform: uppercase;

        transition:
            color .3s ease,
            padding-left .3s ease;
    }

    .bs-menu-toggle {
        display: block;

        width: 34px;

        padding: 0;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .bs-menu-toggle span {
        display: block;

        width: 100%;
        height: 1px;

        margin: 8px 0;

        background: #fff;

        transition: .3s ease;
    }

    .bs-menu-toggle.is-open span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .bs-menu-toggle.is-open span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }

}

/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.bs-container {
    width: min(1420px, calc(100% - 100px));

    margin: 0 auto;
}


/* =========================================================
   ABOUT / LEGACY
========================================================= */

.bs-about {
    position: relative;

    padding: 180px 0 130px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}


/* HUGE BACKGROUND TYPOGRAPHY */

.bs-section-word-about {
    top: 65px;
    left: 50%;

    transform: translateX(-50%);

    text-align: center;
}


/* =========================================================
   GRID
========================================================= */

.bs-about-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 130px;

    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.bs-about-visual {
    position: relative;
}


.bs-about-image {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(183, 151, 92, .30);
}

/* dezenter Lichtschein hinter dem Bild */

.bs-about-image::before {
    content: "";

    position: absolute;
    z-index: -1;

    /* etwas größer als das eigentliche Bild */
    inset: -45px;

    background:

        /* GLOW RECHTS OBEN */
        radial-gradient(
            circle at top right,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        ),

        /* GLOW LINKS UNTEN */
        radial-gradient(
            circle at bottom left,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        );

    filter: blur(18px);

    pointer-events: none;
}

.bs-about-visual::after {
    content: "";

    position: absolute;
    z-index: 5;

    inset: -10px;

    background:

        /* LINKS OBEN - horizontal */
        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 75px 1px no-repeat,

        /* LINKS OBEN - vertikal */
        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 1px 75px no-repeat,


        /* RECHTS UNTEN - horizontal */
        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 75px 1px no-repeat,

        /* RECHTS UNTEN - vertikal */
        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 1px 75px no-repeat;

    pointer-events: none;
}




.bs-about-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(8,8,8,.65) 0%,
            transparent 45%
        );

    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 38px),
        calc(100% - 38px) 100%,
        0 100%
    );

    pointer-events: none;
}


.bs-about-image img {
    width: 100%;

    height: 680px;

    object-fit: cover;

    object-position: center;

    filter:
        grayscale(75%)
        contrast(1.06);

    transition:
        filter .7s ease,
        transform .7s ease;
}


.bs-about-image:hover img {
    filter:
        grayscale(25%)
        contrast(1.04);
}


/* =========================================================
   BADGE
========================================================= */

.bs-about-badge {
    position: absolute;

    right: 420px;
    bottom: -20px;

    z-index: 5;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(183,151,92,.50);

    border-radius: 50%;

    background:
        rgba(8,8,8,.88);

    backdrop-filter:
        blur(8px);

    text-align: center;
}


.bs-about-badge::before {
    content: "";

    position: absolute;

    inset: 7px;

    border:
        1px solid rgba(183,151,92,.18);

    border-radius: 50%;
}


.bs-about-badge span {
    color:
        rgba(255,255,255,.42);

    font-size: 7px;

    letter-spacing: 3px;
}


.bs-about-badge strong {
    margin: 6px 0;

    color: var(--gold-light);

    font-size: 25px;

    letter-spacing: 2px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.bs-section-label {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;

    color: var(--gold-light);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;
}


.bs-section-label > span {
    width: 55px;
    height: 1px;

    background: var(--gold);
}


.bs-about-content h2 {
    margin: 0 0 38px;

    color: #fff;

    font-size:
        clamp(65px, 6vw, 105px);

    font-weight: 800;

    line-height: .82;

    letter-spacing: -5px;

    text-transform: uppercase;
}


.bs-about-content h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


.bs-about-lead {
    max-width: 650px;

    margin: 0 0 30px;

    color: #fff;

    font-size: 20px;

    line-height: 1.5;

    letter-spacing: .5px;
}

.bs-about-lead strong {
    color: var(--gold-light);

    font-weight: 500;
}


.bs-about-copy {
    max-width: 620px;

    margin: 0 0 18px;

    color: rgba(255,255,255,.50);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT LINK
========================================================= */

.bs-about-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 24px;

    margin-top: 25px;
    padding-bottom: 9px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-about-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        rgba(183,151,92,.35);
}


.bs-about-link i {
    font-style: normal;

    font-size: 18px;

    transition:
        transform .3s ease;
}


.bs-about-link:hover i {
    transform: translateX(8px);
}


/* =========================================================
   CAREER FACTS
========================================================= */

.bs-career-facts {
    position: relative;

    z-index: 2;

    margin-top: 140px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid rgba(183, 151, 92, .30);

   
}


.bs-career-item {
    position: relative;

    min-height: 150px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    border-right: 1px solid rgba(183, 151, 92, .30);

    overflow: hidden;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.bs-career-item::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(183,151,92,.22),
            rgba(183,151,92,.08) 35%,
            transparent 72%
        );

    opacity: 0;

    transition: opacity .4s ease;

    pointer-events: none;
}

.bs-career-item:hover {
    transform: translateY(0);

    background: rgba(183,151,92,.045);

    border-color: rgba(183,151,92,.28);

    box-shadow:
        0 18px 45px rgba(0,0,0,.30),
        inset 0 0 35px rgba(183,151,92,.05);
}

.bs-career-item:hover strong {
    color: #ead39d;

    transform: translateY(-2px);
}

.bs-career-item:hover span {
    color: rgba(255,255,255,.62);
}

.bs-career-item strong,
.bs-career-item span {
    position: relative;
    z-index: 2;

    transition:
        color .35s ease,
        transform .35s ease;
}

.bs-career-item:hover::before {
    opacity: 1;
}


.bs-career-item:last-child {
    border-right: 0;
}


.bs-career-item strong {
    color: var(--gold-light);

    font-size: 38px;

    font-weight: 700;

    line-height: 1;
}


.bs-career-item span {
    color:
        rgba(255,255,255,.40);

    font-size: 15px;
    font-weight: 600;

    line-height: 1.7;

    letter-spacing: 3px;
}


/* =========================================================
   ABOUT TABLET
========================================================= */

@media (max-width: 1100px) {

    .bs-about-grid {
        gap: 70px;
    }


    .bs-about-image img {
        height: 600px;
    }


    .bs-about-content h2 {
        font-size:
            clamp(58px, 7vw, 85px);
    }


    .bs-career-item {
        padding:
            30px 20px;

        gap: 14px;
    }


    .bs-career-item strong {
        font-size: 30px;
    }

}


/* =========================================================
   ABOUT MOBILE
========================================================= */

@media (max-width: 800px) {

    .bs-container {
        width:
            calc(100% - 40px);
    }


    .bs-about {
        padding:
            70px 0 80px;
    }


    .bs-about-word {
        top: 50px;

        font-size: 25vw;

        letter-spacing: -5px;
    }


    .bs-about-grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }


    .bs-about-image {
        margin-left: 0px;
    }


    .bs-about-image::before {
        left: -15px;
        top: 15px;
    }


    .bs-about-image img {
        height: 580px;
    }


    .bs-about-badge {
    left: 25px;
    right: auto;
    bottom: -25px;

    width: 105px;
    height: 105px;
}


    .bs-about-content h2 {
        font-size:
            clamp(58px, 17vw, 90px);

        letter-spacing: -3px;
    }


    .bs-about-lead {
        font-size: 18px;
    }


    .bs-career-facts {
        margin-top: 45px;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bs-career-item {
        min-height: 125px;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }


    .bs-career-item:nth-child(2) {
        border-right: 0;
    }


    .bs-career-item:nth-child(3),
    .bs-career-item:nth-child(4) {
        border-bottom: 0;
    }

    /* MOBILE ABOUT - GOLD CORNERS */

.bs-about-visual::before,
.bs-about-visual::after {
    content: "";
    position: absolute;
    z-index: 6;

    width: 58px;
    height: 58px;

    pointer-events: none;
}


/* KLAMMER LINKS OBEN */

.bs-about-visual::before {
    top: -5px;
    left: -5px;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);

    background: none;
}


/* KLAMMER RECHTS UNTEN */

.bs-about-visual::after {
    inset: auto;

    right: -5px;
    bottom: -5px;

    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    background: none;
}



}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bs-about-image img {
        height: 470px;
    }


    .bs-career-item {
        padding: 25px 12px;

        gap: 10px;
    }


    .bs-career-item strong {
        font-size: 25px;
    }


    .bs-career-item span {
        font-size: 7px;

        letter-spacing: 2px;
    }

}

/* =========================================================
   SELECTED CAREER
========================================================= */

.bs-career {
    position: relative;

    padding: 150px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(183, 151, 92, .08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #151411 0%,
            #11110f 45%,
            #0d0d0c 100%
        );

    border-top: 1px solid rgba(183, 151, 92, .14);

    overflow: hidden;
}

.b s-career::before {
    content: "";

    position: absolute;

    top: 0;
    right: 12%;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(183, 151, 92, .18),
        transparent
    );

    pointer-events: none;
}


/* HEAD */

.bs-career-head {
    max-width: 900px;

    margin-bottom: 90px;
}


.bs-career-head h2 {
    margin: 25px 0 30px;

    color: #fff;

    font-size: clamp(70px, 8vw, 135px);

    font-weight: 800;

    line-height: .80;

    letter-spacing: -7px;

    text-transform: uppercase;
}


.bs-career-head h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);
}


.bs-career-head p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 20px;

    line-height: 1.9;
}


/* =========================================================
   CAREER LIST
========================================================= */

.bs-career-list {
    border-top:
        1px solid rgba(183, 151, 92, .30);
}


.bs-career-row {
    position: relative;

    min-height: 125px;

    padding: 0 25px;

    display: grid;

    grid-template-columns:
        80px
        1fr
        280px
        50px;

    align-items: center;

    border-bottom:
        1px solid rgba(183, 151, 92, .30);

    overflow: hidden;

    transition:
        padding .35s ease,
        background .35s ease;
}


/* HOVER BACKGROUND */

.bs-career-row::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform: translateX(-100%);

    transition:
        transform .5s ease;
}


.bs-career-row:hover::before {
    transform: translateX(0);
}


.bs-career-row:hover {
    padding-left: 40px;
}


/* INDEX */

.bs-career-index {
    position: relative;

    z-index: 2;

    color: rgba(255,255,255,.25);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* NAME */

.bs-career-name {
    position: relative;

    z-index: 2;

    color: #fff;

    font-size:
        clamp(28px, 3.2vw, 55px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2px;

    text-transform: uppercase;

    transition:
        color .35s ease,
        transform .35s ease;
}


.bs-career-row:hover .bs-career-name {
    color: var(--gold-light);

    transform: translateX(8px);
}


/* META */

.bs-career-meta {
    position: relative;

    z-index: 2;

    color: rgba(255,255,255,.35);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* ARROW */

.bs-career-arrow {
    position: relative;

    z-index: 2;

    color: rgba(255,255,255,.35);

    font-size: 22px;

    text-align: right;

    transition:
        color .35s ease,
        transform .35s ease;
}


.bs-career-row:hover .bs-career-arrow {
    color: var(--gold-light);

    transform:
        translate(4px, -4px);
}


/* =========================================================
   FOOTER
========================================================= */

.bs-career-footer {
    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.bs-career-footer > span {
    color: rgba(255,255,255,.25);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 4px;
}


.bs-career-footer a {
    display: flex;

    align-items: center;

    gap: 20px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-career-footer i {
    font-style: normal;

    font-size: 18px;

    transition:
        transform .3s ease;
}


.bs-career-footer a:hover i {
    transform: translateX(7px);
}

.bs-footer-socials {
    justify-self:center;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:24px;

    margin:0;
}

.bs-footer-socials a {
    display:flex;
    align-items:center;
    justify-content:center;

    color:rgba(255,255,255,.45);

    font-size:17px;

    transition:
        color .35s ease,
        transform .35s ease,
        text-shadow .35s ease;
}

.bs-footer-socials a:hover {
    color:var(--gold-light);

    transform:translateY(-3px);

    text-shadow:0 0 18px rgba(183,151,92,.45);
}

.bs-footer-socials svg {
    width:20px;
    height:20px;

    fill:currentColor;
}


/* =========================================================
   CAREER TABLET
========================================================= */

@media (max-width: 1000px) {

    .bs-career {
        padding: 110px 0;
    }


    .bs-career-row {
        grid-template-columns:
            60px
            1fr
            210px
            40px;
    }


    .bs-career-meta {
        letter-spacing: 2px;
    }

}


/* =========================================================
   CAREER MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-career {
        padding: 80px 0;
    }


    .bs-career-head {
        margin-bottom: 60px;
    }


    .bs-career-head h2 {
        font-size:
            clamp(58px, 17vw, 90px);

        letter-spacing: -4px;
    }


    .bs-career-row {
        min-height: 105px;

        padding: 0 10px;

        grid-template-columns:
            40px
            1fr
            30px;
    }


    .bs-career-row:hover {
        padding-left: 15px;
    }


    .bs-career-name {
        font-size: clamp(20px, 5.5vw, 34px);
        letter-spacing: -1px;
    }


    .bs-career-meta {
        display: none;
    }


    .bs-career-index {
        font-size: 12px;
    }


    .bs-career-arrow {
        font-size: 18px;
    }


    .bs-career-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

}

/* =========================================================
   GLOBAL SECTION BACKGROUND WORD
========================================================= */

.bs-section-word {
    position: absolute;

    z-index: 0;

    width: 100%;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.035);

    font-size: clamp(110px, 14vw, 260px);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -10px;

    white-space: nowrap;

    pointer-events: none;

    user-select: none;
}

.bs-section-word-music-people {
    top:65px;
    left:50%;

    transform:translateX(-50%);

    text-align:center;
}

.bs-section-word-career {
    top: 70px;
    left: 50%;

    transform: translateX(-50%);

    text-align: center;
}

.bs-career .bs-container {
    position: relative;
    z-index: 2;
}




/* =========================================================
   LATEST NEWS
========================================================= */

.bs-news {
    position: relative;

    padding: 150px 0 150px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}


/* BIG BODO SCHOPF */

.bs-section-word-news {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


/* Keep content above background word */

.bs-news .bs-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   NEWS HEADER
========================================================= */

.bs-news-head {
    margin-bottom: 80px;
}

.bs-news-lead {
    max-width: 650px;

    margin: 35px 0 0;

    color: #fff;

    font-size: 21px;

    line-height: 1.5;

    letter-spacing: .5px;
}

.bs-news-lead strong {
    color: var(--gold-light);

    font-weight: 500;
}


.bs-news-head-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 80px;

    align-items: end;
}


.bs-news-head h2 {
    margin: 25px 0 30px;

    color: #fff;

    font-size:
        clamp(70px, 8vw, 130px);

    font-weight: 800;

    line-height: .80;

    letter-spacing: -7px;

    text-transform: uppercase;
}


.bs-news-head h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);
}


.bs-news-head p {
    max-width: 580px;

    margin: 0 0 8px;

    color: rgba(255,255,255,.42);

    font-size: 20px;

    line-height: 1.9;
}


/* =========================================================
   NEWS GRID
========================================================= */

/* =========================================================
   NEWS SECTION COUNT
========================================================= */
.bs-news-section-head {
    margin-bottom:70px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;
}

.bs-news-section-count {
    color:rgba(255,255,255,.16);

    font-size:72px;
    font-weight:800;
    line-height:.8;
    letter-spacing:-4px;

    text-align:right;
}

.bs-news-section-count span {
    display:block;

    margin-top:12px;

    color:rgba(255,255,255,.35);

    font-size:18px;
    font-weight:700;
    line-height:1;
    letter-spacing:3px;

    text-transform:uppercase;
}

.bs-news-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 50px;
}


/* =========================================================
   NEWS CARD
========================================================= */

.bs-news-card {
    min-width: 0;
}


.bs-news-card-link {
    display: block;

    height: 100%;
}


/* IMAGE */

.bs-news-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #111;
    border: 1px solid rgba(183, 151, 92, .30);
}


.bs-news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .8s ease;

    
}


.bs-news-card:hover .bs-news-image img {
    transform: scale(1.06);

    filter:
        brightness(.85)
        contrast(1.05);
    
}


/* IMAGE OVERLAY */

.bs-news-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.65) 0%,
            transparent 55%
        );

    pointer-events: none;
}


/* ARROW */

.bs-news-arrow {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 3;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.25);

    background:
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(8px);

    color: #fff;

    font-size: 18px;

    opacity: 0;

    transform:
        translate(-6px, 6px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        border-color .35s ease;
}


.bs-news-card:hover .bs-news-arrow {
    opacity: 1;

    transform:
        translate(0,0);

    border-color:
        rgba(183,151,92,.70);
}


/* =========================================================
   NEWS CONTENT
========================================================= */

.bs-news-content {
    padding: 25px 3px 0;
}


.bs-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255,255,255,.55);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.bs-news-meta-line {
    width: 30px;
    height: 1px;

    background: var(--gold);
}


.bs-news-content h3 {
    margin: 0 0 18px;

    color: #fff;

    font-size:
        clamp(22px, 2vw, 31px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    text-transform: uppercase;

    transition:
        color .3s ease;
}


.bs-news-card:hover h3 {
    color: var(--gold-light);
}


.bs-news-content p {
    margin: 0 0 22px;

    color:
        rgba(255,255,255,.42);

    font-size: 13px;

    line-height: 1.75;
}


/* READ STORY */

.bs-news-read {
    position: relative;

    display: inline-block;

    padding-bottom: 6px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-news-read::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        rgba(183,151,92,.35);

    transform-origin: left;

    transition:
        transform .35s ease;
}


.bs-news-card:hover .bs-news-read::after {
    transform: scaleX(.45);
}


/* =========================================================
   ALL NEWS
========================================================= */

.bs-news-footer {
    margin-top: 65px;

    display: flex;

    justify-content: flex-end;
}


.bs-news-all {
    display: inline-flex;

    align-items: center;

    gap: 22px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-news-all i {
    font-style: normal;

    font-size: 19px;

    transition:
        transform .3s ease;
}


.bs-news-all:hover i {
    transform:
        translateX(7px);
}


/* NO POSTS */

.bs-no-news {
    grid-column: 1 / -1;

    color:
        rgba(255,255,255,.45);
}


/* =========================================================
   NEWS TABLET
========================================================= */

@media (max-width: 1100px) {

    .bs-news {
        padding: 110px 0;
    }


    .bs-news-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            55px 25px;
    }


    .bs-news-head-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .bs-news-head p {
        max-width: 600px;
    }

}


/* =========================================================
   NEWS MOBILE
========================================================= */

@media (max-width: 650px) {

    .bs-news {
        padding: 70px 0;
    }


    .bs-section-word-news {
        top: 45px;
        right: -80px;
    }


    .bs-news-head {
        margin-bottom: 55px;
    }


    .bs-news-head h2 {
        font-size:
            clamp(58px, 17vw, 90px);

        letter-spacing: -4px;
    }


    .bs-news-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .bs-news-image {
        aspect-ratio: 16 / 11;
    }


    .bs-news-content h3 {
        font-size: 28px;
    }


    .bs-news-footer {
        justify-content: flex-start;

        margin-top: 50px;
    }

}

/* =========================================================
   ENDORSEMENTS
========================================================= */

.bs-endorsements {
    position: relative;

    padding: 160px 0 120px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(183,151,92,.07),
            transparent 32%
        ),
        #11110f;

    border-top: 1px solid rgba(255,255,255,.06);
}


/* BIG BACKGROUND WORD */

.bs-section-word-endorsements {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


/* CONTENT ABOVE WORD */

.bs-endorsements .bs-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.bs-endorsements-head {
    max-width: 900px;

    margin-bottom: 70px;
}


.bs-endorsements-head h2 {
    margin: 25px 0 0;

    color: #fff;

    font-size: clamp(70px, 8vw, 125px);

    font-weight: 800;

    line-height: .80;

    letter-spacing: -7px;

    text-transform: uppercase;
}


.bs-endorsements-head h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);
}


.bs-endorsements-lead {
    max-width: 650px;

    margin: 35px 0 30px;

    color: #fff;

    font-size: 20px;

    line-height: 1.5;

    letter-spacing: .5px;
}


.bs-endorsements-lead strong {
    color: var(--gold-light);

    font-weight: 500;
}


/* =========================================================
   LOGO GRID
========================================================= */

/* =========================================================
   ENDORSEMENT MARQUEE
========================================================= */

.bs-endorsement-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 30px 0;

    border-top: 1px solid rgba(183, 151, 92, .30);
    border-bottom: 1px solid rgba(183, 151, 92, .30);
}


/* FADE LEFT / RIGHT */

.bs-endorsement-marquee::before,
.bs-endorsement-marquee::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 130px;

    z-index: 10;

    pointer-events: none;
}

.bs-endorsement-marquee::before {
    left: 0;

    background: linear-gradient(
        90deg,
        #11110f 0%,
        rgba(17,17,15,.85) 30%,
        transparent 100%
    );
}

.bs-endorsement-marquee::after {
    right: 0;

    background: linear-gradient(
        270deg,
        #11110f 0%,
        rgba(17,17,15,.85) 30%,
        transparent 100%
    );
}


/* =========================================================
   MOVING TRACK
========================================================= */

.bs-endorsement-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: bsEndorsementScroll 24s linear infinite;

    will-change: transform;
}


/* PAUSE ON HOVER */

.bs-endorsement-marquee:hover .bs-endorsement-track {
    animation-play-state: paused;
}


/* =========================================================
   LOGO ITEM
========================================================= */

.bs-endorsement-logo {
    position: relative;

    width: 420px;
    height: 170px;

    flex: 0 0 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-right: 1px solid rgba(255,255,255,.07);

    background: transparent;

    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* GOLD GLOW */

.bs-endorsement-logo::before {
    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 100%,
        rgba(183,151,92,.22),
        rgba(183,151,92,.08) 35%,
        transparent 72%
    );

    opacity: 0;

    transition: opacity .4s ease;

    pointer-events: none;
}


/* HOVER */

.bs-endorsement-logo:hover {
    background: rgba(183,151,92,.045);

    border-color: rgba(183,151,92,.28);

    box-shadow:
        inset 0 0 35px rgba(183,151,92,.06);
}

.bs-endorsement-logo:hover::before {
    opacity: 1;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.bs-endorsement-logo img {
    position: relative;

    z-index: 2;

    width: auto;
    height: auto;

    max-width: 220px;
    max-height: 90px;

    object-fit: contain;

    filter:
        grayscale(100%)
        brightness(1.55);

    opacity: .65;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}

.bs-endorsement-logo:hover img {
    filter:
        grayscale(0%)
        brightness(1.05);

    opacity: 1;

    transform: scale(1.04);
}


/* =========================================================
   ENDLESS ANIMATION
========================================================= */

@keyframes bsEndorsementScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bs-endorsement-logo {
        width: 330px;
        flex-basis: 330px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bs-endorsement-marquee {
        padding: 20px 0;
    }

    .bs-endorsement-marquee::before,
    .bs-endorsement-marquee::after {
        width: 55px;
    }

    .bs-endorsement-logo {
        width: 270px;
        height: 135px;

        flex-basis: 270px;
    }

    .bs-endorsement-logo img {
        max-width: 170px;
        max-height: 70px;
    }

    .bs-endorsement-track {
        animation-duration: 20s;
    }

}


/* =========================================================
   ENDLESS ANIMATION
========================================================= */

@keyframes bsEndorsementScroll {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bs-endorsement-logo {
        width: 330px;
        flex-basis: 330px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bs-endorsement-marquee {
        padding: 20px 0;
    }


    .bs-endorsement-marquee::before,
    .bs-endorsement-marquee::after {
        width: 55px;
    }


    .bs-endorsement-logo {
        width: 270px;
        height: 135px;

        flex-basis: 270px;
    }


    .bs-endorsement-logo img {
        max-width: 170px;
        max-height: 70px;
    }


    .bs-endorsement-track {
        animation-duration: 20s;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bs-endorsements {
        padding: 70px 0 70px;
    }


    .bs-section-word-endorsements {
        top: 40px;
        left: -70px;
    }


    .bs-endorsements-head {
        margin-bottom: 50px;
    }


    .bs-endorsements-head h2 {
        font-size:
            clamp(58px, 13vw, 90px);

        letter-spacing: -4px;
    }


    .bs-endorsements-lead {
        font-size: 18px;
    }

}

/* =========================================================
   NEXT DATES
========================================================= */

.bs-dates {
    position: relative;

    padding: 150px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(183,151,92,.07),
            transparent 32%
        ),
        #080808;
}


/* BIG BACKGROUND TYPO */

.bs-section-word-dates {
    top: 60px;
    right: -120px;

    text-align: right;
}


.bs-dates .bs-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.bs-dates-head {
    max-width: 900px;

    margin-bottom: 75px;
}


.bs-dates-head h2 {
    margin: 25px 0 0;

    color: #fff;

    font-size: clamp(70px, 8vw, 130px);

    font-weight: 800;

    line-height: .80;

    letter-spacing: -7px;

    text-transform: uppercase;
}


.bs-dates-head h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);
}


.bs-dates-lead {
    max-width: 650px;

    margin: 35px 0 30px;

    color: #fff;

    font-size: 20px;

    line-height: 1.5;
}


.bs-dates-lead strong {
    color: var(--gold-light);

    font-weight: 500;
}


/* =========================================================
   GRID
========================================================= */

.bs-dates-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 26px;
}


/* =========================================================
   FLIP CARD
========================================================= */

.bs-date-card {
    position: relative;

    min-height: 520px;

    perspective: 1400px;
}


.bs-date-card-inner {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 520px;

    transform-style: preserve-3d;

    transition:
        transform .85s
        cubic-bezier(.2,.7,.2,1);
}


.bs-date-card:hover .bs-date-card-inner,
.bs-date-card.is-flipped .bs-date-card-inner {
    transform: rotateY(180deg);
}


/* BOTH SIDES */

.bs-date-front,
.bs-date-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

    overflow: hidden;
}


/* =========================================================
   FRONT
========================================================= */

.bs-date-front {
    background: #111;
}


.bs-date-front img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.1s ease;
}


.bs-date-card:hover .bs-date-front img {
    transform: scale(1.06);
}


.bs-date-front-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.08) 100%
        );
}


.bs-date-front::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(255,255,255,.10);

    pointer-events: none;
}


.bs-date-front-content {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 3;
}


.bs-date-project {
    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}


.bs-date-front h3 {
    margin: 10px 0 25px;

    color: #fff;

   font-size: clamp(25px, 2.5vw, 38px);

    font-weight: 800;

    line-height: .9;

    letter-spacing: -3px;
}


.bs-date-hint {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 18px;

    border-top:
        1px solid rgba(255,255,255,.20);

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    letter-spacing: 3px;
}


.bs-date-hint i {
    color: var(--gold-light);

    font-style: normal;

    font-size: 18px;
}


/* =========================================================
   BACK
========================================================= */

.bs-date-back {
    padding: 40px;

    display: flex;

    flex-direction: column;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(183,151,92,.18),
            transparent 35%
        ),
        #141310;

    border:
        1px solid rgba(183,151,92,.30);

    transform: rotateY(180deg);
}


/* CARD NUMBER */

.bs-date-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color:
        rgba(255,255,255,.18);

    font-size: 35px;

    letter-spacing: 3px;
}


/* DATE */

.bs-date-calendar {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 32px;

    border-bottom:
        1px solid rgba(255,255,255,.10);
}


.bs-date-calendar strong {
    color: var(--gold-light);

    font-size: 78px;

    font-weight: 700;

    line-height: .8;

    letter-spacing: -4px;
}


.bs-date-calendar span {
    color:
        rgba(255,255,255,.50);

    font-size: 15px;

    line-height: 1.6;

    letter-spacing: 3px;
}


/* INFORMATION */

.bs-date-info {
    margin-top: 45px;
}


.bs-date-type {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 4px;
}


.bs-date-info h3 {
    margin: 15px 0;

    color: #fff;

    font-size:
        clamp(29px, 3vw, 42px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -1px;

    text-transform: uppercase;
}


.bs-date-info p {
    margin: 0 0 12px;

    color:
        rgba(255,255,255,.60);

    font-size: 20px;
}


.bs-date-location {
    color:
        rgba(255,255,255,.35);

    font-size: 20px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* LINK */

.bs-date-link {
    margin-top: auto;

    padding-top: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.10);

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.bs-date-link span {
    font-size: 19px;

    transition:
        transform .3s ease;
}


.bs-date-link:hover span {
    transform: translateX(7px);
}


/* =========================================================
   ALL DATES
========================================================= */

.bs-dates-footer {
    margin-top: 60px;

    display: flex;

    justify-content: flex-end;
}


.bs-dates-all {
    display: inline-flex;

    align-items: center;

    gap: 22px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-dates-all i {
    font-style: normal;

    font-size: 20px;

    transition:
        transform .3s ease;
}


.bs-dates-all:hover i {
    transform: translateX(7px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .bs-dates-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-dates {
        padding: 80px 0;
    }


    .bs-section-word-dates {
        top: 45px;
        right: -70px;
    }


    .bs-dates-head {
        margin-bottom: 55px;
    }


    .bs-dates-head h2 {
        font-size:
            clamp(58px,17vw,90px);

        letter-spacing: -4px;
    }


    .bs-dates-lead {
        font-size: 18px;
    }


    .bs-dates-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .bs-date-card,
    .bs-date-card-inner {
        min-height: 500px;
    }


    .bs-date-back {
        padding: 30px;
    }


    .bs-date-calendar strong {
        font-size: 65px;
    }


    .bs-dates-footer {
        justify-content: flex-start;
    }

    .bs-news-page-header {
    min-height:390px;
}


.bs-news-page-header-bg {
    background-position:62% center;
}


.bs-news-page-header-inner {
    padding-top:125px;
    padding-bottom:55px;
}


.bs-news-page-header-content h1 {
    font-size:17vw;

    line-height:.82;

    letter-spacing:-4px;
}


.bs-news-page-header-content p {
    font-size:16px;
}




}

/* =========================================================
   STAY CONNECTED / SOCIAL
========================================================= */

.bs-social {
    position: relative;

    min-height: 720px;

    padding: 140px 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0c0c0b;
}


/* =========================================================
   BACKGROUND
========================================================= */

.bs-social-bg {
    position: absolute;
    inset: 0;

    background-image: url("../images/social-bg.jpg");

    background-size: cover;
    background-position: center;

    opacity: .40;

    filter:
        grayscale(35%)
        contrast(1.05);

    transform: scale(1.02);
}


/* DARK OVERLAY */

.bs-social-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 18% 40%,
            rgba(183, 151, 92, .10),
            transparent 34%
        ),

        linear-gradient(
            90deg,
            rgba(8, 8, 8, .82) 0%,
            rgba(8, 8, 8, .62) 42%,
            rgba(8, 8, 8, .32) 72%,
            rgba(8, 8, 8, .20) 100%
        ),

        linear-gradient(
            0deg,
            rgba(8, 8, 8, .48) 0%,
            transparent 45%,
            rgba(8, 8, 8, .18) 100%
        );
}


/* BIG BODO SCHOPF */

.bs-section-word-social {
    top: 65px;
    left: -100px;

    text-align: left;

    -webkit-text-stroke:
        1px rgba(255,255,255,.045);
}


/* CONTENT */

.bs-social .bs-container {
    position: relative;

    z-index: 5;
}


/* =========================================================
   GRID
========================================================= */

.bs-social-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 130px;

    align-items: center;
}


/* =========================================================
   INTRO
========================================================= */

.bs-social-intro h2 {
    margin: 25px 0 0;

    color: #fff;

    font-size:
        clamp(70px, 7vw, 120px);

    font-weight: 800;

    line-height: .80;

    letter-spacing: -6px;

    text-transform: uppercase;
}


.bs-social-intro h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


.bs-social-lead {
    max-width: 580px;

    margin: 38px 0 0;

    color: #fff;

    font-size: 20px;

    line-height: 1.55;
}


.bs-social-lead strong {
    color: var(--gold-light);

    font-weight: 500;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.bs-social-links {
    border-top:
        1px solid rgba(183, 151, 92, .30);
}


.bs-social-row {
    position: relative;

    min-height: 115px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        55px
        1fr
        210px
        35px;

    align-items: center;

    border-bottom:
        1px solid rgba(183, 151, 92, .30);

    overflow: hidden;

    transition:
        padding .4s ease;
}


/* GOLD HOVER BACKGROUND */

.bs-social-row::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.17),
            rgba(183,151,92,.035)
        );

    transform:
        translateX(-101%);

    transition:
        transform .55s
        cubic-bezier(.2,.7,.2,1);
}


.bs-social-row:hover::before {
    transform:
        translateX(0);
}


.bs-social-row:hover {
    padding-left: 32px;
}


/* NUMBER */

.bs-social-index {
    position: relative;

    z-index: 2;

    color:
        rgba(255,255,255,.25);

    font-size: 8px;

    letter-spacing: 3px;
}


/* NETWORK */

.bs-social-name {
    position: relative;

    z-index: 2;

    color: #fff;

    font-size:
        clamp(25px, 2.5vw, 40px);

    font-weight: 700;

    letter-spacing: -1px;

    transition:
        color .35s ease,
        transform .35s ease;
}


.bs-social-row:hover .bs-social-name {
    color: var(--gold-light);

    transform:
        translateX(7px);
}


/* CAPTION */

.bs-social-caption {
    position: relative;

    z-index: 2;

    color:
        rgba(255,255,255,.38);

    font-size: 10px;

    letter-spacing: 2.5px;

    text-align: right;
}


/* ARROW */

.bs-social-arrow {
    position: relative;

    z-index: 2;

    color:
        rgba(255,255,255,.45);

    font-size: 20px;

    text-align: right;

    transition:
        color .35s ease,
        transform .35s ease;
}


.bs-social-row:hover .bs-social-arrow {
    color: var(--gold-light);

    transform:
        translate(4px,-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .bs-social {
        min-height: auto;

        padding: 110px 0;
    }


    .bs-social-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .bs-social-intro {
        max-width: 750px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bs-social {
        padding: 90px 0;
    }


    .bs-section-word-social {
        top: 40px;
        left: -60px;
    }


    .bs-social-intro h2 {
        font-size:
            clamp(58px, 17vw, 90px);

        letter-spacing: -4px;
    }


    .bs-social-lead {
        font-size: 18px;
    }


    .bs-social-grid {
        gap: 60px;
    }


    .bs-social-row {
        min-height: 95px;

        padding: 0 8px;

        grid-template-columns:
            35px
            1fr
            28px;
    }


    .bs-social-row:hover {
        padding-left: 12px;
    }


    .bs-social-name {
        font-size: 25px;
    }


    .bs-social-caption {
        display: none;
    }


    .bs-social-index {
        font-size: 7px;
    }


    .bs-social-arrow {
        font-size: 17px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.bs-footer {
    position: relative;

    padding: 25px 0 35px;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 55%,
            rgba(183, 151, 92, .13) 0%,
            rgba(80, 65, 38, .07) 30%,
            rgba(15, 13, 10, .04) 52%,
            transparent 70%
        ),
        #070707;

    border-top: 1px solid rgba(255,255,255,.08);
}


/* HUGE BACKGROUND WORD */

.bs-footer-word {
    position: absolute;

    left: 50%;
    bottom: -20px;

    transform: translateX(-50%);

    width: 100%;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.025);

    font-size: clamp(110px, 14vw, 250px);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -10px;

    text-align: center;

    white-space: nowrap;

    pointer-events: none;
}


/* CONTENT */

.bs-footer .bs-container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.bs-footer-top {
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr auto 1fr;

    align-items:center;

    width:100%;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


/* LOGO */

.bs-footer-logo {
    justify-self:start;
}


.bs-footer-logo img {
    max-width: 220px;

    max-height: 70px;
    padding-bottom: 10px;
    width: auto;
    height: auto;

    object-fit: contain;
}


/* TAGLINE */

.bs-footer-tagline {
    justify-self:end;

    text-align:right;

    font-size: 10px;

    font-weight:500;

    letter-spacing:4px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.bs-footer-bottom {
    padding-top: 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* COPYRIGHT */

.bs-footer-copy {
    color: rgba(255,255,255,.32);

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* LINKS */

.bs-footer-links {
    display: flex;

    align-items: center;

    gap: 28px;
}


.bs-footer-links a {
    position: relative;

    color: rgba(255,255,255,.42);

    font-size: 9px;

    letter-spacing: 1.8px;

    transition:
        color .3s ease;
}


.bs-footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width .3s ease;
}


.bs-footer-links a:hover {
    color: var(--gold-light);
}


.bs-footer-links a:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-footer {
        padding:40px 0 30px;
    }

    .bs-footer-top {
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:20px;

        padding-bottom:35px;
    }

    .bs-footer-logo {
        justify-self:auto;
    }

    .bs-footer-logo img {
        max-width:180px;
    }

    .bs-footer-socials {
        justify-self:auto;
        margin:0;
    }

    .bs-footer-tagline {
        justify-self:auto;

        text-align:center;

        font-size:10px;
        font-weight:500;
        letter-spacing:3px;
        line-height:1.6;
    }

     .bs-footer-bottom {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .bs-footer-links {
        align-items:center;
        flex-direction:column;

        gap:16px;
    }

    .bs-footer-word {
        bottom:20px;

        font-size:24vw;

        letter-spacing:-5px;
    }

}

@media (max-width: 650px) {

    .bs-about-lead,
    .bs-news-lead,
    .bs-endorsements-lead,
    .bs-dates-lead,
    .bs-social-lead {
        font-size:15px;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.bs-about-page {
    background:#080808;
    color:#fff;
    overflow:hidden;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.bs-about-header {
    position:relative;
    min-height:500px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#080808;
}

.bs-about-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/about/about_header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);

    
}

.bs-about-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-about-header-inner {
    position:relative;
    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}

.bs-about-header-content {
    max-width:850px;
}

.bs-about-header-content h1 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-about-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-about-header-content p {
    max-width:520px;

    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}




/* =========================================================
   A LIFE IN MUSIC
========================================================= */

.bs-about-story {
    position: relative;

    padding: 210px 0 130px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}

.bs-section-word-about-story {
    top:65px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}

.bs-about-story-grid {
    display:grid;

    grid-template-columns:
        minmax(0,.92fr)
        minmax(0,1.08fr);

    gap:120px;

    align-items:center;
}


/* IMAGE */

.bs-about-story-visual {
    position:relative;
}

.bs-about-story-image {
    position:relative;

    overflow:visible;
    border: 1px solid rgba(183, 151, 92, .30);
}

.bs-about-story-image::before {
    content:"";

    position:absolute;
    z-index:0;

    inset:-45px;

    background:
        radial-gradient(
            circle at top right,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        );

    filter:blur(18px);

    pointer-events:none;
}

.bs-about-story-image::after {
    content:"";

    position:absolute;
    inset:0;

    z-index:2;

    background:
        linear-gradient(
            0deg,
            rgba(8,8,8,.58) 0%,
            transparent 42%
        );

    pointer-events:none;
}

.bs-about-story-image video {
    position:relative;
    z-index:1;

    display:block;

    width:100%;
    height:720px;

    object-fit:cover;
    object-position:center;

    filter:
        grayscale(75%)
        contrast(1.06);

    transition:
        filter .7s ease,
        transform .7s ease;
}

.bs-about-story-image:hover video {
    filter:
        grayscale(25%)
        contrast(1.04);
}

.bs-about-story-full {
    position:relative;

    margin-top:80px;
    padding-top:55px;

    columns:2;
    column-gap:90px;

    border-top:1px solid rgba(183,151,92,.18);
}

.bs-about-story-full p {
    margin:0 0 24px;

    color:rgba(255,255,255,.52);

    font-size:16px;
    line-height:1.9;

    break-inside:avoid;
}




/* GOLD CORNERS */

.bs-about-story-visual::after {
    content:"";

    position:absolute;

    inset:-12px;

    z-index:5;

    background:

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 1px 80px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 1px 80px no-repeat;

    pointer-events:none;
}


/* BADGE */

.bs-about-story-badge {
    position:absolute;

    left: -35px;
    bottom: -35px;

    z-index:8;

    width:125px;
    height:125px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    border:1px solid rgba(183,151,92,.65);

    border-radius:50%;

    background:
        rgba(8,8,8,.88);

    backdrop-filter:blur(10px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

    text-align:center;
}

.bs-about-story-badge span {
    color:rgba(255,255,255,.45);

    font-size:8px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}

.bs-about-story-badge strong {
    margin:5px 0;

    color:var(--gold-light);

    font-size:20px;
    font-weight:800;
    letter-spacing:2px;
}


/* CONTENT */

.bs-about-story-content h2 {
    margin:0 0 42px;

    color:#fff;

    font-size:clamp(70px,7vw,112px);
    font-weight:800;
    line-height:.82;
    letter-spacing:-6px;

    text-transform:uppercase;
}

.bs-about-story-content h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-about-story-lead {
    max-width:680px;

    margin:0 0 30px;

    color:#fff;

    font-size:20px;
    line-height:1.6;
}

.bs-about-story-content > p:not(.bs-about-story-lead) {
    max-width:680px;

    margin:0 0 20px;

    color:rgba(255,255,255,.52);

    font-size:16px;
    line-height:1.9;
}

.bs-about-story-content strong {
    color:rgba(255,255,255,.82);
}

.bs-about-story-content em {
    color:var(--gold-light);
}

.bs-about-story-meta {
    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:42px;
}

.bs-about-story-meta span {
    padding:9px 14px;

    border:
        1px solid rgba(183,151,92,.22);

    color:rgba(255,255,255,.52);

    font-size:8px;
    font-weight:700;
    letter-spacing:1.8px;

    text-transform:uppercase;
}


/* =========================================================
   WORK WITH BODO
========================================================= */

.bs-about-work {
    position:relative;

    padding:160px 0 170px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(183, 151, 92, .08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #151411 0%,
            #11110f 45%,
            #0d0d0c 100%
        );

    overflow:hidden;
}

.bs-about-work-word {
    position:absolute;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    color:transparent;

    font-size:clamp(100px,13vw,210px);
    font-weight:900;
    letter-spacing:-10px;
    white-space:nowrap;

    text-transform:uppercase;

    -webkit-text-stroke:
        1px rgba(255,255,255,.035);

    pointer-events:none;
}

.bs-about-work-head {
    position:relative;

    z-index:2;

    margin-bottom:70px;
}

.bs-about-work-head h2 {
    margin:0;

    color:#fff;

    font-size:clamp(72px,7vw,115px);
    font-weight:800;
    line-height:.82;
    letter-spacing:-6px;

    text-transform:uppercase;
}

.bs-about-work-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


/* TWO BIG PANELS */

.bs-about-work-grid {
    position:relative;

    z-index:3;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;
}

.bs-work-panel {
    position:relative;

    min-height:620px;

    overflow:hidden;

    border: 1px solid rgba(183, 151, 92, .30);

    background:#111;
}



.bs-work-panel-image {
    position:absolute;
    inset:0;

    overflow:hidden;
}

.bs-work-panel-image img {
    width:100%;
    height:100%;

    object-fit:cover;

    filter:
        grayscale(78%)
        contrast(1.08);

    transform:scale(1.02);

    transition:
        transform .8s ease,
        filter .8s ease;
}

.bs-work-panel-overlay {
    position:absolute;
    inset:0;

    background:

        linear-gradient(
            0deg,
            rgba(8,8,8,.98) 0%,
            rgba(8,8,8,.72) 42%,
            rgba(8,8,8,.12) 100%
        ),

        linear-gradient(
            90deg,
            rgba(8,8,8,.35),
            transparent
        );

    transition:
        background .5s ease;
}

.bs-soundbetter-badge {
    position:absolute;
    right:5px;
    bottom: -15px;

    width:120px;
    height:auto;

    opacity:.7;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.bs-work-panel:hover .bs-soundbetter-badge {
    opacity:1;
    transform:translateY(-4px);
}

.bs-work-panel-content {
    position:absolute;

    left:50px;
    right:50px;
    bottom:48px;

    z-index:4;
}

.bs-work-number {
    display:block;

    margin-bottom:20px;

    color:var(--gold);

    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.bs-work-kicker {
    margin-bottom:14px;

    color:rgba(255,255,255,.48);

    font-size:12px;
    font-weight:700;
    letter-spacing:3px;

    text-transform:uppercase;
}

.bs-work-panel h3 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(55px,5vw,88px);
    font-weight:800;
    line-height:.82;
    letter-spacing:-4px;

    text-transform:uppercase;
}

.bs-work-panel h3 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.55);
}

.bs-work-panel p {
    max-width:470px;

    margin:0 0 28px;

    color:rgba(255,255,255,.55);

    font-size:13px;
    line-height:1.8;
}

.bs-work-link {
    display:inline-flex;

    align-items:center;

    gap:18px;

    color:#fff;

    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;

    text-transform:uppercase;

    transition:
        color .3s ease,
        gap .3s ease;
}

.bs-work-link span {
    color:var(--gold);

    font-size:17px;
}

.bs-work-panel::after {
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:2px;

    background:var(--gold);

    transition:width .55s ease;
}

.bs-work-panel:hover::after {
    width:100%;
}

.bs-work-panel:hover .bs-work-panel-image img {
    transform:scale(1.07);

    filter:
        grayscale(35%)
        contrast(1.08);
}

.bs-work-panel:hover .bs-work-link {
    color:var(--gold-light);

    gap:25px;
}

@media (max-width: 700px) {

    .bs-soundbetter-badge {
        right: 0;
        bottom: -10px;

        width: 85px;

        opacity: .7;
    }

    .bs-work-link {
    

    font-size:8px;
    font-weight:800;
    letter-spacing:2.5px;

    
}

}


/* =========================================================
   COLLABORATIONS
========================================================= */

.bs-about-credits {
    position:relative;

    padding:160px 0;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}

.bs-about-credits-header {
    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:end;

    margin-bottom:85px;
}

.bs-about-credits-header h2 {
    margin:0;

    color:#fff;

    font-size:clamp(70px,7vw,115px);
    font-weight:800;
    line-height:.82;
    letter-spacing:-6px;

    text-transform:uppercase;
}

.bs-about-credits-header h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-about-credits-header > p {
    max-width:430px;

    margin:0 0 8px auto;

    color:rgba(255,255,255,.46);

    font-size:14px;
    line-height:1.9;
}


/* FEATURED NAMES */

.bs-featured-credits {
    border-top:
        1px solid rgba(255,255,255,.08);
}

.bs-featured-credit {
    display:grid;

    grid-template-columns:
        70px
        minmax(0,1fr)
        auto;

    gap:25px;

    align-items:center;

    min-height:92px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        padding-left .35s ease,
        background .35s ease;
}

.bs-featured-credit-number {
    color:rgba(183,151,92,.65);

    font-size:9px;
    font-weight:700;
    letter-spacing:2px;
}

.bs-featured-credit strong {
    color:#fff;

    font-size:clamp(28px,3vw,48px);
    font-weight:800;
    letter-spacing:-1.5px;

    text-transform:uppercase;

    transition:color .3s ease;
}

.bs-featured-credit-type {
    color:rgba(255,255,255,.35);

    font-size:8px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}

.bs-featured-credit:hover {
    padding-left:18px;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.07),
            transparent 50%
        );
}

.bs-featured-credit:hover strong {
    color:var(--gold-light);
}


/* EXPAND AREA */

.bs-credits-details {
    margin-top:45px;

    border-top:
        1px solid rgba(183,151,92,.24);

    border-bottom:
        1px solid rgba(183,151,92,.24);
    
    interpolate-size:allow-keywords;
}

.bs-credits-details::details-content {
    height:0;
    overflow:hidden;

    transition:
        height .9s cubic-bezier(.22, 1, .36, 1),
        content-visibility .9s allow-discrete;
}

.bs-credits-details[open]::details-content {
    height:auto;
}

.bs-credits-details summary {
    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:26px 0;

    list-style:none;

    cursor:pointer;

    color:#fff;

    font-size:12px;
    font-weight:800;
    letter-spacing:2.5px;

    text-transform:uppercase;
}

.bs-credits-details summary::-webkit-details-marker {
    display:none;
}

.bs-credits-details-icon {
    color:var(--gold);

    font-size:28px;
    font-weight:300;

    line-height:1;

    transition:transform .35s ease;
}

.bs-credits-details[open]
.bs-credits-details-icon {
    transform:rotate(45deg);
}

.bs-credits-expanded {
    position:relative;

    display:grid;
    grid-template-columns:.42fr 1fr;
    gap:90px;

    padding:0;

    opacity:0;

    transform:translateY(-15px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.bs-credits-details[open] .bs-credits-expanded {
    padding:50px 0 70px;

    opacity:1;

    transform:translateY(0);
}

.bs-credits-expanded-title {
    color:transparent;
    align-self:start;
    font-size:clamp(80px,10vw,160px);
    font-weight:900;
    line-height:.8;
    letter-spacing:-7px;

    writing-mode:vertical-rl;

    transform:rotate(180deg);

    -webkit-text-stroke:
        1px rgba(255,255,255,.08);
}

.bs-credits-columns {
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:45px;
}

.bs-credit-column {
    display:flex;

    flex-direction:column;
}

.bs-credit-column span {
    padding:13px 0;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    color:rgba(255,255,255,.48);

    font-size:12px;
    line-height:1.5;

    transition:
        color .35s ease,
        padding-left .35s ease,
        text-shadow .35s ease;
}

.bs-credit-column span:hover {
    color:var(--gold-light);

    padding-left:10px;

    text-shadow:0 0 18px rgba(183,151,92,.25);
}

.bs-credit-column span {
    transition:
        color .35s ease,
        background .35s ease,
        padding-left .35s ease,
        border-color .35s ease;
}

.bs-credit-column span:hover {
    color:var(--gold-light);

    padding-left:10px;

    background:linear-gradient(
        90deg,
        rgba(183,151,92,.08),
        transparent 80%
    );

    border-left:1px solid var(--gold);
}


/* =========================================================
   TRUSTED PARTNERS
========================================================= */

.bs-about-partners {
    position:relative;

    padding:150px 0 135px;

    background:#0b0b0b;

    overflow:hidden;
}

.bs-about-partners-header {
    margin-bottom:70px;
}

.bs-about-partners-header h2 {
    margin:0;

    color:#fff;

    font-size:clamp(70px,7vw,115px);
    font-weight:800;
    line-height:.82;
    letter-spacing:-6px;

    text-transform:uppercase;
}

.bs-about-partners-header h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


/* MARQUEE */

.bs-about-partner-track-wrap {
    position:relative;

    width:100%;

    overflow:hidden;
}

.bs-about-partner-track-wrap::before,
.bs-about-partner-track-wrap::after {
    content:"";

    position:absolute;

    top:0;
    bottom:0;

    z-index:5;

    width:130px;

    pointer-events:none;
}

.bs-about-partner-track-wrap::before {
    left:0;

    background:
        linear-gradient(
            90deg,
            #0b0b0b,
            transparent
        );
}

.bs-about-partner-track-wrap::after {
    right:0;

    background:
        linear-gradient(
            270deg,
            #0b0b0b,
            transparent
        );
}

.bs-about-partner-track {
    display:flex;

    width:100%;

    gap:35px;

    padding-left:0;

    justify-content:center;
}

.bs-about-partner-logo {
    width:390px;
    height:170px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.015);

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}

.bs-about-partner-logo img {
    max-width:65%;
    max-height:70px;

    opacity:.62;

    filter:grayscale(100%);

    transition:
        opacity .35s ease,
        filter .35s ease;
}

.bs-about-partner-logo:hover {
    transform:translateY(-4px);

    border-color:
        rgba(183,151,92,.42);

    box-shadow:
        0 0 28px rgba(183,151,92,.08);
}

.bs-about-partner-logo:hover img {
    opacity:1;

    filter:grayscale(0);
}

@keyframes bsAboutPartnerMarquee {

    from {
        transform:translateX(0);
    }

    to {
        transform:translateX(
            calc(-50% - 17.5px)
        );
    }

}


/* =========================================================
   FINAL HIRE CTA
========================================================= */

.bs-about-final {
    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#080808;
}

.bs-about-final-bg {
    position:absolute;

    inset:0;

    background:
        url("../images/about/about-final.jpg")
        center center / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);

    transform:scale(1.03);
}

.bs-about-final-overlay {
    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.78) 42%,
            rgba(8,8,8,.25) 75%,
            rgba(8,8,8,.15) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8,8,8,.7),
            transparent 45%
        );
}

.bs-about-final-content {
    position:relative;

    z-index:3;

    max-width:900px;
}

.bs-about-final-content h2 {
    margin:0 0 30px;

    color:#fff;

    font-size:clamp(80px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-about-final-content h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.52);
}

.bs-about-final-content p {
    max-width:560px;

    margin:0 0 36px;

    color:rgba(255,255,255,.58);

    font-size:15px;
    line-height:1.8;
}

.bs-about-final-actions {
    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

.bs-about-final .bs-button {
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:190px;

    padding:16px 24px;

    border:
        1px solid rgba(183,151,92,.5);

    color:#fff;

    font-size:9px;
    font-weight:800;
    letter-spacing:2px;

    text-transform:uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.bs-about-final .bs-button-primary {
    background:var(--gold);

    color:#080808;
}

.bs-about-final .bs-button-primary:hover {
    background:var(--gold-light);
}

.bs-about-final .bs-button-secondary {
    background:
        rgba(8,8,8,.35);

    backdrop-filter:blur(6px);
}

.bs-about-final .bs-button-secondary:hover {
    border-color:var(--gold);

    color:var(--gold-light);
}


/* =========================================================
   FINAL PARTNER STRIP
========================================================= */

.bs-about-partner-footer {
    padding:42px 0;

    border-top:
        1px solid rgba(255,255,255,.06);

    background:#080808;
}

.bs-about-partner-footer .bs-container {
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:50px;
}

.bs-about-partner-footer-label {
    color:rgba(255,255,255,.28);

    font-size:8px;
    font-weight:700;
    letter-spacing:3px;

    text-transform:uppercase;
}

.bs-about-partner-footer-logos {
    display:flex;

    align-items:center;

    gap:55px;
}

.bs-about-partner-footer-logos img {
    max-width:125px;
    max-height:44px;

    opacity:.46;

    filter:grayscale(100%);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .bs-about-story-grid {
        gap:70px;
    }

    .bs-about-story-image img {
        height:620px;
    }

    .bs-about-work-grid {
        gap:20px;
    }

    .bs-work-panel {
        min-height:560px;
    }

    .bs-work-panel-content {
        left:35px;
        right:35px;
        bottom:35px;
    }

    .bs-about-credits-header {
        gap:50px;
    }

    .bs-credits-expanded {
        grid-template-columns:
            .3fr 1fr;

        gap:50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px) {

    /* PAGE HEADER */

    .bs-about-header {
        min-height:390px;
    }

    .bs-about-header-bg {
        background-position:62% center;
    }

    .bs-about-header-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,8,8,.94),
                rgba(8,8,8,.48)
            ),
            linear-gradient(
                0deg,
                #080808,
                transparent 55%
            );
    }

    .bs-about-header-inner {
        padding-top:125px;
        padding-bottom:55px;
    }

    .bs-about-header-content h1 {
        font-size:17vw;
        line-height:.82;
        letter-spacing:-4px;
    }

    .bs-about-header-content p {
        max-width:320px;

        font-size:12px;
        line-height:1.7;
    }

    


    /* STORY */

    .bs-about-story {
        padding:70px 0 30px;
    }

    .bs-about-story-grid {
        grid-template-columns:1fr;

        gap:85px;
    }

    .bs-about-story-full {
        margin-top: 20px;
        padding-top: 30px;

        columns: auto;
        column-gap: 0;
    }

    .bs-about-story-image img {
        height:540px;
    }

    .bs-about-story-visual::after {
        inset:-6px;
    }

    .bs-about-story-badge {
        left:25px;
        bottom:-28px;

        width:105px;
        height:105px;
    }

    .bs-about-story-badge strong {
        font-size:17px;
    }

    .bs-about-story-content h2 {
        font-size:17vw;
        line-height:.84;
        letter-spacing:-3px;
    }

    .bs-about-story-lead {
        font-size:17px;
    }

    .bs-about-story-content > p:not(.bs-about-story-lead) {
        font-size:16px;
        line-height:1.85;
    }


    /* WORK */

    .bs-about-work {
        padding:70px 0 70px;
    }

    .bs-about-work-word {
        top:35px;

        font-size:24vw;
        letter-spacing:-5px;
    }

    .bs-about-work-head {
        margin-bottom:45px;
    }

    .bs-about-work-head h2 {
        font-size:17vw;
        line-height:.84;
        letter-spacing:-3px;
    }

    .bs-about-work-grid {
        grid-template-columns:1fr;

        gap:18px;
    }

    .bs-work-panel {
        min-height:520px;
    }

    .bs-work-panel-content {
        left:28px;
        right:28px;
        bottom:30px;
    }

    .bs-work-panel h3 {
        font-size:14vw;
        letter-spacing:-3px;
    }


    /* CREDITS */

    .bs-about-credits {
        padding:70px 0;
    }

    .bs-about-credits-header {
        grid-template-columns:1fr;

        gap:28px;

        margin-bottom:55px;
    }

    .bs-about-credits-header h2 {
        font-size:17vw;
        line-height:.84;
        letter-spacing:-3px;
    }

    .bs-about-credits-header > p {
        margin:0;

        max-width:500px;
    }

    .bs-featured-credit {
        grid-template-columns:
            38px minmax(0,1fr);

        min-height:82px;

        gap:15px;

        padding:10px 0;
    }

    .bs-featured-credit strong {
        font-size:27px;
        line-height:1;
    }

    .bs-featured-credit-type {
        grid-column:2;

        margin-top:-10px;
    }

    .bs-featured-credit:hover {
        padding-left:0;
    }

    .bs-credits-expanded {
        grid-template-columns:1fr;

        gap:35px;

        padding-top:35px;
    }

    .bs-credits-expanded-title {
        writing-mode:horizontal-tb;

        transform:none;

        font-size:18vw;
        letter-spacing:-4px;
    }

    .bs-credits-columns {
        grid-template-columns:1fr 1fr;

        gap:25px;
    }


    /* PARTNERS */

    .bs-about-partners {
        padding:105px 0 95px;
    }

    .bs-about-partners-header {
        margin-bottom:50px;
    }

    .bs-about-partners-header h2 {
        font-size:13vw;
        line-height:.85;
        letter-spacing:-3px;
    }

    .bs-about-partner-logo {
        width:270px;
        height:130px;
    }

    .bs-about-partner-track {
        gap:20px;

        padding-left:20px;
    }

    .bs-about-partner-track-wrap::before,
    .bs-about-partner-track-wrap::after {
        width:60px;
    }


    /* FINAL */

    .bs-about-final {
        min-height:600px;
    }

    .bs-about-final-bg {
        background-position:65% center;
    }

    .bs-about-final-content h2 {
        font-size:17vw;
        line-height:.82;
        letter-spacing:-4px;
    }

    .bs-about-final-content p {
        max-width:320px;

        font-size:13px;
    }

    .bs-about-final-actions {
        flex-direction:column;

        align-items:flex-start;
    }


    /* FOOTER PARTNERS */

    .bs-about-partner-footer .bs-container {
        flex-direction:column;

        align-items:flex-start;

        gap:28px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .bs-about-header {
        min-height:360px;
    }

    .bs-about-story-image img {
        height:470px;
    }

    .bs-about-story-meta {
        gap:7px;
    }

    .bs-about-story-meta span {
        padding:8px 10px;

        font-size:7px;
        letter-spacing:1.3px;
    }

    .bs-work-panel {
        min-height:480px;
    }

    .bs-work-panel-content {
        left:22px;
        right:22px;
        bottom:24px;
    }

    .bs-work-panel h3 {
        font-size:15vw;
    }

    .bs-featured-credit strong {
        font-size:23px;
    }

    .bs-credits-columns {
        grid-template-columns:1fr;
    }

    .bs-about-partner-footer-logos {
        gap:35px;
    }

    .bs-about-partner-footer-logos img {
        max-width:105px;
    }

    .bs-single-news-hero {
    min-height:520px;
}


.bs-single-news-hero-bg {
    background-position:center;
}


.bs-single-news-hero-inner {
    padding-top:140px;
    padding-bottom:60px;
}


.bs-single-news-hero-content h1 {
    font-size:13vw;

    line-height:.9;

    letter-spacing:-3px;
}


.bs-single-news-hero-word {
    right:-25px;
    bottom:-12px;

    font-size:27vw;

    letter-spacing:-5px;
}


.bs-single-news-content {
    padding:
        75px 0 100px;
}


.bs-single-news-meta {
    margin-bottom:35px;
}


.bs-single-news-text {
    font-size:16px;

    line-height:1.8;
}


.bs-single-news-text h2 {
    margin-top:55px;

    font-size:10vw;
}


.bs-single-news-back {
    margin-top:70px;
}

}

/* =========================================================
   NEWS PAGE HEADER
========================================================= */

.bs-news-page-header {
    position:relative;

    min-height:500px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;

    background:#080808;
}


.bs-news-page-header-bg {
    position:absolute;

    inset:0;

    background:
        url("../images/header/header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);

    
}


.bs-news-page-header-overlay {
    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}


.bs-news-page-header-inner {
    position:relative;

    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}


.bs-news-page-header-content {
    max-width:850px;
}


.bs-news-page-header-content h1 {
     margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}


.bs-news-page-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


.bs-news-page-header-content p {
    max-width:600px;

    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;

    line-height:1.7;
}

@media (max-width: 700px) {

    .bs-news-page-header-bg {
        background-position: 75% 35%;
    }
    

}


/* =========================================================
   SINGLE NEWS
========================================================= */


.bs-single-news {
    background:#080808;
}


/* =========================================================
   SINGLE NEWS HERO
========================================================= */

.bs-single-news-hero {
    position:relative;

    height:500px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;

    background:#080808;
}


/* ---------------------------------------------------------
   NEWS DETAIL HERO IMAGE
--------------------------------------------------------- */

.bs-single-news-hero-bg {
    position:absolute;

    top:0;
    right:0;
    bottom:0;

    width:64%;

    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;

    filter:
        grayscale(35%)
        contrast(1.05);
}


/* ---------------------------------------------------------
   DARK LEFT SIDE + SOFT TRANSITION
--------------------------------------------------------- */

.bs-single-news-hero-overlay {
    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            90deg,
            #080808 0%,
            #080808 31%,
            rgba(8,8,8,.96) 38%,
            rgba(8,8,8,.82) 46%,
            rgba(8,8,8,.45) 56%,
            rgba(8,8,8,.12) 68%,
            transparent 80%
        );
}

/* ---------------------------------------------------------
   HERO CONTENT
--------------------------------------------------------- */

.bs-single-news-hero-inner {
    position:relative;

    z-index:3;

    padding-top:145px;
    padding-bottom:58px;
}

.bs-single-news-date {
    margin-bottom:18px;

    color:rgba(255,255,255,.48);

    font-size:11px;
    font-weight:700;

    letter-spacing:2.5px;

    text-transform:uppercase;
}


.bs-single-news-hero-content h1 {
    margin:0;

    color:#fff;

    font-size:clamp(42px,4.1vw,72px);
    font-weight:800;

    line-height:.92;

    letter-spacing:-2.5px;

    text-transform:uppercase;
}


.bs-single-news-hero-content {
    width:47%;
    max-width:760px;
}


.bs-single-news-hero-inner {
    position:relative;

    z-index:3;

    padding-top:180px;
    padding-bottom:85px;
}


.bs-single-news-hero-content {
    max-width:1100px;
}


.bs-single-news-date {
    margin-bottom:22px;

    color:var(--gold-light);

    font-size:10px;
    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;
}





.bs-single-news-hero-word {
    position:absolute;

    right:-25px;
    bottom:-25px;

    z-index:1;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.035);

    font-size:
        clamp(120px,15vw,280px);

    font-weight:800;

    line-height:.8;

    letter-spacing:-10px;

    pointer-events:none;
}


/* =========================================================
   SINGLE NEWS CONTENT
========================================================= */

.bs-single-news-content {
    position:relative;

    padding:110px 0 140px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(183,151,92,.055),
            transparent 30%
        ),
        #080808;
}


.bs-single-news-article {
    width:min(900px,100%);

    margin:0 auto;
}


/* META */

.bs-single-news-meta {
    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:45px;

    color:rgba(255,255,255,.48);

    font-size:12px;
    font-weight:700;

    letter-spacing:2.5px;

    text-transform:uppercase;
}


.bs-single-news-meta-line {
    width:40px;
    height:1px;

    background:var(--gold);
}


/* TEXT */

.bs-single-news-text {
    color:rgba(255,255,255,.68);

    font-size:16px;

    line-height:1.9;
}


.bs-single-news-text p {
    margin:
        0 0 28px;
}


.bs-single-news-text h2,
.bs-single-news-text h3,
.bs-single-news-text h4 {
    color:#fff;

    font-weight:800;

    text-transform:uppercase;
}


.bs-single-news-text h2 {
    margin:
        70px 0 30px;

    font-size:
        clamp(34px,4vw,58px);

    line-height:.95;

    letter-spacing:-2px;
}


.bs-single-news-text h3 {
    margin:
        55px 0 25px;

    font-size:30px;
}


.bs-single-news-text a {
    color:var(--gold-light);

    text-decoration:underline;

    text-decoration-color:
        rgba(183,151,92,.35);

    text-underline-offset:5px;
}


.bs-single-news-text img {
    width:100%;

    height:auto;

    margin:
        45px 0;

    display:block;
}

@media (max-width: 700px) {

    .bs-single-news-content {
    

    padding:70px 0 50px;

    
}

}


/* =========================================================
   EXTERNAL LINK
========================================================= */

.bs-single-news-action {
    margin-top:55px;
}


.bs-single-news-button {
    display:inline-flex;

    align-items:center;

    gap:25px;

    padding:
        17px 25px;

    border:
        1px solid rgba(183,151,92,.45);

    color:var(--gold-light);

    font-size:12px;
    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease;
}


.bs-single-news-button span {
    font-size:18px;

    transition:
        transform .35s ease;
}


.bs-single-news-button:hover {
    border-color:var(--gold);

    background:
        rgba(183,151,92,.08);

    color:#fff;
}


.bs-single-news-button:hover span {
    transform:
        translateX(6px);
}


/* =========================================================
   BACK TO NEWS
========================================================= */

.bs-single-news-back {
    margin-top:90px;

    padding-top:35px;

    border-top:
        1px solid rgba(183, 151, 92, .30);
}


.bs-single-news-back a {
    display:inline-flex;

    align-items:center;

    gap:18px;

    color:rgba(255,255,255,.55);

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    transition:
        color .3s ease;
}


.bs-single-news-back a span {
    color:var(--gold-light);

    font-size:18px;

    transition:
        transform .3s ease;
}


.bs-single-news-back a:hover {
    color:#fff;
}


.bs-single-news-back a:hover span {
    transform:
        translateX(-6px);
}


/* =========================================================
   DISCOGRAPHY PAGE
========================================================= */


/* =========================================================
   PAGE HEADER
========================================================= */

.bs-discography-header {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #080808;
}


.bs-discography-header-bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/header/header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}


.bs-discography-header-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.97) 0%,
            rgba(8,8,8,.82) 35%,
            rgba(8,8,8,.42) 65%,
            rgba(8,8,8,.16) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 48%
        );
}


.bs-discography-header-inner {
    position: relative;
    z-index: 3;

    padding-top: 160px;
    padding-bottom: 80px;
}


.bs-discography-header-content {
    max-width: 850px;
}


.bs-discography-header-content h1 {
    margin: 0 0 28px;

    color: #fff;

    font-size: clamp(72px, 7vw, 118px);
    font-weight: 800;

    line-height: .82;
    letter-spacing: -6px;

    text-transform: uppercase;
}


.bs-discography-header-content h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}


.bs-discography-header-content p {
    max-width: 680px;
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 20px;
    line-height: 1.8;
}


.bs-discography-header-word {
    position: absolute;

    right: -50px;
    bottom: -35px;

    z-index: 2;

    color: rgba(255,255,255,.025);

    font-size: 180px;
    font-weight: 800;

    line-height: .8;
    letter-spacing: -10px;

    text-transform: uppercase;

    pointer-events: none;
}

@media (max-width: 700px) {

    .bs-discography-header-bg {
        background-position: 75% 35%;
    }
    

}



/* =========================================================
   45 YEARS ANNIVERSARY FEATURE
========================================================= */

.bs-discography-anniversary {
    position: relative;
    padding: 95px 0 85px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}


/* ---------------------------------------------------------
   FINE OUTER FRAME
--------------------------------------------------------- */

.bs-discography-anniversary-frame {
    position: absolute;
    inset: 22px 28px;

    border-left: 1px solid rgba(183,151,92,.22);
    border-right: 1px solid rgba(183,151,92,.22);

    pointer-events: none;
}


/* ---------------------------------------------------------
   LARGE BACKGROUND TYPO
--------------------------------------------------------- */

.bs-discography-anniversary-word {
    position: absolute;
    top: 85px;
    left: 7%;

    z-index: 0;

    pointer-events: none;
    text-transform: uppercase;
}


.bs-discography-anniversary-word span {
    display: block;

    color: rgba(183,151,92,.075);

    font-size: clamp(120px, 12.5vw, 230px);
    font-weight: 800;

    line-height: .72;
    letter-spacing: -10px;
}


.bs-discography-anniversary-word small {
    display: block;

    margin-top: 28px;

    color: rgba(183,151,92,.075);

    font-size: clamp(42px, 4.7vw, 82px);
    font-weight: 700;

    letter-spacing: 28px;
    line-height: 1;

    text-align: center;
}


.bs-discography-anniversary .bs-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TOP ANNIVERSARY KICKER
========================================================= */

.bs-anniversary-kicker {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 58px;

    color: var(--gold-light);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 5px;
    text-transform: uppercase;
}


.bs-anniversary-kicker strong {
    font-weight: 700;
}


.bs-anniversary-kicker-line {
    width: 170px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(183,151,92,.75)
        );
}


.bs-anniversary-kicker-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.75),
            transparent
        );
}


/* =========================================================
   MAIN FEATURE GRID
========================================================= */

.bs-anniversary-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, .85fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   PRODUCT SIDE
========================================================= */

.bs-anniversary-product {
    position: relative;
    min-width: 0;
    padding-top: 150px;
}


/* vertical text */

.bs-anniversary-side-label {
    position: absolute;

    top: 120px;
    left: -50px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 5px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   PRODUCT IMAGE
--------------------------------------------------------- */

.bs-anniversary-product-image {
    position: relative;
    z-index: 2;

    width: 100%;

    isolation: isolate;
}


.bs-anniversary-product-image::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: -8%;
    right: -4%;
    bottom: -10%;
    left: -4%;

    background:
        radial-gradient(
            ellipse at 48% 45%,
            rgba(255, 218, 145, .24) 0%,
            rgba(183, 151, 92, .15) 28%,
            rgba(183, 151, 92, .07) 48%,
            transparent 72%
        );

    filter: blur(28px);

    pointer-events: none;
}


.bs-anniversary-product-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 108%;
    max-width: none;

    margin-left: -4%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 28px 30px rgba(0,0,0,.55)
        );

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}


.bs-anniversary-product:hover
.bs-anniversary-product-image img {
    transform: translateY(-5px);
}


/* =========================================================
   BUTTONS
========================================================= */

.bs-anniversary-actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    width: 78%;

    margin:
        26px auto
        0;
}


.bs-anniversary-btn {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 0 24px;

    border:
        1px solid rgba(183,151,92,.48);

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.bs-anniversary-btn:hover {
    transform: translateY(-2px);
}


.bs-anniversary-btn-primary {
    border-color: #b7975c;

    background:
        linear-gradient(
            135deg,
            #c1a064,
            #8b692f
        );

    color: #0a0a0a;
}


.bs-anniversary-btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #d0b376,
            #9d7838
        );

    color: #080808;
}


.bs-anniversary-btn-secondary {
    background:
        rgba(255,255,255,.015);
}


.bs-anniversary-btn-secondary:hover {
    border-color: var(--gold);

    background:
        rgba(183,151,92,.07);

    color: var(--gold-light);
}


.bs-anniversary-btn-icon {
    font-size: 13px;
    line-height: 1;
}


/* =========================================================
   STORY SIDE
========================================================= */

.bs-anniversary-story {
    position: relative;

    padding-top: 38px;

    max-width: 600px;
}


.bs-anniversary-date {
    margin-bottom: 17px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.bs-anniversary-story p {
    margin: 0 0 15px;

    color: rgba(255,255,255,.72);

    font-size: 14px;
    line-height: 1.72;
}


.bs-anniversary-story blockquote {
    margin: 21px 0;

    padding: 0;

    border: 0;

    color: var(--gold-light);

    font-size: 22px;
    font-weight: 700;

    line-height: 1.2;
    font-style: italic;
}


/* =========================================================
   CLOSING / SIGNATURE
========================================================= */

.bs-anniversary-closing {
    margin-top: 20px;

    color: rgba(255,255,255,.84);

    font-size: 14px;
    line-height: 1.6;
}


.bs-anniversary-love {
    margin-top: 8px;

    color: #fff;

    font-size: 14px;
}


/* THE SIGNATURE */

.bs-anniversary-signature {
    margin-top: -12px;
    margin-left: 135px;

    color: var(--gold-light);

    font-family:
        "Brush Script MT",
        "Segoe Script",
        "Lucida Handwriting",
        cursive;

    font-size: clamp(54px, 5vw, 82px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    transform: rotate(-7deg);

    text-shadow:
        0 0 20px rgba(183,151,92,.10);
}





















/* =========================================================
   BOTTOM PLAYER PANEL
========================================================= */

.bs-anniversary-player {
    position: relative;

    padding: 34px 38px 38px;

    margin-top: 100px;
    margin-bottom: 100px;

    overflow: visible;

    border: 1px solid rgba(183,151,92,.62);
    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.92) 0%,
            rgba(8,8,8,.80) 38%,
            rgba(7,6,5,.74) 68%,
            rgba(5,5,5,.88) 100%
        ),
        url("../images/disco/player-bg.jpg")
        center / cover no-repeat;

    box-shadow:
        0 40px 100px rgba(0,0,0,.68),
        inset 0 1px 0 rgba(255,255,255,.035);
}


/* =========================================================
   GOLD GLOW
========================================================= */

.bs-anniversary-player::before {
    content: "";

    position: absolute;
    z-index: 0;

    inset: -45px;

    background:
        radial-gradient(
            circle at top right,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        );

    filter: blur(18px);

    pointer-events: none;
}


.bs-anniversary-player::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.20),
            rgba(5,5,5,.04) 55%,
            rgba(5,5,5,.12)
        );

    pointer-events: none;
}


.bs-anniversary-player > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PLAYER STAGE
========================================================= */

.bs-anniversary-player-stage {
    display: grid;

    grid-template-columns:
        300px
        minmax(0,1fr)
        220px;

    gap: 65px;

    align-items: center;

    min-height: 330px;
}


/* =========================================================
   COVER
========================================================= */

.bs-anniversary-player-cover {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border:
        1px solid rgba(183,151,92,.40);

    background: #080808;

    box-shadow:
        0 25px 65px rgba(0,0,0,.55),
        0 0 40px rgba(183,151,92,.08);
}


.bs-anniversary-player-cover::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(8,8,8,.28)
        );

    pointer-events: none;
}


.bs-anniversary-player-cover img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        contrast(1.08)
        saturate(.88);

    transition:
        transform .7s ease,
        filter .7s ease;
}


.bs-anniversary-player-cover:hover img {
    transform: scale(1.03);

    filter:
        contrast(1.08)
        saturate(1);
}


/* =========================================================
   PLAYER MAIN
========================================================= */

.bs-anniversary-player-main {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   NOW PLAYING
========================================================= */

.bs-player-kicker {
    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 5px;

    text-transform: uppercase;
}


.bs-player-title {
    color: #fff;

    font-size: clamp(22px,2vw,34px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -1px;

    text-transform: uppercase;
}


.bs-player-artist {
    margin-top: 14px;

    color: rgba(255,255,255,.58);

    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 7px;

    text-transform: uppercase;
}


/* =========================================================
   PROGRESS
========================================================= */

.bs-player-progress-wrap {
    display: grid;

    grid-template-columns:
        55px
        minmax(0,1fr)
        55px;

    gap: 18px;

    align-items: center;

    margin-top: 34px;
}


.bs-player-current-time,
.bs-player-duration {
    color: rgba(255,255,255,.68);

    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}


.bs-player-duration {
    text-align: right;
}


.bs-player-progress {
    position: relative;

    height: 4px;

    background:
        rgba(255,255,255,.18);

    cursor: pointer;
}


.bs-player-progress span {
    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #9b7330,
            var(--gold-light)
        );

    box-shadow:
        0 0 12px rgba(183,151,92,.28);
}


.bs-player-progress i {
    position: absolute;

    top: 50%;
    left: 0;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background:
        var(--gold-light);

    box-shadow:
        0 0 18px rgba(183,151,92,.55);

    transform:
        translate(-50%,-50%);

    pointer-events: none;
}


/* =========================================================
   PLAYER CONTROLS
========================================================= */

.bs-player-controls {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 34px;

    margin-top: 30px;
}


.bs-player-controls button {
    width: 48px;
    height: 48px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 18px;

    cursor: pointer;

    transition:
        color .3s ease,
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.bs-player-controls button:hover {
    color: var(--gold-light);

    transform: scale(1.08);
}


.bs-player-play {
    width: 76px !important;
    height: 76px !important;

    border:
        2px solid var(--gold-light) !important;

    border-radius: 50%;

    background:
        rgba(183,151,92,.08) !important;

    color: #fff !important;

    font-size: 25px !important;

    box-shadow:
        0 0 28px rgba(183,151,92,.16);
}


.bs-player-play:hover {
    background:
        rgba(183,151,92,.14) !important;

    box-shadow:
        0 0 38px rgba(183,151,92,.28);
}


/* =========================================================
   SIDE SIGNATURE
========================================================= */

.bs-anniversary-player-side {
    align-self: stretch;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

    text-align: right;
}


.bs-anniversary-player-signature {
    color: rgba(183,151,92,.48);

    font-family:
        "Brittany Signature",
        "Brush Script MT",
        cursive;

    font-size: 56px;
    line-height: .85;

    transform: rotate(-7deg);
}


.bs-anniversary-player-side > span {
    margin-top: 30px;

    color: rgba(183,151,92,.65);

    font-size: 10px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 5px;

    text-transform: uppercase;
}


/* =========================================================
   TRACKLIST
========================================================= */

.bs-anniversary-tracklist {
    margin-top: 28px;
}


.bs-tracklist-label {
    margin-bottom: 13px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 4px;

    text-transform: uppercase;
}


.bs-anniversary-tracklist ol {
    margin: 0;
    padding: 0;

    list-style: none;

    counter-reset: track;
}


.bs-anniversary-tracklist li {
    position: relative;

    counter-increment: track;

    min-height: 52px;

    display: grid;

    grid-template-columns:
        70px
        minmax(0,1fr)
        80px;

    gap: 20px;

    align-items: center;

    padding: 0 28px;

    margin-bottom: 6px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 10px;

    background:
        rgba(8,8,8,.42);

    color:
        rgba(255,255,255,.68);

    cursor: pointer;

    transition:
        border-color .35s ease,
        color .35s ease,
        background .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}


.bs-anniversary-tracklist li::before {
    content:
        counter(track, decimal-leading-zero);

    color:
        rgba(255,255,255,.36);

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;

    transition:
        color .35s ease;
}


.bs-anniversary-tracklist li::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.16),
            rgba(183,151,92,.025)
        );

    transform:
        translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events: none;
}


.bs-anniversary-tracklist li:hover::after {
    transform: translateX(0);
}


.bs-anniversary-tracklist li:hover {
    color: #fff;

    border-color:
        rgba(183,151,92,.28);

    transform:
        translateX(4px);
}


.bs-anniversary-tracklist li.is-active {
    color: #fff;

    border-color:
        rgba(183,151,92,.85);

    background:
        rgba(183,151,92,.06);

    box-shadow:
        0 0 20px rgba(183,151,92,.10),
        inset 0 0 20px rgba(183,151,92,.025);
}


.bs-anniversary-tracklist li.is-active::before {
    color:
        var(--gold-light);
}


.bs-anniversary-tracklist li span,
.bs-anniversary-tracklist li time,
.bs-anniversary-tracklist li::before {
    position: relative;
    z-index: 2;
}


.bs-anniversary-tracklist li span {
    overflow: hidden;

    color: inherit;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    text-overflow: ellipsis;
    white-space: nowrap;

    text-transform: uppercase;
}


.bs-anniversary-tracklist li time {
    color:
        rgba(255,255,255,.48);

    font-size: 11px;
    font-weight: 500;

    text-align: right;
}




















/* =========================================================
   ANNIVERSARY PLAYER RESPONSIVE
   NEW PLAYER LAYOUT
========================================================= */


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */



/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px) {

    .bs-anniversary-player {
        padding:26px;
    }

    .bs-anniversary-player-top {
        margin-bottom:28px;
    }

    .bs-anniversary-player-meta {
        display:none;
    }

    .bs-anniversary-player-stage {
        grid-template-columns:
            190px
            minmax(0,1fr);

        gap:32px;

        min-height:0;
    }

    .bs-player-kicker {
        margin-bottom:14px;
    }

    .bs-player-title {
        font-size:36px;

        letter-spacing:-1px;
    }

    .bs-player-artist {
        font-size:13px;

        letter-spacing:5px;
    }

    .bs-player-progress-wrap {
        margin-top:26px;

        grid-template-columns:
            45px
            minmax(0,1fr)
            45px;

        gap:12px;
    }

    .bs-player-controls {
        margin-top:24px;

        gap:24px;
    }

    .bs-player-play {
        width:64px !important;
        height:64px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

        /* =========================================================
       ANNIVERSARY FEATURE
       NUR DER BEREICH ÜBER DEM PLAYER
    ========================================================= */

    .bs-anniversary-feature {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bs-anniversary-product {
        width: 100%;
        padding-top: 0;
    }

    .bs-anniversary-product-image {
        width: 88%;
        margin: 0 auto;
    }

    .bs-anniversary-product-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .bs-anniversary-story {
        width: 100%;
        max-width: none;
        padding-top: 0;
    }

    .bs-anniversary-story p {
        width: 100%;
        max-width: none;

        font-size: 16px;
        line-height: 1.8;
    }

    .bs-anniversary-actions {
        width: 88%;
        margin-left: auto;
        margin-right: auto;
    }

    .bs-anniversary-player {
        padding:22px;

        border-radius:14px;
    }


    /* TOP */

    .bs-anniversary-player-top {
        margin-bottom:25px;
    }

    .bs-anniversary-player-line {
        width:38px;
    }

    .bs-anniversary-player-brand {
        gap:13px;
    }

    .bs-anniversary-player-brand strong {
        font-size:12px;

        letter-spacing:4px;
    }

    .bs-anniversary-player-brand div span {
        font-size:7px;

        letter-spacing:2.5px;
    }

     .bs-anniversary-player-stage {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
    }


    /* COVER */

    .bs-anniversary-player-cover {
        width:180px;

        margin:
            0 auto
            30px;
    }


    /* PLAYER */

    .bs-anniversary-player-main {
        text-align:center;
    }

    .bs-player-kicker {
        margin-bottom:13px;

        font-size:9px;

        letter-spacing:4px;
    }

    .bs-player-title {
        font-size:
            clamp(30px,9vw,42px);

        letter-spacing:-1px;
    }

    .bs-player-artist {
        margin-top:11px;

        font-size:11px;

        letter-spacing:4px;
    }


    /* PROGRESS */

    .bs-player-progress-wrap {
        grid-template-columns:
            40px
            minmax(0,1fr)
            40px;

        gap:10px;

        margin-top:27px;

        text-align:left;
    }

    .bs-player-duration {
        text-align:right;
    }


    /* CONTROLS */

    .bs-player-controls {
        margin-top:26px;

        gap:24px;
    }

    .bs-player-controls button {
        width:42px;
        height:42px;
    }

    .bs-player-play {
        width:66px !important;
        height:66px !important;

        font-size:21px !important;
    }


    /* TRACKLIST */

    .bs-anniversary-tracklist {
        margin-top:34px;
    }

    .bs-anniversary-tracklist li {
        grid-template-columns:
            42px
            minmax(0,1fr)
            50px;

        gap:10px;

        min-height:48px;

        padding:
            0 15px;
    }

    .bs-anniversary-tracklist li::before {
        font-size:12px;
    }

    .bs-anniversary-tracklist li span {
        font-size:10px;

        letter-spacing:.5px;
    }

    .bs-anniversary-tracklist li time {
        font-size:9px;
    }

    .bs-discography-trigger {
    position: relative;
    padding-right: 58px;
}

/* PLUS MOBILE */

.bs-discography-trigger {
    position: relative;
    padding-right: 58px;
}

.bs-discography-plus {
    display: block !important;
    position: absolute !important;

    right: 18px !important;
    top: 80% !important;

    width: 32px;
    height: 32px;

    transform: translateY(-50%) !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 10;
}

.bs-discography-plus span {
    display: block !important;

    position: absolute;

    top: 50%;
    left: 50%;

    width: 22px !important;
    height: 1px !important;

    background: var(--gold) !important;

    opacity: 1;
    visibility: visible;

    transform: translate(-50%, -50%);
}

.bs-discography-plus span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.bs-discography-group.is-open
.bs-discography-plus span:last-child {
    opacity: 0;
}

    
.bs-discography-accordion {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bs-discography-period,
.bs-discography-chapter {
    transform: translateX(-15px);
    
} 


.bs-discography-count {
    position: absolute;

    left: 250px;
    top: 50%;

    width: 60px;

    transform: translateY(-50%) !important;

    margin: 0;

    text-align: left;
    white-space: normal;
}







/* =========================================================
   OPEN DISCOGRAPHY - MOBILE RELEASE LIST
========================================================= */

.bs-discography-panel .bs-discography-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


/* EIN RELEASE */

.bs-discography-panel .bs-release-card {
    display: grid;

    grid-template-columns:
        110px
        minmax(0, 1fr);

    gap: 22px;

    align-items: center;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


/* COVER */

.bs-discography-panel .bs-release-visual {
    width: 110px;
    margin: 0;
}

.bs-discography-panel .bs-release-visual img {
    display: block;

    width: 110px;
    height: 110px;

    object-fit: cover;
}


/* VINYL AUF MOBILE AUSBLENDEN */

.bs-discography-panel .bs-release-vinyl {
    display: none;
}


/* INFORMATION RECHTS */

.bs-discography-panel .bs-release-info {
    width: auto;
    margin: 0;

    text-align: left;
}


/* JAHR */

.bs-discography-panel .bs-release-year {
    margin-bottom: 7px;

    font-size: 10px;
    letter-spacing: 3px;
}


/* TITEL */

.bs-discography-panel .bs-release-info h3 {
    margin: 0 0 8px;

    font-size: 20px;
    line-height: 1.05;

    letter-spacing: -0.5px;
}


/* BAND / ARTIST */

.bs-discography-panel .bs-release-artist {
    margin: 0;

    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 2px;
}   

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .bs-anniversary-player {
        padding:
            20px 16px
            18px;
    }

    .bs-anniversary-player-cover {
        width:150px;

        margin-bottom:26px;
    }

    .bs-anniversary-player-line {
        width:28px;
    }

    .bs-anniversary-player-brand strong {
        font-size:11px;

        letter-spacing:3px;
    }

    .bs-anniversary-player-brand div span {
        display:none;
    }

    .bs-player-title {
        font-size:30px;
    }

    .bs-player-artist {
        font-size:10px;

        letter-spacing:3px;
    }

    .bs-player-progress-wrap {
        grid-template-columns:
            35px
            minmax(0,1fr)
            35px;

        gap:8px;
    }

    .bs-player-current-time,
    .bs-player-duration {
        font-size:8px;
    }

    .bs-player-controls {
        gap:18px;
    }

    .bs-player-play {
        width:60px !important;
        height:60px !important;
    }

    .bs-anniversary-tracklist li {
        grid-template-columns:
            32px
            minmax(0,1fr)
            42px;

        padding:
            0 10px;
    }

    .bs-anniversary-tracklist li span {
        font-size:9px;
    }

}



/* =========================================================
   DISCOGRAPHY ARCHIVE
========================================================= */

.bs-discography-archive {
    position: relative;

    padding: 160px 0 160px;

    overflow: hidden;

    border-top:
        1px solid rgba(255,255,255,.05);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(183, 151, 92, .08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #151411 0%,
            #11110f 45%,
            #0d0d0c 100%
        );
}


.bs-discography-archive-word {
    position: absolute;
    top: 90px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: rgba(183, 151, 92, .055);
    font-size: clamp(100px, 11vw, 190px);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -8px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
}


.bs-discography-intro {
    position: relative;
    z-index: 2;

    margin-bottom: 90px;
}


.bs-discography-intro h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(64px, 6vw, 100px);
    font-weight: 800;

    line-height: .84;
    letter-spacing: -5px;

    text-transform: uppercase;
}


.bs-discography-intro h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}

@media (max-width: 700px) {

    .bs-discography-archive {
    

    padding: 70px 0 70px;
    }

}



/* =========================================================
   ACCORDION
========================================================= */

.bs-discography-accordion {
    position: relative;
    z-index: 3;

    border-top:
        1px solid rgba(183, 151, 92, .30);
}


.bs-discography-group {
    border-bottom:
        1px solid rgba(183, 151, 92, .30);
}


.bs-discography-trigger {
    position: relative;

    width: 100%;
    min-height: 130px;

    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        auto
        45px;

    gap: 35px;
    align-items: center;

    padding: 0 25px;

    border: 0;

    background: transparent;

    cursor: pointer;
    text-align: left;

    overflow: hidden;

    transition:
        padding .35s ease,
        background .35s ease;
}

/* HOVER BACKGROUND */

.bs-discography-trigger::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform: translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events: none;
}


.bs-discography-trigger:hover::before {
    transform: translateX(0);
}


.bs-discography-trigger:hover {
    padding-left: 40px;
}


.bs-discography-period {
    color: #fff;

    font-size: clamp(30px, 3vw, 48px);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -2px;

    transition: color .3s ease;
}


.bs-discography-chapter {
    color: rgba(255,255,255,.38);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-discography-count {
    color: rgba(255,255,255,.35);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.bs-discography-trigger:hover
.bs-discography-period,

.bs-discography-group.is-open
.bs-discography-period {
    color: var(--gold-light);
}

@media (max-width:700px) {

    .bs-discography-chapter {
        font-size: 10px;
        line-height: 1.15;
        letter-spacing: 2px;
    }

    .bs-discography-count {
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: 2px;
    }

}



/* ---------------------------------------------------------
   PLUS / MINUS
--------------------------------------------------------- */

.bs-discography-plus {
    position: relative;

    display: block;

    width: 32px;
    height: 32px;
}


.bs-discography-plus span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 22px;
    height: 1px;

    background: var(--gold);

    transform:
        translate(-50%, -50%);

    transition:
        transform .35s ease,
        opacity .35s ease;
}


.bs-discography-plus span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


.bs-discography-group.is-open
.bs-discography-plus span:last-child {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(0deg);
}



/* =========================================================
   ACCORDION PANEL
========================================================= */

.bs-discography-panel {
    display: none;

    padding: 20px 0 90px;
}


.bs-discography-group.is-open
.bs-discography-panel {
    display: block;
}



/* =========================================================
   RELEASE GRID
========================================================= */

.bs-discography-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 70px 34px;
}


.bs-release-card {
    min-width: 0;
}


.bs-release-card.is-hidden {
    display: none;
}



/* ---------------------------------------------------------
   COVER + VINYL
--------------------------------------------------------- */

.bs-release-visual {
    position: relative;

    width: 100%;

    padding-right: 13%;

    margin-bottom: 30px;
}


.bs-release-visual img {
    position: relative;
    z-index: 3;

    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    box-shadow:
        0 22px 55px rgba(0,0,0,.48);

    transition:
        transform .55s cubic-bezier(.2,.7,.2,1),
        filter .55s ease;
}


/* CSS VINYL */

/* =========================================================
   RELEASE VISUAL
========================================================= */

.bs-release-visual {
    position: relative;
    overflow: visible;
}


/* =========================================================
   VINYL + COVER
========================================================= */

.bs-release-visual {
    position: relative;
    overflow: visible;
}


/* VINYL PNG */

.bs-release-vinyl {
    position: absolute;

    top: 5%;
    left: 5%;

    width: 90%;
    height: 90%;

    background:
        url("../images/disco/record.png")
        center / contain
        no-repeat;

    z-index: 1;

    transform: translateX(0);

    transition:
        transform .55s cubic-bezier(.22,.61,.36,1);

    pointer-events: none;
}


/* VINYL FÄHRT NUR HORIZONTAL RAUS */

.bs-release-card:hover .bs-release-vinyl {
    transform: translateX(50px);
}


/* COVER */

.bs-release-visual > img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: auto;

    box-sizing: border-box;

    border:
        1px solid rgba(215,181,105,.78);

    box-shadow:
        0 0 7px rgba(215,181,105,.25),
        0 0 18px rgba(215,181,105,.10);

    transition:
        box-shadow .4s ease;
}


/* COVER GLOW BEIM HOVER */

.bs-release-card:hover .bs-release-visual > img {
    box-shadow:
        0 0 9px rgba(215,181,105,.48),
        0 0 24px rgba(215,181,105,.18);
}

















/* ---------------------------------------------------------
   NO COVER PLACEHOLDER
--------------------------------------------------------- */

.bs-release-placeholder {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: 1 / 1;

    background:
        linear-gradient(
            135deg,
            #151515,
            #090909
        );

    border:
        1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.25);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}



/* ---------------------------------------------------------
   RELEASE INFORMATION
--------------------------------------------------------- */

.bs-release-year {
    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}


.bs-release-info h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -.5px;

    text-transform: uppercase;
}


.bs-release-artist {
    color: rgba(255,255,255,.42);

    font-size: 12px;
    font-weight: 600;

    line-height: 1.5;
    letter-spacing: 2px;

    text-transform: uppercase;
}



/* =========================================================
   SHOW ALL RELEASES
========================================================= */

.bs-discography-more {
    display: block;

    margin: 75px auto 0;

    padding: 16px 30px;

    border:
        1px solid rgba(183,151,92,.42);

    background: transparent;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.bs-discography-more:hover {
    border-color: var(--gold);

    background:
        rgba(183,151,92,.08);

    color: #fff;
}


















/* ANNIVERSARY */

.bs-discography-anniversary {
    padding:70px 0 30px;
}


/* BACKGROUND WORD */

.bs-discography-anniversary-word {
    top:180px;
    left:0;

    width:100%;

    font-size:18vw;
    line-height:.82;

    white-space:normal;

    text-align:center;

    opacity:.45;
}


/* INTRO GRID */

.bs-anniversary-grid {
    grid-template-columns:1fr;

    gap:55px;

    margin-top:45px;
}


/* IMAGE */

.bs-anniversary-visual {
    width:86%;

    margin:0 auto;
}

.bs-anniversary-visual img {
    width:100%;
    height:auto;

    aspect-ratio:4 / 5;

    object-fit:cover;
}


/* CONTENT */

.bs-anniversary-content {
    width:100%;
}

.bs-anniversary-content h2 {
    font-size:13vw;

    line-height:.88;
    letter-spacing:-3px;
}

.bs-anniversary-content p {
    font-size:16px;
    line-height:1.8;
}


/* =========================================================
   ANNIVERSARY PLAYER
========================================================= */

.bs-anniversary-player {
    padding:24px;

    border-radius:14px;
}




/* COVER */

.bs-anniversary-player-cover {
    width:250px;

    margin:
        0 auto
        32px;
}


/* MAIN */

.bs-anniversary-player-main {
    text-align:center;
}

.bs-player-kicker {
    margin-bottom:13px;

    font-size:9px;
    letter-spacing:4px;
}

.bs-player-title {
    font-size:30px;

    line-height:1;
    letter-spacing:-1px;
}

.bs-player-artist {
    margin-top:10px;

    font-size:10px;
    letter-spacing:4px;
}


/* PROGRESS */

.bs-player-progress-wrap {
    grid-template-columns:
        38px
        minmax(0,1fr)
        38px;

    gap:10px;

    margin-top:27px;

    text-align:left;
}

.bs-player-current-time,
.bs-player-duration {
    font-size:8px;
}

.bs-player-duration {
    text-align:right;
}


/* CONTROLS */

.bs-player-controls {
    gap:22px;

    margin-top:26px;
}

.bs-player-controls button {
    width:40px;
    height:40px;
}

.bs-player-play {
    width:64px !important;
    height:64px !important;

    font-size:21px !important;
}


/* SIDE SIGNATURE */

.bs-anniversary-player-side {
    display:none;
}


/* TRACKLIST */

.bs-anniversary-tracklist {
    margin-top:35px;
}

.bs-tracklist-label {
    margin-bottom:14px;
}

.bs-anniversary-tracklist li {
    grid-template-columns:
        40px
        minmax(0,1fr)
        48px;

    gap:10px;

    min-height:48px;

    padding:0 14px;

    border-radius:8px;
}

.bs-anniversary-tracklist li::before {
    font-size:11px;
}

.bs-anniversary-tracklist li span {
    font-size:10px;

    letter-spacing:.4px;
}

.bs-anniversary-tracklist li time {
    font-size:9px;
}














/* =========================================================
   GALLERY PAGE
========================================================= */

.bs-gallery-page {
    background: #080808;
}


/* =========================================================
   GALLERY HEADER
========================================================= */

.bs-gallery-header {
    position:relative;
    min-height:500px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#080808;
}

.bs-gallery-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/header/header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}

.bs-gallery-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-gallery-header-inner {
    position:relative;
    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}

.bs-gallery-header-content {
    max-width:850px;
}

.bs-gallery-header-content h1 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-gallery-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-gallery-header-content p {
    max-width:680px;

    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}

.bs-gallery-header-word {
   position: absolute;
    z-index: 0;
    width: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .035);
    font-size: clamp(110px, 14vw, 260px);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 700px) {
    .bs-gallery-header-bg {
        background-position: 75% 35%;
    }
}


/* =========================================================
   GALLERY INTRO
========================================================= */

.bs-gallery-intro {
    position: relative;

    padding: 120px 0 100px;

    background: #080808;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}


.bs-gallery-intro-grid {
    display: grid;

    grid-template-columns:
        .65fr
        1.35fr;

    gap: 80px;

    align-items: start;
}


.bs-gallery-intro-label {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-top: 12px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.bs-gallery-intro-line {
    width: 65px;

    height: 1px;

    background:
        rgba(183,151,92,.70);
}


.bs-gallery-intro-copy h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(52px, 6vw, 92px);

    font-weight: 800;

    line-height: .88;

    letter-spacing: -4px;

    text-transform: uppercase;
}


.bs-gallery-intro-copy h2 span {
    color: var(--gold-light);
}


.bs-gallery-intro-copy p {
    max-width: 650px;

    margin: 30px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   GALLERY ARCHIVE
========================================================= */

.bs-gallery-archive {
    position: relative;

    padding: 150px 0 150px;

    background:
    radial-gradient(
        circle at 15% 35%,
        rgba(183,151,92,.08),
        transparent 30%
    ),
    #080808;

    overflow: hidden;
}

/* =========================================================
   GALLERY SECTION HEAD
========================================================= */

.bs-gallery-section-head {
    margin-bottom:70px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;
}

.bs-gallery-section-count {
    color:rgba(255,255,255,.16);

    font-size:72px;
    font-weight:800;
    line-height:.8;
    letter-spacing:-4px;

    text-align:right;
}

.bs-gallery-section-count span {
    display:block;

    margin-top:12px;

    color:rgba(255,255,255,.35);

    font-size:18px;
    font-weight:700;
    line-height:1;
    letter-spacing:3px;

    text-transform:uppercase;
}

.bs-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-auto-flow: dense;

    gap: 22px;
}


/* =========================================================
   GALLERY ITEMS
========================================================= */

.bs-gallery-item {
    position: relative;

    min-width: 0;
}


.bs-gallery-item-large {
    grid-column: span 2;

    grid-row: span 2;
}


.bs-gallery-item-wide {
    grid-column: span 2;
}


.bs-gallery-item-tall {
    grid-row: span 2;
}


.bs-gallery-link {
    display: block;

    width: 100%;

    height: 100%;
}


.bs-gallery-image {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 320px;

    overflow: hidden;

    background: #101010;

    border: 1px solid rgba(183, 151, 92, .30);
}


.bs-gallery-item-large .bs-gallery-image,
.bs-gallery-item-tall .bs-gallery-image {
    min-height: 665px;
}


.bs-gallery-item-wide .bs-gallery-image {
    min-height: 320px;
}


.bs-gallery-image img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1);

    filter:
        grayscale(12%)
        contrast(1.03);

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


/* =========================================================
   GALLERY HOVER
========================================================= */

.bs-gallery-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(0,0,0,.15) 55%,
            rgba(0,0,0,.88) 100%
        );
}


.bs-gallery-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform: translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events: none;
}


.bs-gallery-link:hover
.bs-gallery-image::before {
    transform: translateX(0);
}


.bs-gallery-link:hover
.bs-gallery-image img {
    transform: scale(1.055);

    filter:
        grayscale(0%)
        contrast(1.05);
}


/* =========================================================
   GALLERY TEXT
========================================================= */

.bs-gallery-meta {
    position: absolute;

    left: 28px;

    right: 70px;

    bottom: 27px;

    z-index: 4;

    transform: translateY(8px);

    transition:
        transform .35s ease;
}


.bs-gallery-link:hover
.bs-gallery-meta {
    transform: translateY(0);
}


.bs-gallery-year {
    display: block;

    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-gallery-meta h3 {
    margin: 0;

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;
}


.bs-gallery-caption {
    display: block;

    margin-top: 8px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.45;
}


.bs-gallery-open {
    position: absolute;

    right: 24px;

    bottom: 24px;

    z-index: 5;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(183,151,92,.45);

    color: var(--gold-light);

    font-size: 24px;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.bs-gallery-link:hover
.bs-gallery-open {
    transform: rotate(90deg);

    border-color: var(--gold);

    background:
        rgba(183,151,92,.10);

    color: #fff;
}

.bs-section-word-gallery-story {
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


/* =========================================================
   EMPTY GALLERY
========================================================= */

.bs-gallery-empty {
    grid-column: 1 / -1;

    padding: 80px 0;

    color: rgba(255,255,255,.55);

    font-size: 16px;

    text-align: center;
}


/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.bs-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px 90px;

    background: rgba(8,8,8,.96);

    backdrop-filter: blur(14px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.bs-gallery-lightbox.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.bs-gallery-lightbox-inner {
    width: 100%;

    max-width: 1400px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        280px;

    gap: 45px;

    align-items: end;
}


.bs-gallery-lightbox-image {
    min-width: 0;

    display: flex;

    justify-content: center;
}


.bs-gallery-lightbox-image img {
    display: block;

    max-width: 100%;

    max-height: 78vh;

    object-fit: contain;

    box-shadow:
        0 30px 80px rgba(0,0,0,.55);
}


.bs-gallery-lightbox-info {
    padding-bottom: 10px;
}


.bs-gallery-lightbox-year {
    display: block;

    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.bs-gallery-lightbox-info h3 {
    margin: 0;

    color: #fff;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;
}


.bs-gallery-lightbox-info p {
    margin: 12px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 16px;

    line-height: 1.6;
}


.bs-gallery-lightbox-close,
.bs-gallery-lightbox-prev,
.bs-gallery-lightbox-next {
    position: absolute;

    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,.72);

    cursor: pointer;

    transition:
        color .3s ease,
        transform .3s ease;
}


.bs-gallery-lightbox-close:hover,
.bs-gallery-lightbox-prev:hover,
.bs-gallery-lightbox-next:hover {
    color: var(--gold-light);
}


.bs-gallery-lightbox-close {
    top: 28px;

    right: 35px;

    font-size: 42px;
}


.bs-gallery-lightbox-prev {
    top: 50%;

    left: 30px;

    transform: translateY(-50%);

    font-size: 60px;
}


.bs-gallery-lightbox-next {
    top: 50%;

    right: 30px;

    transform: translateY(-50%);

    font-size: 60px;
}


/* =========================================================
   GALLERY RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .bs-gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .bs-gallery-intro-grid {
        gap: 50px;
    }


    .bs-gallery-lightbox-inner {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 800px) {

    .bs-gallery-header {
        min-height: 500px;
        
    }


    .bs-gallery-header-content {
        padding-bottom: 55px;
    }


    .bs-gallery-header-content h1 {
        font-size: 17vw;

        letter-spacing: -3px;
    }



    .bs-gallery-intro {
        padding: 85px 0 75px;
    }


    .bs-gallery-intro-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .bs-gallery-intro-copy h2 {
        font-size: 12vw;

        letter-spacing: -3px;
    }


    .bs-gallery-archive {
        padding: 70px 0 100px;
    }


    .bs-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }


    .bs-gallery-item-large,
    .bs-gallery-item-wide,
    .bs-gallery-item-tall {
        grid-column: auto;

        grid-row: auto;
    }


    .bs-gallery-image,
    .bs-gallery-item-large .bs-gallery-image,
    .bs-gallery-item-wide .bs-gallery-image,
    .bs-gallery-item-tall .bs-gallery-image {
        min-height: 330px;
    }


    .bs-gallery-meta {
        left: 20px;

        right: 55px;

        bottom: 20px;
    }


    .bs-gallery-meta h3 {
        font-size: 18px;
    }


    .bs-gallery-open {
        right: 18px;

        bottom: 18px;

        width: 34px;

        height: 34px;
    }


    .bs-gallery-lightbox {
        padding:
            70px
            30px
            35px;
    }


    .bs-gallery-lightbox-prev {
        left: 8px;
    }


    .bs-gallery-lightbox-next {
        right: 8px;
    }

}


@media (max-width: 520px) {

    .bs-gallery-grid {
        grid-template-columns: 1fr;
    }


    .bs-gallery-image,
    .bs-gallery-item-large .bs-gallery-image,
    .bs-gallery-item-wide .bs-gallery-image,
    .bs-gallery-item-tall .bs-gallery-image {
        min-height: 430px;
    }


    .bs-gallery-lightbox {
        padding:
            75px
            20px
            30px;
    }


    .bs-gallery-lightbox-close {
        top: 18px;

        right: 20px;
    }


    .bs-gallery-lightbox-prev,
    .bs-gallery-lightbox-next {
        font-size: 45px;
    }

}

/* =========================================================
   VIDEO PAGE
========================================================= */

.bs-video-page {
    background:#080808;
}


/* =========================================================
   VIDEO HEADER
   BASIS: ABOUT
========================================================= */

.bs-video-header {
    position:relative;
    min-height:500px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#080808;
}

.bs-video-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/header/header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}

.bs-video-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-video-header-inner {
    position:relative;
    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}

.bs-video-header-content {
    max-width:850px;
}

.bs-video-header-content h1 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-video-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-video-header-content p {
    max-width:700px;
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}

@media (max-width: 700px) {
    .bs-video-header-bg {
        background-position: 75% 35%;
    }
}



/* =========================================================
   VIDEO INTRO
========================================================= */

.bs-video-intro {
    position:relative;

    padding:120px 0 100px;

    background:#080808;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.bs-video-intro-grid {
    display:grid;

    grid-template-columns:
        .65fr
        1.35fr;

    gap:80px;

    align-items:start;
}

.bs-video-intro-label {
    display:flex;
    align-items:center;
    gap:18px;

    padding-top:12px;

    color:rgba(255,255,255,.45);

    font-size:12px;
    font-weight:700;
    letter-spacing:2.5px;

    text-transform:uppercase;
}

.bs-video-intro-label strong {
    color:var(--gold-light);
}

.bs-video-intro-line {
    width:55px;
    height:1px;

    flex:0 0 auto;

    background:var(--gold);
}

.bs-video-intro-copy h2 {
    margin:0;

    color:#fff;

    font-size:clamp(52px,6vw,92px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-4px;

    text-transform:uppercase;
}

.bs-video-intro-copy h2 span {
    display:block;

    color:var(--gold-light);
}

.bs-video-intro-copy p {
    max-width:650px;

    margin:30px 0 0;

    color:rgba(255,255,255,.68);

    font-size:16px;
    line-height:1.75;
}


/* =========================================================
   VIDEO ARCHIVE
========================================================= */

.bs-video-archive {
    position:relative;

    padding:150px 0 150px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}


/* =========================================================
   VIDEO SECTION HEAD
========================================================= */

.bs-video-section-head {
    margin-bottom:70px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;
}

.bs-video-section-head h2 {
    margin:18px 0 0;

    color:#fff;

    font-size:clamp(48px,5.5vw,86px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-4px;

    text-transform:uppercase;
}

.bs-video-section-head h2 span {
    display:block;

    color:var(--gold-light);
}

.bs-video-section-count {
    color:rgba(255,255,255,.16);

    font-size:72px;
    font-weight:800;
    line-height:.8;
    letter-spacing:-4px;

    text-align:right;
}

.bs-video-section-count span {
    display:block;

    margin-top:12px;

    color:rgba(255,255,255,.35);

    font-size:18px;
    font-weight:700;
    line-height:1;
    letter-spacing:3px;

    text-transform:uppercase;
}


/* =========================================================
   VIDEO GRID
========================================================= */

.bs-video-grid {
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:58px 28px;
}

.bs-video-card {
    position:relative;

    min-width:0;
}

.bs-video-card-featured,
.bs-video-card-wide {
    grid-column:1 / -1;
}


/* =========================================================
   VIDEO TRIGGER
========================================================= */

.bs-video-trigger {
    position:relative;

    width:100%;

    margin:0;
    padding:0;

    display:block;

    border:0;
    outline:0;

    background:transparent;

    color:inherit;

    font:inherit;
    text-align:left;

    cursor:pointer;
}


/* =========================================================
   VIDEO IMAGE
========================================================= */

.bs-video-card-image {
    position:relative;

    aspect-ratio:16 / 9;

    overflow:hidden;

    background:#111;

    border: 1px solid rgba(183, 151, 92, .30);


}

.bs-video-card-featured .bs-video-card-image {
    aspect-ratio:2.15 / 1;
}

.bs-video-card-image img {
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    filter:
        grayscale(55%)
        contrast(1.05);

    transform:scale(1.01);

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .55s ease;
}


/* DARK IMAGE OVERLAY */

.bs-video-card-image::after {
    content:"";

    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 35%,
            rgba(0,0,0,.70) 100%
        );

    pointer-events:none;
}


/* GOLD SWEEP */

.bs-video-card-image::before {
    content:"";

    position:absolute;
    inset:0;

    z-index:2;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.14),
            rgba(183,151,92,.025)
        );

    transform:translateX(-101%);

    transition:
        transform .55s ease;

    pointer-events:none;
}

.bs-video-trigger:hover
.bs-video-card-image::before {
    transform:translateX(0);
}

.bs-video-trigger:hover
.bs-video-card-image img {
    transform:scale(1.055);

    filter:
        grayscale(0%)
        contrast(1.05);
}


/* =========================================================
   LARGE VIDEO NUMBER
========================================================= */

.bs-video-number {
    position:absolute;

    left:28px;
    bottom:18px;

    z-index:3;

    color:transparent;

    font-size:clamp(70px,8vw,145px);
    font-weight:900;
    line-height:.75;
    letter-spacing:-7px;

    -webkit-text-stroke:
        1px rgba(255,255,255,.16);

    pointer-events:none;

    transition:
        transform .45s ease,
        -webkit-text-stroke .45s ease;
}

.bs-video-trigger:hover
.bs-video-number {
    transform:translateX(8px);

    -webkit-text-stroke:
        1px rgba(255,255,255,.28);
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.bs-video-play {
    position:absolute;

    left:50%;
    top:50%;

    z-index:5;

    width:82px;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius:50%;

    background:
        rgba(8,8,8,.30);

    backdrop-filter:
        blur(8px);

    transform:
        translate(-50%,-50%);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}

.bs-video-play span {
    width:0;
    height:0;

    margin-left:5px;

    border-top:
        8px solid transparent;

    border-bottom:
        8px solid transparent;

    border-left:
        13px solid #fff;
}

.bs-video-trigger:hover
.bs-video-play {
    border-color:
        rgba(183,151,92,.9);

    background:
        rgba(183,151,92,.18);

    box-shadow:
        0 0 35px rgba(183,151,92,.25);

    transform:
        translate(-50%,-50%)
        scale(1.08);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.bs-video-card-content {
    padding:24px 5px 0;
}


/* YEAR + CAPTION */

.bs-video-card-meta {
    min-height:18px;

    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:12px;

    overflow:hidden;
}

.bs-video-card-meta span {
    color:var(--gold-light);

    font-size:10px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:2.2px;

    text-transform:uppercase;
}

.bs-video-card-year {
    flex:0 0 auto;
}

.bs-video-card-caption {
    min-width:0;

    overflow:hidden;

    text-overflow:ellipsis;

    white-space:nowrap;
}

.bs-video-card-caption::before {
    content:"";

    width:22px;
    height:1px;

    display:inline-block;

    margin-right:14px;
    margin-bottom:3px;

    background:
        rgba(183,151,92,.45);
}


/* SONG TITLE */

.bs-video-card-content h3 {
    margin:0;

    color:#fff;

    font-size:clamp(25px,2.4vw,38px);
    font-weight:800;
    line-height:1;
    letter-spacing:-1px;

    text-transform:uppercase;

    transition:
        color .35s ease;
}

.bs-video-trigger:hover
.bs-video-card-content h3 {
    color:var(--gold-light);
}


/* =========================================================
   EMPTY
========================================================= */

.bs-video-empty {
    margin:0;

    color:rgba(255,255,255,.55);

    font-size:16px;
}


/* =========================================================
   VIDEO LIGHTBOX
========================================================= */

.bs-video-lightbox {
    position:fixed;

    inset:0;

    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:60px;

    background:
        rgba(4,4,4,.96);

    backdrop-filter:
        blur(16px);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.bs-video-lightbox.is-open {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}


/* =========================================================
   LIGHTBOX INNER
========================================================= */

.bs-video-lightbox-inner {
    width:min(1450px,100%);

    display:grid;

    grid-template-columns:
        minmax(0,1.7fr)
        minmax(280px,.55fr);

    gap:55px;

    align-items:center;
}


/* =========================================================
   LIGHTBOX PLAYER
========================================================= */

.bs-video-lightbox-player {
    position:relative;
}

.bs-video-lightbox-frame {
    position:relative;

    aspect-ratio:16 / 9;

    overflow:hidden;

    background:#000;

    border:
        1px solid rgba(183,151,92,.28);

    box-shadow:
        0 30px 90px rgba(0,0,0,.65),
        0 0 50px rgba(183,151,92,.06);
}

.bs-video-lightbox-frame iframe {
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    border:0;
}


/* =========================================================
   LIGHTBOX INFO
========================================================= */

.bs-video-lightbox-info {
    position:relative;

    padding-left:30px;

    border-left:
        1px solid rgba(183,151,92,.35);
}

.bs-video-lightbox-meta {
    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:18px;
}

.bs-video-lightbox-meta span {
    color:var(--gold-light);

    font-size:10px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:2px;

    text-transform:uppercase;
}

.bs-video-lightbox-caption::before {
    content:"";

    width:22px;
    height:1px;

    display:inline-block;

    margin-right:14px;
    margin-bottom:3px;

    background:
        rgba(183,151,92,.45);
}

.bs-video-lightbox-info h3 {
    margin:0;

    color:#fff;

    font-size:clamp(32px,3vw,52px);
    font-weight:800;
    line-height:.95;
    letter-spacing:-2px;

    text-transform:uppercase;
}


/* =========================================================
   LIGHTBOX CLOSE
========================================================= */

.bs-video-lightbox-close {
    position:absolute;

    top:30px;
    right:35px;

    z-index:10;

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius:50%;

    background:
        rgba(255,255,255,.03);

    color:#fff;

    font-size:32px;
    font-weight:300;
    line-height:1;

    cursor:pointer;

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.bs-video-lightbox-close:hover {
    color:var(--gold-light);

    border-color:
        rgba(183,151,92,.55);

    transform:rotate(90deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1050px) {

    .bs-video-intro-grid {
        grid-template-columns:1fr;

        gap:40px;
    }


    .bs-video-lightbox {
        padding:40px;
    }

    .bs-video-lightbox-inner {
        grid-template-columns:1fr;

        gap:30px;
    }

    .bs-video-lightbox-info {
        padding-left:0;
        padding-top:25px;

        border-left:0;

        border-top:
            1px solid rgba(183,151,92,.28);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px) {

    /* HEADER */

    .bs-video-header {
        min-height:500px;
    }

    .bs-video-header-inner {
        padding-top:135px;
        padding-bottom:55px;
    }

    .bs-video-header-content h1 {
        font-size:17vw;
        line-height:.82;
        letter-spacing:-4px;
    }

    .bs-video-header-content p {
        max-width:100%;

        font-size:16px;
        line-height:1.65;
    }

    


    /* INTRO */

    .bs-video-intro {
        padding:85px 0 75px;
    }

    .bs-video-intro-copy h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }


    /* ARCHIVE */

    .bs-video-archive {
        padding:85px 0 100px;
    }

    .bs-video-section-head {
        margin-bottom:50px;

        align-items:flex-start;
    }

    .bs-video-section-count {
        font-size:48px;
    }


    /* GRID */

    .bs-video-grid {
        grid-template-columns:1fr;

        gap:46px;
    }

    .bs-video-card-featured,
    .bs-video-card-wide {
        grid-column:auto;
    }

    .bs-video-card-image,
    .bs-video-card-featured .bs-video-card-image {
        aspect-ratio:16 / 9;
    }


    /* CARD */

    .bs-video-card-content {
        padding-top:20px;
    }

    .bs-video-card-content h3 {
        font-size:30px;
    }

    .bs-video-play {
        width:66px;
        height:66px;
    }

    .bs-video-number {
        left:18px;
        bottom:13px;

        font-size:22vw;
    }


    /* LIGHTBOX */

    .bs-video-lightbox {
        padding:20px;
    }

    .bs-video-lightbox-close {
        top:15px;
        right:15px;

        width:44px;
        height:44px;
    }

    .bs-video-lightbox-inner {
        width:100%;
    }

    
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:520px) {

    .bs-video-section-head {
        display:block;
    }

    .bs-video-section-count {
        margin-top:35px;

        text-align:left;
    }


    .bs-video-card-meta {
        gap:10px;
    }

    .bs-video-card-meta span {
        font-size:9px;
        letter-spacing:1.6px;
    }

    .bs-video-card-caption::before {
        width:18px;
        margin-right:10px;
    }


    .bs-video-card-content h3 {
        font-size:26px;
    }


    .bs-video-lightbox {
        padding:15px;
    }

    .bs-video-lightbox-info h3 {
        font-size:30px;
    }
}

/* =========================================================
   COMPOSER PAGE
========================================================= */

.bs-composer-page {
    background:#080808;
}


/* =========================================================
   COMPOSER HEADER
   Layout reference: About Header
========================================================= */

.bs-composer-header {
    position:relative;
    min-height:500px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#080808;
}

.bs-composer-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/composer/composer-header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}

.bs-composer-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-composer-header-inner {
    position:relative;
    z-index:3;
    padding-top:150px;
    padding-bottom:75px;
}

.bs-composer-header-content {
    max-width:850px;
}

.bs-composer-header-content h1 {
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;
    text-transform:uppercase;
}

.bs-composer-header-content h1 span {
    display:block;
    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-composer-lead {
    max-width:680px;
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}

.bs-composer-lead strong {
    color: var(--gold-light);
    font-weight: 500;
}






/* =========================================================
   COMPOSER INTRO
========================================================= */

.bs-composer-intro {
    position:relative;

    padding:140px 0 130px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 12% 45%,
            rgba(183,151,92,.07),
            transparent 28%
        ),
        #080808;
}


.bs-composer-intro-grid {
    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
        minmax(0,.92fr)
        minmax(0,1.08fr);

    gap:100px;

    align-items:center;
}


/* =========================================================
   INTRO VISUAL
========================================================= */


.bs-composer-intro-visual {
    position:relative;
}

.bs-composer-intro-image {
    position:relative;

    overflow:visible;

    border: 1px solid rgba(183, 151, 92, .30);
}


/* GOLDEN GLOW */

.bs-composer-intro-image::before {
    content:"";

    position:absolute;
    z-index:0;

    inset:-45px;

    background:
        radial-gradient(
            circle at top right,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        );

    filter:blur(18px);

    pointer-events:none;
}


/* DARK IMAGE OVERLAY */

.bs-composer-intro-image::after {
    content:"";

    position:absolute;
    inset:0;

    z-index:2;

    background:
        linear-gradient(
            0deg,
            rgba(8,8,8,.58) 0%,
            transparent 42%
        );

    pointer-events:none;
}


/* IMAGE */

.bs-composer-intro-image img {
    position:relative;
    z-index:1;

    display:block;

    width:100%;
    height:720px;

    object-fit:cover;
    object-position:center;

    filter:
        grayscale(75%)
        contrast(1.06);

    transition:
        filter .7s ease,
        transform .7s ease;
}


/* IMAGE HOVER */

.bs-composer-intro-image:hover img {
    filter:
        grayscale(25%)
        contrast(1.04);
}


/* =========================================================
   GOLD CORNERS
========================================================= */

.bs-composer-intro-visual::after {
    content:"";

    position:absolute;

    inset:-12px;

    z-index:5;

    background:

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 1px 80px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 1px 80px no-repeat;

    pointer-events:none;
}


/* =========================================================
   INTRO BADGE
========================================================= */

.bs-composer-intro-badge {
    position:absolute;

    right: 535px;
    bottom: -35px;

    z-index:5;

    width:130px;
    height:130px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(183,151,92,.48);

    border-radius:50%;

    background:
        rgba(8,8,8,.88);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.4);
}


.bs-composer-intro-badge span {
    color:rgba(255,255,255,.45);

    font-size:9px;
    font-weight:700;
    letter-spacing:2.3px;

    text-transform:uppercase;
}


.bs-composer-intro-badge strong {
    margin-top:5px;

    color:var(--gold-light);

    font-size:13px;
    font-weight:800;
    letter-spacing:1.8px;

    text-transform:uppercase;
}


/* =========================================================
   INTRO COPY
========================================================= */

.bs-composer-intro-copy h2 {
    margin:22px 0 32px;

    color:#fff;

    font-size:clamp(54px,5.2vw,88px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-4px;

    text-transform:uppercase;
}


.bs-composer-intro-copy h2 span {
    display:block;

    color:var(--gold-light);
}


.bs-composer-intro-copy p {
    max-width:700px;

    margin:0 0 20px;

    color:rgba(255,255,255,.68);

    font-size:16px;
    line-height:1.78;
}


.bs-composer-intro-copy p:last-child {
    margin-bottom:0;
}


/* =========================================================
   COMPOSER STORY
========================================================= */

.bs-section-word-composer-intro {
    top:65px;
    left:50%;

    transform:translateX(-50%);

    text-align:center;
}
.bs-composer-story {
    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:#0a0a0a;

    border-top:
        1px solid rgba(255,255,255,.06);

    border-bottom:
        1px solid rgba(255,255,255,.06);
}




.bs-composer-story-grid {
    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
        minmax(0,.85fr)
        minmax(0,1.15fr);

    gap:100px;

    align-items:start;
}


.bs-composer-story-head h2 {
    margin:22px 0 0;

    color:#fff;

    font-size:clamp(52px,5.2vw,84px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-4px;

    text-transform:uppercase;
}


.bs-composer-story-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(183,151,92,.8);
}


.bs-composer-story-copy {
    max-width:720px;
}


.bs-composer-story-copy p {
    margin:0 0 22px;

    color:rgba(255,255,255,.66);

    font-size:16px;
    line-height:1.8;
}


.bs-composer-story-copy p:last-child {
    margin-bottom:0;
}


/* =========================================================
   COMPOSER IDENTITIES
========================================================= */

.bs-composer-identities {
    position:relative;

    padding:125px 0 135px;

    overflow:hidden;

    background:#080808;
}


.bs-composer-identities-head {
    max-width:900px;

    margin-bottom:70px;
}


.bs-composer-identities-head h2 {
    margin:22px 0 0;

    color:#fff;

    font-size:clamp(50px,5vw,82px);
    font-weight:800;
    line-height:.90;
    letter-spacing:-4px;

    text-transform:uppercase;
}


.bs-composer-identities-head h2 span {
    display:block;

    color:var(--gold-light);
}


.bs-composer-identities-grid {
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


/* =========================================================
   IDENTITY ITEM
========================================================= */

.bs-composer-identity {
    position:relative;

    min-height:235px;

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    overflow:hidden;

    border-right:
        1px solid rgba(255,255,255,.08);

    transition:
        padding .35s ease;
}


.bs-composer-identity:last-child {
    border-right:0;
}


/* EXACT SAME SWEEP PRINCIPLE AS DISCOGRAPHY */

.bs-composer-identity::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:
        translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events:none;
}


.bs-composer-identity:hover::before {
    transform:
        translateX(0);
}


.bs-composer-identity:hover {
    padding-left:45px;
}


.bs-composer-identity-number {
    position:relative;
    z-index:2;

    color:transparent;

    font-size:72px;
    font-weight:900;
    line-height:.8;
    letter-spacing:-4px;

    -webkit-text-stroke:
        1px rgba(255,255,255,.10);
}


.bs-composer-identity > div {
    position:relative;
    z-index:2;
}


.bs-composer-identity-type {
    display:block;

    margin-bottom:10px;

    color:var(--gold-light);

    font-size:9px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}


.bs-composer-identity h3 {
    margin:0;

    color:#fff;

    font-size:clamp(28px,2.4vw,40px);
    font-weight:800;
    line-height:1;
    letter-spacing:-1px;

    text-transform:uppercase;
}


/* =========================================================
   COMPOSER LIBRARY
========================================================= */

.bs-composer-library {
    position: relative;
    padding: 160px 0 170px;
    background: radial-gradient(circle at 85% 20%, rgba(183, 151, 92, .08), transparent 32%), linear-gradient(135deg, #151411 0%, #11110f 45%, #0d0d0c 100%);
    overflow: hidden;
}


/* =========================================================
   LIBRARY HEAD
========================================================= */

.bs-composer-library-head {
    margin-bottom:70px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:60px;
}


.bs-composer-library-head h2 {
    margin:22px 0 0;

    color:#fff;

    font-size:clamp(52px,5.5vw,88px);
    font-weight:800;
    line-height:.88;
    letter-spacing:-4px;

    text-transform:uppercase;
}


.bs-composer-library-head h2 span {
    display:block;

    color:var(--gold-light);
}


.bs-composer-library-head > p {
    max-width:400px;

    margin:0 0 5px;

    color:rgba(255,255,255,.48);

    font-size:16px;
    line-height:1.7;
}


/* =========================================================
   COMPOSER TABLE
========================================================= */

.bs-composer-table {
    border-top:
        1px solid rgba(183, 151, 92, .30);
}


/* =========================================================
   TABLE ROW
========================================================= */

.bs-composer-row {
    position:relative;

    min-height:125px;

    display:grid;

    grid-template-columns:
        90px
        minmax(220px,.9fr)
        minmax(300px,1.4fr)
        140px;

    gap:30px;

    align-items:center;

    padding:0 25px;

    overflow:hidden;

    border-bottom:
        1px solid rgba(183, 151, 92, .30);


    text-decoration:none;

    transition:
        padding .35s ease,
        background .35s ease;
}


/* EXACT DISCOGRAPHY GOLD SWEEP */

.bs-composer-row::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:
        translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events:none;
}


.bs-composer-row:hover::before {
    transform:
        translateX(0);
}


.bs-composer-row:hover {
    padding-left:40px;
}


/* =========================================================
   ROW NUMBER
========================================================= */

.bs-composer-row-number {
    position:relative;
    z-index:2;

    color:rgba(255,255,255,.22);

    font-size:20px;
    font-weight:700;
    letter-spacing:1px;
}


/* =========================================================
   PROVIDER
========================================================= */

.bs-composer-row-provider {
    position:relative;
    z-index:2;
}


.bs-composer-row-provider span {
    display:block;

    margin-bottom:7px;

    color:rgba(255,255,255,.28);

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}


.bs-composer-row-provider strong {
    display:block;

    color:rgba(255,255,255,.68);

    font-size:12px;
    font-weight:700;
    line-height:1.5;
    letter-spacing:1.3px;

    text-transform:uppercase;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.bs-composer-row-title {
    position:relative;
    z-index:2;
}


.bs-composer-row-title > span {
    display:block;

    margin-bottom:8px;

    color:var(--gold-light);

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}


.bs-composer-row-title h3 {
    margin:0;

    color:#fff;

    font-size:clamp(24px,2.1vw,34px);
    font-weight:800;
    line-height:1;
    letter-spacing:-1px;

    text-transform:uppercase;

    transition:
        color .35s ease;
}


.bs-composer-row:hover
.bs-composer-row-title h3 {
    color:var(--gold-light);
}


/* =========================================================
   ROW ACTION
========================================================= */

.bs-composer-row-action {
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:14px;

    color:rgba(255,255,255,.48);

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}


.bs-composer-row-arrow {
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius:50%;

    color:#fff;

    font-size:18px;

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease,
        background .3s ease;
}


.bs-composer-row:hover
.bs-composer-row-arrow {
    color:var(--gold-light);

    border-color:
        rgba(183,151,92,.6);

    background:
        rgba(183,151,92,.06);

    transform:
        translate(3px,-3px);
}





/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .bs-composer-intro-grid {
        gap:65px;
    }


    .bs-composer-story-grid {
        gap:65px;
    }


    .bs-composer-identities-grid {
        grid-template-columns:1fr;
    }


    .bs-composer-identity {
        min-height:170px;

        border-right:0;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }


    .bs-composer-identity:last-child {
        border-bottom:0;
    }


    .bs-composer-row {
        grid-template-columns:
            65px
            minmax(180px,.75fr)
            minmax(250px,1.3fr)
            110px;

        gap:22px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px) {

    /* HEADER */

    .bs-composer-header {
        min-height:500px;
    }


    .bs-composer-header-inner {
        padding-top:135px;
        padding-bottom:55px;
    }


    .bs-composer-header-content h1 {
        font-size:14vw;

        line-height:.84;

        letter-spacing:-4px;
    }


    .bs-composer-header-content p {
        max-width:100%;

        font-size:16px;
        line-height:1.65;
    }


    

    /* INTRO */

    .bs-composer-intro {
        padding:90px 0 95px;
    }


    .bs-composer-intro-grid {
        grid-template-columns:1fr;

        gap:65px;
    }


    .bs-composer-intro-visual {
        max-width:100%;
    }


    .bs-composer-intro-badge {
        right:20px;
        bottom:-28px;

        width:110px;
        height:110px;
    }


    .bs-composer-intro-copy h2 {
        font-size:13vw;

        letter-spacing:-3px;
    }


    /* STORY */

    .bs-composer-story {
        padding:90px 0;
    }


    .bs-composer-story-grid {
        grid-template-columns:1fr;

        gap:50px;
    }


    .bs-composer-story-head h2 {
        font-size:13vw;

        letter-spacing:-3px;
    }


    /* IDENTITIES */

    .bs-composer-identities {
        padding:90px 0 100px;
    }


    .bs-composer-identities-head {
        margin-bottom:50px;
    }


    .bs-composer-identities-head h2 {
        font-size:12vw;

        letter-spacing:-3px;
    }


    .bs-composer-identity {
        min-height:155px;

        padding:28px 20px;
    }


    .bs-composer-identity:hover {
        padding-left:30px;
    }


    .bs-composer-identity-number {
        font-size:54px;
    }


    /* LIBRARY */

    .bs-composer-library {
        padding:90px 0 110px;
    }


    .bs-composer-library-head {
        display:block;

        margin-bottom:50px;
    }


    .bs-composer-library-head h2 {
        font-size:12.5vw;

        letter-spacing:-3px;
    }


    .bs-composer-library-head > p {
        margin-top:30px;
    }


    /* TABLE */

    .bs-composer-row {
        min-height:auto;

        grid-template-columns:
            48px
            1fr
            52px;

        gap:18px;

        padding:28px 12px;
    }


    .bs-composer-row:hover {
        padding-left:20px;
    }


    .bs-composer-row-provider {
        display:none;
    }


    .bs-composer-row-action {
        justify-content:flex-end;
    }


    .bs-composer-row-action > span:first-child {
        display:none;
    }


    .bs-composer-row-arrow {
        width:40px;
        height:40px;
    }


    .bs-composer-row-title h3 {
        font-size:26px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .bs-composer-header-content h1 {
        font-size:13.5vw;
    }


    .bs-composer-intro-badge {
        left:25px;
        bottom: -28px;
        width:100px;
        height:100px;
    }


    .bs-composer-row {
        grid-template-columns:
            38px
            1fr
            42px;

        gap:12px;
    }


    .bs-composer-row-number {
        font-size:15px;
    }


    .bs-composer-row-title > span {
        font-size:8px;

        letter-spacing:1.5px;
    }


    .bs-composer-row-title h3 {
        font-size:23px;
    }


    .bs-composer-row-arrow {
        width:36px;
        height:36px;

        font-size:16px;
    }
}

/* =========================================================
   STUDIO PAGE
========================================================= */

.bs-studio-page {
    background:#080808;
}



/* =========================================================
   STUDIO HEADER
========================================================= */

.bs-studio-header {
    position:relative;
    min-height:500px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#080808;
}

.bs-studio-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/studio/studio-header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}

.bs-studio-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-studio-header-inner {
    position:relative;
    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}

.bs-studio-header-content {
    max-width:850px;
}

.bs-studio-header-content h1 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-studio-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-studio-lead {
    max-width:680px;
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}

.bs-studio-lead strong {
    color:var(--gold-light);
    font-weight:500;
}



/* =========================================================
   STUDIO INTRO
========================================================= */

.bs-studio-intro {
    position:relative;

    padding:210px 0;

    overflow:hidden;

    background:#080808;
}

.bs-section-word-studio-intro {
    top:65px;
    left:50%;

    transform:translateX(-50%);

    text-align:center;
}

.bs-studio-intro .bs-container {
    position:relative;
    z-index:2;
}

.bs-studio-intro-grid {
    display:grid;

    grid-template-columns:
        minmax(0,.92fr)
        minmax(0,1.08fr);

    gap:100px;

    align-items:center;
}



/* =========================================================
   STUDIO INTRO IMAGE
========================================================= */

.bs-studio-intro-visual {
    position:relative;
}

.bs-studio-intro-image {
    position:relative;

    overflow:visible;

    border: 1px solid rgba(183, 151, 92, .30);
}


/* GOLDEN GLOW */

.bs-studio-intro-image::before {
    content:"";

    position:absolute;
    z-index:0;

    inset:-45px;

    background:
        radial-gradient(
            circle at top right,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(183,151,92,.18) 0%,
            rgba(183,151,92,.08) 30%,
            transparent 65%
        );

    filter:blur(18px);

    pointer-events:none;
}


/* DARK IMAGE OVERLAY */

.bs-studio-intro-image::after {
    content:"";

    position:absolute;
    inset:0;

    z-index:2;

    background:
        linear-gradient(
            0deg,
            rgba(8,8,8,.58) 0%,
            transparent 42%
        );

    pointer-events:none;
}


/* IMAGE */

.bs-studio-intro-image img {
    position:relative;
    z-index:1;

    display:block;

    width:100%;
    height:720px;

    object-fit:cover;
    object-position:center;

    filter:
        grayscale(75%)
        contrast(1.06);

    transition:
        filter .7s ease,
        transform .7s ease;
}


/* IMAGE HOVER */

.bs-studio-intro-image:hover img {
    filter:
        grayscale(25%)
        contrast(1.04);
}


/* =========================================================
   GOLD CORNERS
========================================================= */

.bs-studio-intro-visual::after {
    content:"";

    position:absolute;

    inset:-12px;

    z-index:5;

    background:

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) left top / 1px 80px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 80px 1px no-repeat,

        linear-gradient(
            var(--gold),
            var(--gold)
        ) right bottom / 1px 80px no-repeat;

    pointer-events:none;
}



/* =========================================================
   STUDIO BADGE
========================================================= */

.bs-studio-intro-badge {
    position:absolute;
    z-index:4;

    right: 535px;
    bottom:-35px;

    width:125px;
    height:125px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(183,151,92,.65);
    border-radius:50%;

    background:#0a0a0a;

    box-shadow:
        0 0 35px rgba(183,151,92,.12);

    text-align:center;
}

.bs-studio-intro-badge span {
    display:block;

    margin-bottom:4px;

    color:rgba(255,255,255,.48);

    font-size:9px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;
}

.bs-studio-intro-badge strong {
    display:block;

    color:var(--gold-light);

    font-size:14px;
    font-weight:800;
    letter-spacing:1px;

    text-transform:uppercase;
}



/* =========================================================
   STUDIO INTRO COPY
========================================================= */

.bs-studio-intro-copy h2 {
    margin:22px 0 35px;

    color:#fff;

    font-size:clamp(55px,5.5vw,92px);
    font-weight:800;
    line-height:.86;
    letter-spacing:-4px;

    text-transform:uppercase;
}

.bs-studio-intro-copy h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}

.bs-studio-intro-copy p {
    max-width:700px;

    margin:0 0 20px;

    color:rgba(255,255,255,.68);

    font-size:16px;
    line-height:1.78;
}

.bs-studio-actions {
    margin-top:40px;
}



/* =========================================================
   EXPERIENCE
========================================================= */

.bs-studio-experience {
    position:relative;

    padding:130px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;

    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.bs-studio-experience-head {
    margin-bottom:70px;
}

.bs-studio-experience-head h2 {
    margin:20px 0 0;

    color:#fff;

    font-size:clamp(60px,6vw,100px);
    font-weight:800;
    line-height:.86;
    letter-spacing:-5px;

    text-transform:uppercase;
}

.bs-studio-experience-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}



/* =========================================================
   EXPERIENCE FACTS
========================================================= */

.bs-studio-facts {
    display:grid;

    grid-template-columns:repeat(3,1fr);

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.bs-studio-fact {
    position:relative;

    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:40px;

    overflow:hidden;

    border-right:1px solid rgba(255,255,255,.08);
}

.bs-studio-fact:last-child {
    border-right:0;
}

.bs-studio-fact::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:translateX(-100%);

    transition:transform .5s ease;
}

.bs-studio-fact:hover::before {
    transform:translateX(0);
}

.bs-studio-fact strong,
.bs-studio-fact span {
    position:relative;
    z-index:2;
}

.bs-studio-fact strong {
    display:block;

    margin-bottom:15px;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.65);

    font-size:clamp(60px,6vw,100px);
    font-weight:800;
    line-height:.8;
    letter-spacing:-4px;
}

.bs-studio-fact span {
    color:var(--gold-light);

    font-size:11px;
    font-weight:800;
    letter-spacing:2.5px;

    text-transform:uppercase;
}



/* =========================================================
   SESSION PROCESS
========================================================= */

.bs-studio-process {
    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:#0a0a0a;
}

.bs-studio-process-head {
    max-width:850px;

    margin-bottom:80px;
}

.bs-studio-process-head h2 {
    margin:20px 0 30px;

    color:#fff;

    font-size:clamp(60px,6vw,100px);
    font-weight:800;
    line-height:.86;
    letter-spacing:-5px;

    text-transform:uppercase;
}

.bs-studio-process-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}

.bs-studio-process-head p {
    max-width:620px;

    margin:0;

    color:rgba(255,255,255,.58);

    font-size:16px;
    line-height:1.8;
}



/* =========================================================
   PROCESS GRID
========================================================= */

.bs-studio-process-grid {
    display:grid;

    grid-template-columns:repeat(4,1fr);

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.bs-studio-process-item {
    position:relative;

    min-height:360px;

    padding:45px 35px;

    overflow:hidden;

    border-right:1px solid rgba(255,255,255,.08);

    transition:padding .35s ease;
}

.bs-studio-process-item:last-child {
    border-right:0;
}

.bs-studio-process-item::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:translateX(-100%);

    transition:transform .5s ease;
}

.bs-studio-process-item:hover::before {
    transform:translateX(0);
}

.bs-studio-process-item:hover {
    padding-left:45px;
}

.bs-studio-process-number,
.bs-studio-process-item h3,
.bs-studio-process-item p {
    position:relative;
    z-index:2;
}

.bs-studio-process-number {
    display:block;

    margin-bottom:70px;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.20);

    font-size:70px;
    font-weight:800;
    line-height:1;
}

.bs-studio-process-item h3 {
    margin:0 0 18px;

    color:#fff;

    font-size:21px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-.5px;

    text-transform:uppercase;
}

.bs-studio-process-item p {
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:16px;
    line-height:1.75;
}



/* =========================================================
   STUDIO CREDITS
========================================================= */

.bs-studio-credits {
    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:#080808;
}

.bs-studio-credits-head {
    margin-bottom:65px;
}

.bs-studio-credits-head h2 {
    margin:20px 0 0;

    color:#fff;

    font-size:clamp(60px,6vw,100px);
    font-weight:800;
    line-height:.86;
    letter-spacing:-5px;

    text-transform:uppercase;
}

.bs-studio-credits-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}



/* =========================================================
   CREDIT LIST
========================================================= */

.bs-studio-credits-list {
    border-top:1px solid rgba(255,255,255,.08);
}

.bs-studio-credit {
    position:relative;

    min-height:100px;

    display:grid;

    grid-template-columns:90px 1fr;

    align-items:center;

    padding:0 25px;

    overflow:hidden;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:
        padding .35s ease,
        background .35s ease;
}

.bs-studio-credit::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:translateX(-100%);

    transition:transform .5s ease;
}

.bs-studio-credit:hover::before {
    transform:translateX(0);
}

.bs-studio-credit:hover {
    padding-left:40px;
}

.bs-studio-credit span,
.bs-studio-credit strong {
    position:relative;
    z-index:2;
}

.bs-studio-credit span {
    color:var(--gold);

    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}

.bs-studio-credit strong {
    color:#fff;

    font-size:clamp(24px,2.5vw,40px);
    font-weight:800;
    letter-spacing:-1px;

    text-transform:uppercase;
}



/* =========================================================
   FINAL HIRE
========================================================= */

.bs-studio-hire {
    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(183,151,92,.09),
            transparent 32%
        ),
        #0a0a0a;

    border-top:1px solid rgba(255,255,255,.06);
}

.bs-studio-hire-inner {
    max-width:900px;
}

.bs-studio-hire-inner h2 {
    margin:22px 0 30px;

    color:#fff;

    font-size:clamp(60px,6vw,105px);
    font-weight:800;
    line-height:.84;
    letter-spacing:-5px;

    text-transform:uppercase;
}

.bs-studio-hire-inner h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}

.bs-studio-hire-inner p {
    max-width:650px;

    margin:0 0 40px;

    color:rgba(255,255,255,.62);

    font-size:16px;
    line-height:1.8;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .bs-studio-intro-grid {
        gap:65px;
    }

    .bs-studio-facts {
        grid-template-columns:1fr 1fr 1fr;
    }

    .bs-studio-process-grid {
        grid-template-columns:1fr 1fr;
    }

    .bs-studio-process-item:nth-child(2) {
        border-right:0;
    }

    .bs-studio-process-item:nth-child(-n+2) {
        border-bottom:1px solid rgba(255,255,255,.08);
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px) {

    /* HEADER */

    .bs-studio-header {
        min-height:500px;
    }

    .bs-studio-header-bg {
        background-position:center center;
    }

    .bs-studio-header-inner {
        padding-top:140px;
        padding-bottom:60px;
    }

    .bs-studio-header-content h1 {
        font-size:17vw;
        line-height:.82;
        letter-spacing:-3px;
    }

    .bs-studio-lead {
        max-width:100%;

        font-size:16px;
        line-height:1.65;
    }



    /* INTRO */

    .bs-studio-intro {
        padding:90px 0;
    }

    .bs-section-word-studio-intro {
        top:40px;
    }

    .bs-studio-intro-grid {
        grid-template-columns:1fr;

        gap:70px;
    }

    .bs-studio-intro-visual {
        width:100%;
    }

    .bs-studio-intro-badge {
        right:20px;
        bottom:-28px;

        width:105px;
        height:105px;
    }

    .bs-studio-intro-copy h2 {
        font-size:13vw;
        line-height:.88;
        letter-spacing:-3px;
    }



    /* EXPERIENCE */

    .bs-studio-experience {
        padding:90px 0;
    }

    .bs-studio-experience-head {
        margin-bottom:50px;
    }

    .bs-studio-experience-head h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }

    .bs-studio-facts {
        grid-template-columns:1fr;
    }

    .bs-studio-fact {
        min-height:170px;

        padding:35px 25px;

        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .bs-studio-fact:last-child {
        border-bottom:0;
    }



    /* PROCESS */

    .bs-studio-process {
        padding:90px 0;
    }

    .bs-studio-process-head {
        margin-bottom:50px;
    }

    .bs-studio-process-head h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }

    .bs-studio-process-grid {
        grid-template-columns:1fr;
    }

    .bs-studio-process-item {
        min-height:auto;

        padding:35px 25px;

        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .bs-studio-process-item:nth-child(2) {
        border-right:0;
    }

    .bs-studio-process-item:last-child {
        border-bottom:0;
    }

    .bs-studio-process-item:hover {
        padding-left:35px;
    }

    .bs-studio-process-number {
        margin-bottom:35px;

        font-size:55px;
    }



    /* CREDITS */

    .bs-studio-credits {
        padding:90px 0;
    }

    .bs-studio-credits-head {
        margin-bottom:50px;
    }

    .bs-studio-credits-head h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }

    .bs-studio-credit {
        min-height:90px;

        grid-template-columns:55px 1fr;

        padding:0 15px;
    }

    .bs-studio-credit:hover {
        padding-left:25px;
    }

    .bs-studio-credit strong {
        font-size:24px;
    }



    /* HIRE */

    .bs-studio-hire {
        padding:90px 0;
    }

    .bs-studio-hire-inner h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .bs-studio-header-content h1 {
        font-size:17vw;
    }

    .bs-studio-intro-copy h2,
    .bs-studio-experience-head h2,
    .bs-studio-process-head h2,
    .bs-studio-credits-head h2,
    .bs-studio-hire-inner h2 {
        font-size:13vw;
    }

    .bs-studio-intro-badge {
        left:25px;
        bottom:-28px;

        width:95px;
        height:95px;
    }

    .bs-studio-fact strong {
        font-size:70px;
    }

    .bs-studio-credit {
        grid-template-columns:45px 1fr;
    }

    .bs-studio-credit strong {
        font-size:21px;
    }

}

/* =========================================================
   LIVE DATES PAGE
========================================================= */

.bs-live-page {
    background:#080808;
}


/* =========================================================
   LIVE HEADER
========================================================= */

.bs-live-header {
    position:relative;
    min-height:500px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;

    background:#080808;
}

.bs-live-header-bg {
    position:absolute;
    inset:0;

    background:
        url("../images/live/live-header.jpg")
        center 35% / cover no-repeat;

    filter:
        grayscale(65%)
        contrast(1.08);
}

.bs-live-header-overlay {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.96) 0%,
            rgba(8,8,8,.74) 38%,
            rgba(8,8,8,.32) 68%,
            rgba(8,8,8,.18) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 45%
        );
}

.bs-live-header-inner {
    position:relative;
    z-index:3;

    padding-top:150px;
    padding-bottom:75px;
}

.bs-live-header-content {
    max-width:850px;
}

.bs-live-header-content h1 {
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(76px,8vw,135px);
    font-weight:800;
    line-height:.78;
    letter-spacing:-7px;

    text-transform:uppercase;
}

.bs-live-header-content h1 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.bs-live-lead {
    max-width:680px;
    margin:0;

    color:rgba(255,255,255,.58);

    font-size:20px;
    line-height:1.8;
    letter-spacing:.5px;
}

.bs-live-lead strong {
    color:var(--gold-light);
    font-weight:500;
}


/* =========================================================
   UPCOMING SECTION
========================================================= */

.bs-live-dates {
    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(183,151,92,.08),
            transparent 30%
        ),
        #080808;
}

.bs-live-dates .bs-container {
    position:relative;
    z-index:2;
}

.bs-section-word-live {
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.bs-live-section-head {
    margin-bottom:70px;
}

.bs-live-section-head h2 {
    margin:20px 0 0;

    color:#fff;

    font-size:clamp(60px,6vw,100px);
    font-weight:800;
    line-height:.86;
    letter-spacing:-5px;

    text-transform:uppercase;
}

.bs-live-section-head h2 span {
    display:block;

    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.42);
}


/* =========================================================
   TABLE HEAD
========================================================= */

.bs-live-table-head {
    display:grid;

    grid-template-columns:
        1.3fr
        1fr
        .7fr
        .8fr
        1.2fr
        1.4fr
        34px;

    gap:30px;
    align-items:center;

    padding:0 26px 18px;

    color:rgba(255,255,255,.32);

    font-size:15px;
    font-weight:800;
    line-height:1;
    letter-spacing:2px;

    text-transform:uppercase;
}


/* =========================================================
   TABLE
========================================================= */

.bs-live-table {
    border-top:1px solid rgba(183, 151, 92, .30);
}


/* =========================================================
   ROW
========================================================= */

.bs-live-row {
    position:relative;

    display:grid;

    grid-template-columns:
        1.3fr
        1fr
        .7fr
        .8fr
        1.2fr
        1.4fr
        34px;

    gap:30px;
    align-items:center;

    min-height:110px;

    padding:0 26px;

    overflow:hidden;

    border-bottom:1px solid rgba(183, 151, 92, .30);

    color:inherit;
    text-decoration:none;

    transition:
        padding .35s ease,
        opacity .35s ease;
}


/* =========================================================
   GOLD SWEEP
========================================================= */

.bs-live-row::before {
    content:"";

    position:absolute;
    inset:0;

    z-index:0;

    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.12),
            rgba(183,151,92,.025)
        );

    transform:translateX(-100%);

    transition:
        transform .5s ease;

    pointer-events:none;
}

.bs-live-row:hover::before {
    transform:translateX(0);
}

.bs-live-row:hover {
    padding-left:40px;
}

.bs-live-row > * {
    position:relative;
    z-index:1;
}


/* =========================================================
   DATE
========================================================= */

.bs-live-date {
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:9px 10px;
}

.bs-live-date strong {
    color:#fff;

    font-size:17px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.6px;

    white-space:nowrap;
}


/* =========================================================
   CALENDAR ICON
========================================================= */

.bs-live-calendar {
    width:auto;
    height:auto;

    color:var(--gold-light);

    font-size:19px;
    line-height:1;
}


/* =========================================================
   NEXT SHOW BADGE
========================================================= */

.bs-live-next-badge {
    position:absolute;

    top: -30px;
    right: 150px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:5px 9px;

    border:1px solid rgba(183,151,92,.38);
    border-radius:100px;

    background:rgba(183,151,92,.08);

    color:var(--gold-light);

    font-size:8px;
    font-weight:800;
    line-height:1;
    letter-spacing:1.2px;

    white-space:nowrap;
    text-transform:uppercase;
}


/* =========================================================
   NEXT SHOW ROW
========================================================= */

.bs-live-row.is-next {
    background:
        linear-gradient(
            90deg,
            rgba(183,151,92,.075),
            transparent 55%
        );
}

.bs-live-row.is-next .bs-live-date strong {
    color:var(--gold-light);
}


/* =========================================================
   CITY
========================================================= */

.bs-live-city {
    color:#fff;

    font-size:16px;
    font-weight:700;
    line-height:1.4;
}


/* =========================================================
   COUNTRY
========================================================= */

.bs-live-country {
    color:rgba(255,255,255,.48);

    font-size:12px;
    font-weight:800;
    line-height:1.4;
    letter-spacing:1.5px;

    text-transform:uppercase;
}


/* =========================================================
   PROJECT
========================================================= */

.bs-live-project {
    color:var(--gold-light);

    font-size:12px;
    font-weight:800;
    line-height:1.4;
    letter-spacing:1.5px;

    text-transform:uppercase;
}


/* =========================================================
   VENUE
========================================================= */

.bs-live-venue {
    color:rgba(255,255,255,.58);

    font-size:15px;
    line-height:1.5;
}


/* =========================================================
   EVENT
========================================================= */

.bs-live-event {
    color:rgba(255,255,255,.84);

    font-size:15px;
    font-weight:700;
    line-height:1.45;
}


/* =========================================================
   ARROW
========================================================= */

.bs-live-arrow {
    display:flex;
    align-items:center;
    justify-content:flex-end;

    width:34px;

    text-align:right;
}

.bs-live-arrow span {
    display:block;

    color:rgba(255,255,255,.34);

    font-size:21px;
    line-height:1;

    transition:
        color .3s ease,
        transform .3s ease;
}

.bs-live-row:hover .bs-live-arrow span {
    color:var(--gold-light);

    transform:translate(3px,-3px);
}


/* =========================================================
   EMPTY
========================================================= */

.bs-live-empty {
    padding:55px 26px;

    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.bs-live-empty p {
    margin:0;

    color:rgba(255,255,255,.48);

    font-size:16px;
}


/* =========================================================
   PAST ROWS
========================================================= */

.bs-live-row.is-past {
    opacity:.32;
}

.bs-live-row.is-past .bs-live-date strong,
.bs-live-row.is-past .bs-live-city,
.bs-live-row.is-past .bs-live-country,
.bs-live-row.is-past .bs-live-project,
.bs-live-row.is-past .bs-live-venue,
.bs-live-row.is-past .bs-live-event {
    color:rgba(255,255,255,.42);
}

.bs-live-row.is-past:hover {
    opacity:.60;
}


/* =========================================================
   TABLET
========================================================= */

/* =========================================================
   LIVE DATES SECTION HEAD
========================================================= */

.bs-live-section-head {
    margin-bottom:70px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;
}

.bs-live-section-count {
    color:rgba(255,255,255,.16);

    font-size:72px;
    font-weight:800;
    line-height:.8;
    letter-spacing:-4px;

    text-align:right;
}

.bs-live-section-count span {
    display:block;

    margin-top:12px;

    color:rgba(255,255,255,.35);

    font-size:18px;
    font-weight:700;
    line-height:1;
    letter-spacing:3px;

    text-transform:uppercase;
}

@media (max-width:1200px) {

    .bs-live-table-head,
    .bs-live-row {
        grid-template-columns:
            minmax(155px,1.2fr)
            minmax(105px,.8fr)
            55px
            75px
            minmax(140px,1fr)
            minmax(160px,1.2fr)
            30px;

        gap:18px;
    }

    .bs-live-table-head {
        padding-left:20px;
        padding-right:20px;
    }

    .bs-live-row {
        padding-left:20px;
        padding-right:20px;
    }

    .bs-live-row:hover {
        padding-left:30px;
    }

    .bs-live-date strong {
        font-size:15px;
    }

    .bs-live-city {
        font-size:15px;
    }

    .bs-live-venue,
    .bs-live-event {
        font-size:14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:800px) {

    /* HEADER */

    .bs-live-header {
        min-height:500px;
    }

    .bs-live-header-bg {
        background-position:center center;
    }

    .bs-live-header-inner {
        padding-top:140px;
        padding-bottom:60px;
    }

    .bs-live-header-content h1 {
        font-size:17vw;
        line-height:.82;
        letter-spacing:-3px;
    }

    .bs-live-lead {
        max-width:100%;

        font-size:16px;
        line-height:1.65;
    }


    /* SECTION */

    .bs-live-dates {
        padding:90px 0;
    }

    .bs-section-word-live {
        top:40px;
    }

    .bs-live-section-head {
        margin-bottom:50px;
    }

    .bs-live-section-head h2 {
        font-size:13vw;
        letter-spacing:-3px;
    }


    /* TABLE HEAD */

    .bs-live-table-head {
        display:none;
    }


    /* ROW */

    .bs-live-row {
        display:grid;

        grid-template-columns:
            1fr
            auto;

        gap:10px 18px;

        min-height:0;

        padding:28px 18px;
    }

    .bs-live-row:hover {
        padding-left:25px;
    }


    /* DATE */

    .bs-live-date {
        grid-column:1;
        grid-row:1;

        gap:8px;
    }

    .bs-live-date strong {
        font-size:16px;
    }


    /* ARROW */

    .bs-live-arrow {
        grid-column:2;
        grid-row:1;

        align-self:center;

        width:auto;
    }


    /* CITY */

    .bs-live-city {
        grid-column:1 / -1;

        margin-top:6px;

        font-size:20px;
    }


    /* COUNTRY + PROJECT */

    .bs-live-country,
    .bs-live-project {
        width:max-content;

        font-size:15px;
    }


    /* VENUE */

    .bs-live-venue {
        grid-column:1 / -1;

        margin-top:6px;

        color:rgba(255,255,255,.50);

        font-size:14px;
    }


    /* EVENT */

    .bs-live-event {
        grid-column:1 / -1;

        color:rgba(255,255,255,.84);

        font-size:16px;
        font-weight:700;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .bs-live-header-content h1 {
        font-size:17vw;
    }

    .bs-live-section-head h2 {
        font-size:13vw;
    }

    .bs-live-row {
        padding:26px 15px;
    }

    .bs-live-row:hover {
        padding-left:20px;
    }

    .bs-live-date strong {
        font-size:15px;
    }

    .bs-live-next-badge {
        
        padding:5px 8px;

        font-size:8px;
        
        top: 0px;
        left: 140px;
        right: auto;
    
    }

    .bs-live-city {
        font-size:19px;
    }

    .bs-live-event {
        font-size:15px;
    }

}


/* =========================================================
   LEGAL PAGES
========================================================= */

.bs-legal-page {
    background: #080808;
    color: #bdbdbd;
}


/* HEADER */

.bs-legal-header {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #080808;
}


.bs-legal-header-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(183, 151, 92, .45) 0%,
            rgba(183, 151, 92, .22) 25%,
            rgba(183, 151, 92, .08) 45%,
            transparent 65%
        );

    opacity: 1;
}


.bs-legal-header-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, .98) 0%,
            rgba(8, 8, 8, .78) 55%,
            rgba(8, 8, 8, .55) 100%
        ),
        linear-gradient(
            0deg,
            #080808 0%,
            transparent 55%
        );
}


.bs-legal-header-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 0 0 70px;
}


.bs-legal-kicker {
    display: block;

    margin-bottom: 15px;

    color: #b7975c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bs-legal-header h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(52px, 7vw, 92px);
    font-weight: 800;

    line-height: .9;
    letter-spacing: -2px;

    text-transform: uppercase;
}


.bs-legal-header h1 span {
    color: #b7975c;
}


.bs-legal-header p {
    margin: 0;

    color: #999;

    font-size: 16px;

    letter-spacing: .5px;
}


/* CONTENT */

.bs-legal-content {
    padding: 90px 0 120px;
}


.bs-legal-content-inner {
    max-width: 950px;
}


.bs-legal-editor-content {
    color: #aaa;

    font-size: 16px;
    line-height: 1.85;
}


.bs-legal-editor-content h2 {
    margin: 55px 0 20px;

    color: #fff;

    font-size: 28px;
    font-weight: 700;

    letter-spacing: -.5px;
}


.bs-legal-editor-content h2:first-child {
    margin-top: 0;
}


.bs-legal-editor-content h3 {
    margin: 35px 0 15px;

    color: #b7975c;

    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.bs-legal-editor-content p {
    margin: 0 0 22px;
}


.bs-legal-editor-content a {
    color: #b7975c;

    text-decoration: none;

    transition: opacity .25s ease;
}


.bs-legal-editor-content a:hover {
    opacity: .7;
}


/* =========================================================
   LEGAL MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-legal-header {
        min-height: 350px;
    }


    .bs-legal-header-content {
        padding-bottom: 45px;
    }


    .bs-legal-header h1 {
        font-size: clamp(42px, 13vw, 62px);

        letter-spacing: -1px;
    }


    .bs-legal-header p {
        font-size: 14px;
    }


    .bs-legal-content {
        padding: 60px 0 80px;
    }


    .bs-legal-editor-content {
        font-size: 15px;
        line-height: 1.75;
    }


    .bs-legal-editor-content h2 {
        margin-top: 40px;

        font-size: 24px;
    }

}