@import url("//fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("//fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Sora:wght@100..800&display=swap");
@import url("//fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap");
@import url(variable.css);

/* ============================= BASE ============================= */
body {
    margin: 0;
    padding: 0;
    color: var(--brand-black);
    font-family: var(--font-secondary);
    font-size: var(--font-body-lg);
    background: var(--brand-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    color: var(--brand-blue);
}

.container {
    @media (min-width: 1200px) {
        max-width: 1120px;
    }
}

::selection {
    background: var(--brand-blue);
    color: #fff;
}

/* ============================= HEADER / TOP BAR ============================= */
.bwr-header {
    z-index: 100;
}
.bwr-header--inner {
    position: relative;
}

.contactinfo {
    font-family: var(--font-primary);
    font-size: var(--font-body-md);
}

.toprightcol a:not(.btnstyleone),
.toprightcol p {
    color: var(--accent-color-first);
    margin-bottom: 0;
    font-family: var(--font-primary);
    font-size: var(--font-body-sm);
    font-weight: 400;
}

/* ============================= BUTTONS ============================= */
.btnstyleone {
    border-radius: var(--bordert-radius-xl);
    border: var(--border-light);
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--font-body-lg);
    background: transparent;
    text-decoration: none;
    color: var(--accent-color-first);
    transition: background-color .35s ease, color .35s ease;
}
.btnstyleone:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.btnstyletwo {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 18px 28px !important;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    font-size: 15px;
    background: var(--brand-blue);
    text-decoration: none;
    border-radius: 999px;
    transition: background .35s ease, transform .25s ease, box-shadow .35s ease;
    box-shadow: 0 14px 30px -12px rgba(10, 91, 255, .6);
}
.btnstyletwo:hover {
    background: var(--brand-black);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(11, 11, 12, .55);
}

.btn-bwr-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    transition: background .35s ease, transform .25s ease, box-shadow .35s ease;
    box-shadow: 0 18px 40px -14px rgba(10, 91, 255, .55);
}
.btn-bwr-primary:hover {
    background: var(--brand-black);
    color: #fff;
    transform: translateY(-2px);
}
.btn-bwr-primary svg {
    transition: transform .3s ease;
}
.btn-bwr-primary:hover svg {
    transform: translateX(4px);
}

.btn-bwr-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 28px;
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    transition: all .3s ease;
    background: transparent;
}
.btn-bwr-ghost:hover {
    background: #fff;
    color: var(--brand-black);
    border-color: #fff;
}
.btn-bwr-ghost--dark {
    color: var(--brand-black);
    border-color: rgba(11, 11, 12, .25);
}
.btn-bwr-ghost--dark:hover {
    background: var(--brand-black);
    color: #fff;
    border-color: var(--brand-black);
}

/* ============================= CART ============================= */
.cart-count {
    position: absolute;
    top: 8px;
    right: 6px;
    line-height: 22px;
    height: 22px;
    width: 22px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    text-align: center;
    font-family: var(--font-primary);
}

/* ============================= NAVBAR ============================= */
.navbar-wrapper .dropdown {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
}
.navbar {
    padding: 0 !important;
    z-index: 9999;
}
.navbar-nav {
    align-items: center;
}
li.nav-item {
    margin-right: 5px;
}
ul.navbar-nav li:last-child {
    margin-right: 0;
}

.navbar-wrapper a.active,
.nav-item a.active {
    position: relative;
    color: var(--brand-blue) !important;
}
.navbar-wrapper a.active:after,
.nav-item a.active:after {
    height: 2.5px;
    width: 100%;
    content: " ";
    background: var(--brand-blue);
    position: absolute;
    bottom: -13px;
    left: 0;
}
.navbar-wrapper a,
.nav-item a {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--brand-black);
    padding: 16px 14px !important;
    font-family: var(--font-primary);
    border-bottom: 2.5px solid transparent;
    display: block;
    letter-spacing: .02em;
}
.navbar-wrapper ul li {
    position: relative;
}
.navbar-wrapper ul li > ul {
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
    top: 42px;
    margin-top: 0;
    margin-left: 10px;
    background-color: #fff;
    padding-left: 0;
    border-top: 3px solid var(--brand-blue);
    box-shadow: 0 18px 40px -14px rgba(8, 26, 58, .18);
    min-width: 220px;
    z-index: 1;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.navbar-wrapper ul li > ul a {
    white-space: nowrap;
    display: block;
    padding: 10px 16px !important;
    color: var(--brand-black);
}
.navbar-wrapper ul li > ul a:hover {
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
}
.navbar-wrapper ul li:hover > ul {
    display: block;
}

/* ============================= HERO ============================= */
.bwr-hero {
    position: relative;
    min-height: 760px;
    padding-top: 240px;
    padding-bottom: 120px;
    overflow: hidden;
    background: var(--brand-black);
    color: #fff;
    isolation: isolate;
}

.bwr-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/headerimg.jpg') center/cover no-repeat;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.05);
    animation: bwrSlowZoom 24s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes bwrSlowZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.15); }
}

.bwr-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at top left, rgba(10, 91, 255, .18), transparent 55%),
        linear-gradient(90deg, rgba(11, 11, 12, .55) 0%, rgba(11, 11, 12, .25) 45%, rgba(11, 11, 12, 0) 75%),
        linear-gradient(180deg, rgba(11, 11, 12, 0) 60%, rgba(11, 11, 12, .45) 100%);
}

.bwr-hero__mark {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
}
.bwr-hero__mark-rule {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .4);
}
@media (max-width: 991px) {
    .bwr-hero__mark { display: none; }
}

.bwr-hero__inner {
    position: relative;
    z-index: 3;
}

.bwr-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 36px;
    opacity: 0;
    animation: bwrFadeUp .9s .1s ease forwards;
}
.bwr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(10, 91, 255, .2);
    animation: bwrPulse 2.4s ease-in-out infinite;
}
@keyframes bwrPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(10, 91, 255, .2); }
    50%      { box-shadow: 0 0 0 9px rgba(10, 91, 255, 0); }
}

.bwr-hero__title {
    font-family: var(--heading-font);
    font-size: clamp(44px, 6vw, 86px);
    line-height: 1.05;
    margin: 0 0 26px;
    color: #fff;
    max-width: 18ch;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5), 0 8px 40px rgba(0, 0, 0, .55);
    opacity: 0;
    animation: bwrFadeUp 1s .25s ease forwards;
}
.bwr-hero__title em {
    color: var(--brand-blue);
    font-style: italic;
    position: relative;
}
.bwr-hero__title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .08em;
    height: 8px;
    background: rgba(10, 91, 255, .25);
    z-index: -1;
    border-radius: 2px;
}

.bwr-hero__lede {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    max-width: 62ch;
    margin-bottom: 44px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .55), 0 4px 18px rgba(0, 0, 0, .4);
    opacity: 0;
    animation: bwrFadeUp 1s .4s ease forwards;
}

.bwr-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
    opacity: 0;
    animation: bwrFadeUp 1s .55s ease forwards;
}

.bwr-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    animation: bwrFadeUp 1s .7s ease forwards;
}
.bwr-hero__trust li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 18px;
    border-left: 2px solid var(--brand-blue);
}
.bwr-hero__trust strong {
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}
.bwr-hero__trust span {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

@keyframes bwrFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Legacy hero welcometext fallback */
.welcometext h1 {
    font-family: var(--heading-font);
    font-size: var(--h1);
    color: #fff;
    line-height: 1.05;
}
.welcometext h6 {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: var(--font-body-xl);
    color: #fff;
    line-height: 28px;
    margin: 32px 0;
}

/* ============================= AREAS MARQUEE ============================= */
.bwr-areas {
    background: var(--brand-blue);
    color: #fff;
    padding: 22px 0;
    overflow: hidden;
    border-top: 3px solid var(--brand-black);
    border-bottom: 3px solid var(--brand-black);
}
.bwr-areas__rail {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bwr-areas__track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: bwrMarquee 38s linear infinite;
}
.bwr-areas__item {
    font-family: var(--heading-font);
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.01em;
    line-height: 1;
}
.bwr-areas__sep {
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
}
@keyframes bwrMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================= SECTION HEAD ============================= */
.bwr-section-head {
    margin-bottom: 56px;
}
.bwr-section-head--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.bwr-section-head--light h2 {
    color: #fff;
}
.bwr-section-head h2 {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin: 0;
}
.bwr-section-head h2 em {
    color: var(--brand-blue);
}
.bwr-section-head__sub {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.6;
    color: rgba(11, 11, 12, .65);
    margin-top: 18px;
    max-width: 620px;
}
.bwr-section-head--center .bwr-section-head__sub {
    margin-left: auto;
    margin-right: auto;
}

.bwr-kicker {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brand-blue);
    padding-left: 40px;
    position: relative;
    margin-bottom: 18px;
}
.bwr-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--brand-blue);
}
.bwr-kicker--light {
    color: rgba(255, 255, 255, .85);
}
.bwr-kicker--light::before {
    background: rgba(255, 255, 255, .6);
}
.bwr-kicker--gold {
    color: var(--brand-gold);
}
.bwr-kicker--gold::before {
    background: var(--brand-gold);
}

/* ============================= FEATURE TRIO ============================= */
.product-service-wrap {
    background: var(--brand-black);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}
.product-service-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(10, 91, 255, .12), transparent 50%);
    pointer-events: none;
}

.bwr-features .bwr-section-head {
    max-width: 680px;
    margin-bottom: 72px;
}

.bwr-feature-card {
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 44px 32px 40px;
    border-radius: 18px;
    text-align: left !important;
    height: 100%;
    transition: border-color .4s ease, transform .4s ease, background .4s ease;
    overflow: hidden;
}
.bwr-feature-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.bwr-feature-card:hover {
    border-color: rgba(10, 91, 255, .45);
    background: rgba(10, 91, 255, .05);
    transform: translateY(-4px);
}
.bwr-feature-card:hover::after {
    transform: translateX(0);
}
.bwr-feature-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    background: rgba(10, 91, 255, .12);
    border-radius: 14px;
    margin-bottom: 26px;
}
.bwr-feature-card__icon svg {
    width: 32px;
    height: 32px;
}
.bwr-feature-card__tick {
    display: none !important;
}
.bwr-feature-card h4 {
    font-family: var(--heading-font) !important;
    color: #fff !important;
    font-size: 26px !important;
    line-height: 1.15 !important;
    margin: 0 0 14px !important;
    text-align: left;
    font-weight: 400 !important;
}
.bwr-feature-card p {
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-primary);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}
.bwr-feature-card__index {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: var(--heading-font);
    font-size: 14px;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .3);
}

/* Back-compat for .prodsercol1_3 on non-home pages */
.product-service-wrap .prodsercol1_3:not(.bwr-feature-card) {
    text-align: center;
    color: #fff;
}
.product-service-wrap .prodsercol1_3:not(.bwr-feature-card) h4 {
    color: #fff;
    margin-top: 24px;
}

/* ============================= POPULAR ITEMS ============================= */
.bwr-popular {
    background: var(--brand-cream);
    padding: 110px 0 120px;
    position: relative;
}
.bwr-popular::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 11, 12, .15), transparent);
}

.bwr-popular__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.bwr-pop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 11, 12, .08);
    text-decoration: none;
    color: var(--brand-black);
    transition: border-color .35s ease, transform .35s ease;
}
.bwr-pop-card:hover {
    border-color: rgba(10, 91, 255, .45);
    transform: translateY(-3px);
    color: var(--brand-black);
}
.bwr-pop-card__art {
    width: 44px;
    height: 44px;
    color: var(--brand-blue);
    margin-bottom: 22px;
    transition: transform .35s ease;
}
.bwr-pop-card:hover .bwr-pop-card__art {
    transform: translateY(-2px);
}
.bwr-pop-card h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 6px;
    line-height: 1.15;
    color: var(--brand-black);
}
.bwr-pop-card p {
    font-family: var(--font-primary);
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(11, 11, 12, .6);
    margin: 0;
}

/* ============================= CATALOG ============================= */
.prodcatmainwrap {
    max-width: 1200px;
    width: 96%;
    margin: -60px auto 0;
    background: #fff;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px -40px rgba(8, 26, 58, .18);
}
.prodcatwrap {
    padding: 100px 50px 60px;
}
.prodcatwrap .section-title {
    color: var(--brand-black);
    font-family: var(--heading-font);
    line-height: 1.1;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 400;
}
.prodcatwrap .prod-info {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(11, 11, 12, .08);
    margin-bottom: 32px;
    text-decoration: none;
    display: block;
    transition: all .35s ease;
    background: #fff;
}
.prodcatwrap .prod-info:hover {
    border-color: var(--brand-blue);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(10, 91, 255, .3);
}
.prodcatwrap .prod-info h6 {
    font-size: var(--font-body-xl);
    color: var(--brand-black);
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1.35;
    text-align: center;
    padding: 16px 0 12px;
    margin-bottom: 0;
    height: 80px;
}

/* ============================= PARALLAX BREAK ============================= */
.bwr-parallax {
    height: 360px;
    background: url('../images/headerimg.jpg') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bwr-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 12, .72), rgba(10, 91, 255, .55));
}
.bwr-parallax__inner {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 820px;
}
.bwr-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .85);
}
.bwr-seal__line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, .5);
}
.bwr-seal__mark {
    width: 14px;
    height: 14px;
    color: #fff;
    flex-shrink: 0;
}
.bwr-parallax__quote {
    font-family: var(--heading-font);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.bwr-parallax__quote span {
    font-style: italic;
    color: #a9c4ff;
}
.bwr-parallax__sub {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

/* ============================= LET US HELP ============================= */
.letushelpyouwrap {
    position: relative;
    text-align: center;
    background: var(--brand-black);
    padding: 120px 0 100px;
    overflow: hidden;
}
.bwr-help::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(10, 91, 255, .2), transparent 70%);
    pointer-events: none;
}
.letushelpyouwrap .container {
    max-width: 960px;
    width: 96%;
    margin: 0 auto;
    position: relative;
}
.letushelpyouwrap .bwr-kicker {
    margin-bottom: 20px;
}
.letushelpyouwrap h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}
.letushelpyouwrap h6,
.letushelpyouwrap p {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.listbtnstyle {
    padding: 0;
    column-count: 3;
    column-gap: 24px;
    margin-top: 53px;
    margin-bottom: 56px;
}
.listbtnstyle li {
    list-style: none;
    background: transparent;
    padding: 19px 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    transition: border-color .3s ease, background .3s ease;
}
.listbtnstyle li:hover {
    border-color: var(--brand-blue);
    background: rgba(10, 91, 255, .08);
}
.listbtnstyle li a {
    font-size: 17px;
    font-family: var(--font-primary);
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

/* ============================= ABOUT / COMMUNITY ============================= */
.bwr-about {
    background: var(--brand-paper);
    padding: 120px 0;
    position: relative;
}
.bwr-about__title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.1;
    margin: 0 0 28px;
}
.bwr-about__title em {
    color: var(--brand-blue);
}
.bwr-about__body p {
    font-family: var(--font-primary);
    font-size: 16.5px;
    line-height: 1.75;
    color: rgba(11, 11, 12, .7);
    font-weight: 300;
    margin-bottom: 18px;
}
.bwr-about__meta {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(11, 11, 12, .1);
}
.bwr-about__meta > div {
    display: flex;
    flex-direction: column;
}
.bwr-about__meta strong {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 400;
    color: var(--brand-blue);
    line-height: 1;
}
.bwr-about__meta span {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(11, 11, 12, .5);
    margin-top: 8px;
}

.bwr-community {
    background: var(--brand-cream);
    padding: 48px 44px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(201, 169, 74, .3);
    overflow: hidden;
}
.bwr-community::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 74, .18), transparent 70%);
}
.bwr-community__mark {
    width: 54px;
    height: 54px;
    color: var(--brand-gold);
    margin-bottom: 18px;
}
.bwr-community h3 {
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 1.15;
    margin: 14px 0 14px;
    max-width: 18ch;
}
.bwr-community p {
    font-family: var(--font-primary);
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(11, 11, 12, .7);
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 38ch;
}

/* ============================= FEATURED PRODUCTS ============================= */
.featuredproductswrap {
    background: var(--brand-paper);
    padding: 110px 0 120px !important;
}
.featuredproductswrap .container {
    max-width: 1120px;
}
.featuredproductswrap .section-title {
    color: var(--brand-black);
    line-height: 1.1;
    font-weight: 400 !important;
    font-size: clamp(30px, 3.6vw, 44px) !important;
}
.featuredproductswrap .bwr-section-head {
    margin-bottom: 48px;
}

/* ============================= HOURS ============================= */
.operationhourswrap {
    padding: 110px 0;
    position: relative;
    background: var(--brand-black);
    text-align: center;
}
.bwr-hours .bwr-kicker {
    display: inline-block;
    margin-bottom: 18px;
}
.operationhourswrap h2 {
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--heading-font);
}
.operationhourscol {
    max-width: 780px;
    width: 96%;
    margin: 0 auto;
}
.operationhourscol h5 {
    font-family: var(--font-secondary);
    font-size: var(--font-body-2xl);
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}
.operationhourscol ul {
    padding: 0;
    margin: 0 0 40px;
}
.operationhourscol ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #fff;
    transition: background .3s ease;
}
.operationhourscol ul li:hover {
    background: rgba(10, 91, 255, .08);
    padding-left: 18px;
    padding-right: 18px;
}
.operationhourscol ul li:first-of-type {
    border-top: none;
}
.operationhourscol .daycol {
    font-family: var(--heading-font);
    font-size: 24px;
}
.operationhourscol .timecol {
    color: rgba(255, 255, 255, .75);
    font-family: var(--font-primary);
    letter-spacing: .04em;
}

span.line {
    width: 22px;
    display: inline-block;
    background: #fff;
    height: 1.5px;
    vertical-align: middle;
    margin: 0 8px;
}

.btnstylethree {
    background: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    padding: 16px 32px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: block;
    width: 210px;
    margin: 40px auto 0;
    transition: background .35s ease, transform .25s ease;
    border-radius: 999px;
    box-shadow: 0 18px 40px -14px rgba(10, 91, 255, .5);
}
.btnstylethree:hover {
    background: #fff;
    color: var(--brand-black);
    transform: translateY(-2px);
}

/* ============================= TESTIMONIALS ============================= */
.testinobualwrap {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: var(--brand-paper);
}
.bwr-testimonials__quote {
    width: 48px;
    height: 48px;
    color: var(--brand-blue);
    margin-bottom: 32px;
    opacity: .25;
}
.testinobualwrap .carousel-item img {
    margin-bottom: 28px;
}
.testinobualwrap .carousel-caption {
    position: inherit;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 0;
    color: var(--brand-black);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.carousel-caption .line {
    display: block;
    margin: 28px auto;
    width: 80px;
    height: 2px;
    background: var(--brand-blue);
}
.testinobualwrap .carousel-control-next,
.testinobualwrap .carousel-control-prev {
    width: 4% !important;
    opacity: 1;
    filter: invert(1);
}
.carousel-caption h5,
.carousel-caption h5 p {
    font-size: clamp(22px, 2.4vw, 30px);
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.4;
    color: var(--brand-black);
}
.carousel-caption p {
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-blue);
}
.carousel-control-prev-icon {
    background-image: url(../images/icon/left-arrow.png) !important;
    height: 49px !important;
}
.carousel-control-next-icon {
    background-image: url(../images/icon/right-arrow.png) !important;
    height: 49px !important;
}

/* ============================= FOOTER ============================= */
footer {
    background: var(--brand-black) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), transparent 40%, var(--brand-blue) 80%, transparent);
}
.footernav {
    border-color: rgba(255, 255, 255, .15);
}
.footernav ul li a {
    color: rgba(255, 255, 255, .9);
    font-size: var(--font-body-sm);
    font-family: var(--font-primary);
    letter-spacing: .04em;
    text-decoration: none;
    transition: color .3s ease;
}
.footernav ul li a:hover {
    color: var(--brand-blue);
}
.copyright {
    color: rgba(255, 255, 255, .6);
    font-size: var(--font-body-sm);
    font-family: var(--font-primary);
}
.copyright a {
    color: rgba(255, 255, 255, .8);
    transition: color .3s ease;
}
.copyright a:hover {
    color: var(--brand-blue);
}

/* ============================= REDUCED MOTION ============================= */
@media (prefers-reduced-motion: reduce) {
    .bwr-hero__bg,
    .bwr-areas__track,
    .bwr-dot {
        animation: none !important;
    }
    .bwr-hero__eyebrow,
    .bwr-hero__title,
    .bwr-hero__lede,
    .bwr-hero__cta,
    .bwr-hero__trust {
        opacity: 1;
        animation: none !important;
    }
}
