.bshFooter {
    color: rgb(255 255 255 / .72);
    background: #242322;
}

.bshFooterCta {
    position: relative;
    min-height: clamp(390px, 48vw, 650px);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgb(255 255 255 / .14);
}

.bshFooterCta__media,
.bshFooterCta__shade {
    position: absolute;
    inset: 0;
}

.bshFooterCta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bshFooterCta__shade {
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgb(36 35 34 / calc(var(--bsh-footer-overlay-opacity, .94) * .83)),
        rgb(36 35 34 / var(--bsh-footer-overlay-opacity, .94))
    );
}

.bshFooterCta:not(.has-background) .bshFooterCta__shade {
    background:
        linear-gradient(135deg, rgb(190 177 171 / .08), transparent 48%),
        #242322;
}

.bshFooterCta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: clamp(34px, 5vw, 62px);
    padding-block: var(--bsh-section-y);
    text-align: center;
}

.bshFooterCta__content {
    display: grid;
    width: 100%;
    justify-items: center;
    gap: clamp(18px, 2vw, 28px);
}

.bshFooterCta h2 {
    max-width: 1500px;
    margin: 0;
    color: var(--bsh-color-white);
    font-family: var(--bsh-font-body);
    font-size: clamp(46px, 4.6vw, 70px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.bshFooterCta__text {
    max-width: 760px;
    color: rgb(255 255 255 / .84);
    font-size: clamp(1rem, .9rem + .35vw, 1.3rem);
    line-height: 1.65;
}

.bshFooterCta__text > * {
    margin-block: 0;
}

.bshFooterCta__text > * + * {
    margin-top: .75em;
}

.bshFooterCta__button {
    background: var(--bsh-color-pastel-2);
}

.bshFooter__main {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, .65fr));
    gap: clamp(42px, 6vw, 110px);
    padding-block: clamp(68px, 7vw, 120px);
}

.bshFooter__brand {
    display: inline-block;
    color: var(--bsh-color-white);
    font-size: 1.5rem;
    text-decoration: none;
}

.bshFooter__logo {
    width: min(280px, 100%);
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.bshFooter__description {
    max-width: 430px;
    margin-top: 28px;
    line-height: 1.75;
}

.bshFooter__description > *:first-child {
    margin-top: 0;
}

.bshFooter__socials,
.bshFooter__menu,
.bshFooter__legal {
    padding: 0;
    margin: 0;
    list-style: none;
}

.bshFooter__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.bshFooter__socials a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 50%;
    color: var(--bsh-color-white);
    transition: color var(--bsh-transition-fast), background var(--bsh-transition-fast), transform var(--bsh-transition-fast);
}

.bshFooter__socials a:hover,
.bshFooter__socials a:focus-visible {
    color: #242322;
    background: var(--bsh-color-pastel-1);
    transform: translateY(-3px);
}

.bshFooter__socials svg {
    width: 18px;
    height: 18px;
}

.bshFooter__column h3 {
    margin: 0 0 28px;
    color: var(--bsh-color-white);
    font-size: 1.15rem;
    font-weight: 500;
}

.bshFooter__menu,
.bshFooter__contact {
    display: grid;
    align-content: start;
    gap: 13px;
}

.bshFooter__menu a,
.bshFooter__contact a,
.bshFooter__legal a {
    color: inherit;
    text-decoration: none;
    transition: color var(--bsh-transition-fast);
}

.bshFooter__menu a:hover,
.bshFooter__menu a:focus-visible,
.bshFooter__contact a:hover,
.bshFooter__contact a:focus-visible,
.bshFooter__legal a:hover,
.bshFooter__legal a:focus-visible {
    color: var(--bsh-color-white);
}

.bshFooter__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-block: 28px;
    border-top: 1px solid rgb(255 255 255 / .12);
    font-size: .8125rem;
}

.bshFooter__bottom p {
    margin: 0;
}

.bshFooter__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

@media (max-width: 1100px) {
    .bshFooter__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bshFooterCta {
        min-height: 430px;
    }

    .bshFooterCta h2 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.08;
    }

    .bshFooterCta__text {
        max-width: 34rem;
    }

    .bshFooter__main {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .bshFooter__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
