@import url(
    'https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap'
);

:root {
    --black: #080807;
    --black-soft: #11110f;
    --black-card: #151512;

    --gold: #d6ad50;
    --gold-light: #f0d77f;
    --gold-dark: #a77925;

    --cream: #f5f0e5;
    --cream-dark: #e8dfcf;

    --white: #fffdf7;
    --muted: #aaa395;

    --border-gold: rgba(214, 173, 80, .24);
    --border-light: rgba(255, 255, 255, .08);

    --page-width: 1420px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    overflow-x: clip;

    background: var(--black);
    color: var(--white);

    font-family: "DM Sans", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.page-width {
    width: min(var(--page-width), calc(100% - 48px));
    margin-inline: auto;
}

/* HEADER */

.bb-header {
    position: sticky;
    top: 14px;
    z-index: 1000;

    width: min(1460px, calc(100% - 32px));
    margin: 14px auto 0;

    border: 1px solid var(--border-gold);
    border-radius: 24px;

    background: rgba(11, 11, 9, .9);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, .38),
        inset 0 1px 0 rgba(255, 255, 255, .04);

    transition:
        top .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.bb-header.is-scrolled {
    top: 7px;
    background: rgba(7, 7, 6, .97);
    border-color: rgba(214, 173, 80, .4);
}

.bb-header::after {
    content: "";

    position: absolute;
    right: 32px;
    bottom: -1px;
    left: 32px;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 173, 80, .8),
        transparent
    );
}

.bb-header__inner {
    min-height: 82px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;

    padding: 0 18px 0 24px;
}

.bb-brand {
    display: inline-flex;
    align-items: center;

    min-width: 190px;
}

.bb-brand picture {
    display: block;
}

.bb-brand__logo {
    width: auto;
    height: 47px;
    max-width: 210px;

    object-fit: contain;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.bb-brand:hover .bb-brand__logo {
    transform: translateY(-2px);

    filter:
        drop-shadow(0 0 12px rgba(214, 173, 80, .24));
}

.bb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.bb-nav__link {
    position: relative;

    min-height: 44px;

    display: inline-flex;
    align-items: center;

    color: rgba(255, 253, 247, .7);

    font-size: .82rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.bb-nav__link::after {
    content: "";

    position: absolute;
    right: 50%;
    bottom: 5px;
    left: 50%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    transition:
        right .25s ease,
        left .25s ease;
}

.bb-nav__link:hover,
.bb-nav__link.is-active {
    color: var(--white);
    transform: translateY(-1px);
}

.bb-nav__link:hover::after,
.bb-nav__link.is-active::after {
    right: 0;
    left: 0;
}

.bb-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-shop-button {
    position: relative;

    min-height: 46px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    overflow: hidden;

    border: 1px solid rgba(255, 237, 175, .7);
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold) 55%,
        #bd8730
    );

    color: #11100d;

    font-size: .79rem;
    font-weight: 900;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(190, 141, 45, .2),
        inset 0 1px 0 rgba(255, 255, 255, .5);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.bb-shop-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 35px rgba(190, 141, 45, .3),
        inset 0 1px 0 rgba(255, 255, 255, .6);
}

.bb-menu-button {
    width: 46px;
    height: 46px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    padding: 0;

    border: 1px solid rgba(214, 173, 80, .3);
    border-radius: 50%;

    background: rgba(255, 255, 255, .025);

    cursor: pointer;
}

.bb-menu-button span {
    width: 17px;
    height: 1.5px;

    display: block;

    border-radius: 999px;
    background: var(--gold-light);

    transition:
        transform .3s ease,
        opacity .2s ease,
        width .2s ease;
}

.bb-menu-button.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.bb-menu-button.is-open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.bb-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.bb-mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    padding: 28px;

    border: 1px solid var(--border-gold);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(16, 16, 13, .99),
            rgba(6, 6, 5, .99)
        );

    box-shadow: 0 28px 70px rgba(0, 0, 0, .58);

    visibility: hidden;
    opacity: 0;

    transform: translateY(-12px) scale(.985);

    transition:
        visibility .3s ease,
        opacity .3s ease,
        transform .3s ease;
}

.bb-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;

    transform: translateY(0) scale(1);
}

.bb-mobile-nav {
    display: grid;
}

.bb-mobile-nav a {
    min-height: 64px;

    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 12px;

    border-bottom: 1px solid var(--border-light);

    color: rgba(255, 253, 247, .85);

    font-size: 1.35rem;
    font-weight: 700;

    text-decoration: none;
}

.bb-mobile-nav a small {
    color: rgba(214, 173, 80, .6);

    font-size: .65rem;
    letter-spacing: .1em;
}

.bb-mobile-nav a:hover,
.bb-mobile-nav a.is-active {
    color: var(--gold-light);
}

.bb-mobile-shop {
    margin-top: 24px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(255, 238, 180, .7);
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #11100d;

    font-size: 1rem;
    font-weight: 900;

    text-decoration: none;
}

.bb-mobile-shop small {
    display: block;
    margin-bottom: 3px;

    color: rgba(17, 16, 13, .6);

    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bb-mobile-shop strong {
    font-size: 1.4rem;
}

/* HERO */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 100px 0 110px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(214, 173, 80, .08),
            transparent 35%
        ),
        var(--black);
}

.hero__glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
    filter: blur(5px);
}

.hero__glow--one {
    top: 80px;
    left: -160px;

    width: 460px;
    height: 460px;

    background: rgba(214, 173, 80, .06);
}

.hero__glow--two {
    right: -180px;
    bottom: -180px;

    width: 520px;
    height: 520px;

    background: rgba(214, 173, 80, .05);
}

.hero__grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
    align-items: center;
    gap: clamp(60px, 7vw, 120px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 24px;

    color: var(--gold-light);

    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow__dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 6px rgba(214, 173, 80, .1),
        0 0 18px rgba(214, 173, 80, .35);
}

.hero h1 {
    max-width: 780px;

    margin: 0;

    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: clamp(3.7rem, 6vw, 6.6rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: .94;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero__intro {
    max-width: 690px;

    margin: 30px 0 0;

    color: rgba(255, 253, 247, .68);

    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 36px;
}

.button {
    min-height: 52px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 999px;

    font-size: .84rem;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    border: 1px solid rgba(255, 237, 175, .7);

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #11100d;

    box-shadow: 0 12px 32px rgba(190, 141, 45, .2);
}

.button--gold:hover {
    box-shadow: 0 17px 40px rgba(190, 141, 45, .3);
}

.button--outline {
    border: 1px solid rgba(214, 173, 80, .32);
    background: rgba(255, 255, 255, .025);
    color: var(--white);
}

.button--outline:hover {
    border-color: rgba(214, 173, 80, .7);
}

.hero__details {
    max-width: 760px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 54px;
    padding-top: 28px;

    border-top: 1px solid var(--border-light);
}

.hero__details div {
    display: grid;
    gap: 5px;
}

.hero__details strong {
    color: var(--gold-light);

    font-size: .73rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero__details span {
    color: rgba(255, 253, 247, .48);

    font-size: .75rem;
    line-height: 1.5;
}

.hero__visual {
    position: relative;
    padding: 0 0 45px 35px;
}

.hero__image-frame {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    border: 1px solid var(--border-gold);
    border-radius: 42px 42px 150px 42px;

    background: var(--black-card);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hero__image-frame img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero__image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(4, 4, 3, .78)
        );
}

.hero__image-message {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;

    background: rgba(8, 8, 7, .72);

    backdrop-filter: blur(14px);
}

.hero__paw {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;
    flex: 0 0 auto;

    border: 1px solid var(--border-gold);
    border-radius: 50%;

    background: rgba(214, 173, 80, .08);
}

.hero__image-message small,
.hero__floating-card small {
    display: block;

    color: var(--gold);

    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.hero__image-message strong,
.hero__floating-card strong {
    display: block;
    margin-top: 4px;

    font-size: .98rem;
}

.hero__floating-card {
    position: absolute;
    bottom: 0;
    left: 0;

    max-width: 310px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 19px 21px;

    border: 1px solid var(--border-gold);
    border-radius: 20px;

    background: rgba(15, 15, 13, .96);

    box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
}

.hero__floating-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

/* SECTIONS */

.section {
    padding: 115px 0;
}

.section--cream {
    background: var(--cream);
    color: #191713;
}

.section--dark {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(214, 173, 80, .06),
            transparent 30%
        ),
        var(--black-soft);
}

.story-grid,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(60px, 10vw, 150px);
}

.section-label {
    display: block;

    margin-bottom: 18px;

    color: var(--gold-dark);

    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-heading h2,
.section-intro h2,
.contact-banner h2 {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 4vw, 4.5rem);
    letter-spacing: -.035em;
    line-height: 1.03;
}

.section-heading h2 span,
.section-intro h2 span {
    display: block;
    color: var(--gold-dark);
}

.story-copy {
    padding-top: 34px;
}

.story-copy p,
.section-heading > p {
    margin: 0 0 22px;

    color: #6e675d;

    font-size: 1.03rem;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 12px;

    color: #171510;

    font-size: .85rem;
    font-weight: 900;

    text-decoration: none;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
    align-items: end;
    gap: 60px;

    margin-bottom: 60px;
}

.section-intro h2 span {
    color: var(--gold);
}

.section-intro > p {
    margin: 0;

    color: var(--muted);

    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    overflow: hidden;

    border: 1px solid var(--border-light);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .012)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color: rgba(214, 173, 80, .34);

    box-shadow: 0 28px 55px rgba(0, 0, 0, .25);
}

.feature-card--featured {
    border-color: rgba(214, 173, 80, .35);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(214, 173, 80, .14),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(214, 173, 80, .07),
            rgba(255, 255, 255, .015)
        );
}

.feature-card__number {
    position: absolute;
    top: 24px;
    right: 26px;

    color: rgba(255, 255, 255, .18);

    font-family: "Playfair Display", serif;
    font-size: 1rem;
}

.feature-card__icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 52px;

    border: 1px solid var(--border-gold);
    border-radius: 17px;

    background: rgba(214, 173, 80, .07);

    color: var(--gold-light);
    font-size: 1.35rem;
}

.feature-card h3 {
    margin: 0 0 15px;

    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
}

.feature-card p {
    margin: 0 0 30px;

    color: var(--muted);

    font-size: .93rem;
    line-height: 1.75;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;

    color: var(--gold-light);

    font-size: .78rem;
    font-weight: 900;

    text-decoration: none;
}

/* BRAND STATEMENT */

.brand-statement {
    padding: 100px 0;

    background: var(--gold);
    color: #11100d;
}

.brand-statement__inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.brand-statement blockquote {
    max-width: 1000px;

    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    letter-spacing: -.035em;
    line-height: 1.08;
}

.brand-statement blockquote strong {
    display: block;
}

.brand-statement__mark {
    position: absolute;
    top: -50px;
    left: 0;

    color: rgba(17, 16, 13, .12);

    font-family: "Playfair Display", serif;
    font-size: 12rem;
    line-height: 1;
}

.brand-statement__paw {
    position: absolute;
    right: 10px;
    bottom: -45px;

    font-size: 3rem;
    opacity: .22;
}

/* FAQ */

.faq-list {
    display: grid;
    align-content: start;
}

.faq-list details {
    border-bottom: 1px solid rgba(25, 23, 19, .13);
}

.faq-list summary {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: #1b1914;

    font-size: 1rem;
    font-weight: 800;

    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;
    flex: 0 0 auto;

    border: 1px solid rgba(25, 23, 19, .16);
    border-radius: 50%;

    transition: transform .25s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 660px;

    margin: -3px 55px 25px 0;

    color: #70685d;

    line-height: 1.75;
}

/* CONTACT */

.contact-banner {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(214, 173, 80, .12),
            transparent 35%
        ),
        var(--black);
}

.contact-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    padding: 55px;

    border: 1px solid var(--border-gold);
    border-radius: 30px;

    background: rgba(255, 255, 255, .025);
}

.contact-banner h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.contact-banner p {
    max-width: 680px;

    margin: 18px 0 0;

    color: var(--muted);
    line-height: 1.7;
}

/* FOOTER */

.site-footer {
    padding: 80px 0 25px;

    border-top: 1px solid var(--border-light);

    background: #060605;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: 90px;
}

.site-footer__brand img {
    width: auto;
    height: 50px;
}

.site-footer__brand p {
    max-width: 380px;

    margin: 24px 0 0;

    color: rgba(255, 253, 247, .48);
    line-height: 1.7;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.site-footer__links div {
    display: grid;
    align-content: start;
    gap: 13px;
}

.site-footer__links strong {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer__links a {
    color: rgba(255, 253, 247, .55);

    font-size: .82rem;

    text-decoration: none;

    transition: color .2s ease;
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 70px;
    padding-top: 24px;

    border-top: 1px solid var(--border-light);

    color: rgba(255, 253, 247, .3);

    font-size: .7rem;
}

/* TABLET */

@media (max-width: 1050px) {

    .bb-nav {
        display: none;
    }

    .bb-menu-button {
        display: flex;
    }

    .bb-shop-button {
        display: none;
    }

    .bb-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .hero {
        padding-top: 80px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 850px;
    }

    .hero__visual {
        max-width: 760px;
        margin-inline: auto;
    }

    .story-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-copy {
        padding-top: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
    }
}

/* MOBILE */

@media (max-width: 700px) {

    .page-width {
        width: min(100% - 28px, var(--page-width));
    }

    .bb-header {
        top: 8px;

        width: calc(100% - 16px);
        margin-top: 8px;

        border-radius: 19px;
    }

    .bb-header__inner {
        min-height: 67px;
        padding: 0 10px 0 15px;
    }

    .bb-brand {
        min-width: 0;
    }

    .bb-brand__logo {
        height: 39px;
        max-width: 175px;
    }

    .bb-menu-button {
        width: 43px;
        height: 43px;
    }

    .bb-mobile-menu {
        top: calc(100% + 7px);
        padding: 20px;
        border-radius: 20px;
    }

    .hero {
        min-height: 0;
        padding: 85px 0 80px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .hero__intro {
        line-height: 1.7;
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__details {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .hero__visual {
        padding: 0 0 45px;
    }

    .hero__image-frame {
        min-height: 480px;
        border-radius: 28px 28px 95px 28px;
    }

    .hero__image-message {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .hero__floating-card {
        right: 18px;
        left: 18px;

        max-width: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card {
        min-height: 350px;
    }

    .brand-statement {
        padding: 80px 0;
    }

    .contact-banner__inner {
        align-items: flex-start;
        flex-direction: column;

        padding: 32px 25px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .site-footer__links {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* SMALL LOGO */

@media (max-width: 375px) {

    .bb-brand__logo {
        height: 42px;
        max-width: 72px;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* FINAL MOBILE HEADER POSITION FIX */
@media screen and (max-width: 940px) {

    .bb-header__inner {
        position: relative !important;

        display: flex !important;
        align-items: center !important;

        width: 100% !important;
        min-height: 72px;

        padding-right: 70px !important;
    }

    .bb-nav,
    .bb-shop-button {
        display: none !important;
    }

    .bb-brand {
        flex: 0 1 auto !important;
        min-width: 0 !important;
    }

    .bb-header__actions {
        position: absolute !important;
        top: 50% !important;
        right: 12px !important;
        left: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: auto !important;
        margin: 0 !important;

        transform: translateY(-50%) !important;
    }

    .bb-menu-button {
        display: flex !important;
        flex: 0 0 auto !important;
    }
}