:root {
    --teal: #7be8c9;
    --teal-dk: #3ecaa8;
    --teal-dkr: #1a9e82;
    --teal-pale: #e8faf6;
    --teal-mid: #b4f0e0;
    --white: #fff;
    --charcoal: #1a1a1a;
    --mid: #4a4a4a;
    --light: #888;
    --off: #f7fcfa;
    --border: #e4e4e4;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('https://bjc.pitsvr.com/assets/css/fonts/CormorantGaramond-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('https://bjc.pitsvr.com/assets/css/fonts/Jost-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}
/* ── SEOTXT ── */
.hdrseo {
    background: var(--teal-dkr);
    padding: 0 3rem;
}
.ftrseo {
    background: #111;
}

.seotxt {
    font-size: 7px;
    padding-top: 2px;
    padding-bottom:2px;
}

h1.seotxt {
    margin: 0px;
    color: #31ba9d;
  
}

h2.seotxt {
    text-align:right;
    margin: -2px 0 1px;
   
    color: #4a4a4a;
}
/* ── TOPBAR ── */
#topbar {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 500;
    height: 40px;
    background: var(--teal-dkr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}
    #topbar.scrolled {
        top:0;
    }

    #topbar a, #topbar span {
        color: #fff;
        font-size: .62rem;
        letter-spacing: .11em;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

        #topbar a:hover {
            color: var(--teal-pale);
        }

.tbl,
.tbr {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tbsep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .3);
}


.logo-div {
    width: 90px;
    flex-shrink: 0;
}

.menu-div {
    flex: 1;
   display:flex;
  justify-content:flex-end;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 400;
    height: 115px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-bottom: 2.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    box-shadow: 0 2px 24px rgba(123, 232, 201, .18);
    transition: box-shadow .4s;
}

    #navbar.scrolled {
        top: 40px;
        box-shadow: 0 4px 40px rgba(0, 0, 0, .09);
    }

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .nav-logo img {
        height: 90px;
        width: auto;
        display: block;
    }

nav {
    display: flex;
    align-items: center;
    height: 30px;
    justify-content:end;
}

.mobile-topbar-items {
    display: none;
}



.ni {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

    .ni > a {
        font-size: .65rem;
        letter-spacing: .11em;
        text-transform: uppercase;
        color: var(--mid);
        text-decoration: none;
        font-weight: 500;
        padding: 0 .82rem;
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
        transition: color .25s;
        white-space: nowrap;
        justify-content: center;
        gap: 2px;
    }

        .ni > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: .82rem;
            right: .82rem;
            height: 2px;
            background: var(--teal);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s;
        }

    .ni:hover > a {
        color: var(--charcoal);
    }

        .ni:hover > a::after {
            transform: scaleX(1);
        }

.dd {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 225px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .11);
    border-top: 2px solid var(--teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 100;
}

.ni:hover .dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd a {
    display: block;
    padding: .6rem 1.2rem;
    font-size: .64rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid rgba(123, 232, 201, .15);
    transition: background .2s, color .2s, padding-left .2s;
}

    .dd a:last-child {
        border-bottom: none;
    }

    .dd a:hover {
        background: var(--teal-pale);
        color: var(--charcoal);
        padding-left: 1.5rem;
    }

.hs > a {
    padding-right: 1.5rem !important;
    position: relative;
}

    .hs > a::before {
        content: '›';
        position: absolute;
        right: .65rem;
        font-size: .9rem;
        line-height: 1;
    }

.sdd {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 195px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .11);
    border-top: 2px solid var(--teal);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .22s, transform .22s, visibility .22s;
}

.hs:hover .sdd {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-cta {
    margin-left: .6rem;
    padding: .48rem 1.3rem;
    background: var(--teal);
    color: var(--charcoal) !important;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: background .25s, transform .2s;
}

    .nav-cta:hover {
        background: var(--teal-dk);
        transform: translateY(-1px);
    }

/* ── SEARCH ── */
#search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

#search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .62rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    padding: 0;
}

    #search-btn:hover {
        opacity: 1;
    }

    #search-btn svg {
        width: 13px;
        height: 13px;
    }

#search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: #fff;
    border-top: 2px solid var(--teal);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    padding: .7rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s, visibility .25s;
}

    #search-panel.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #search-panel form {
        display: flex;
        gap: .4rem;
    }

#search-input {
    flex: 1;
    border: 1px solid var(--border);
    padding: .5rem .7rem;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color .2s;
}

    #search-input:focus {
        border-color: var(--teal);
    }

#search-submit {
    padding: .5rem .9rem;
    background: var(--teal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    #search-submit svg {
        width: 14px;
        height: 14px;
    }

#hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 112px);
    min-height: 580px;
    margin-top: 112px;
    overflow: hidden;
    background: #111;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    will-change: opacity;
}

    .slide.active {
        z-index: 2;
        opacity: 1;
    }

.sbg {
    position: absolute;
    inset: 0;
    transform: scale(1.07);
}

    .sbg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slide.active .sbg {
    transform: scale(1);
    transition: transform 8s cubic-bezier(.25, .46, .45, .94);
}

.sov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .44) 42%, rgba(0, 0, 0, .1) 70%, transparent 100%);
}

.sov-q {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
}

@media(max-width: 767px) {
    .sov {
        display: none;
        background: none !important
    }
}

/* Grain overlay on hero */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px;
}

.sc {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5.5rem;
    max-width: 820px;
}

.sc-q {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10rem;
}

.sey {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.4rem;
}

.sel {
    width: 36px;
    height: 2px;
    background: var(--teal);
}

.set {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.stt {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.3rem;
}

    .stt em {
        font-style: italic;
        color: var(--teal);
    }

.tl {
    display: block;
    overflow: hidden;
}

.ti {
    display: block;
}

.sds {
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    max-width: 430px;
    margin-bottom: 2rem;
}

.sbt {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* quote */
.qmk {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: .5;
    color: var(--teal);
}

.qtx {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.95rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.62;
    color: #fff;
    margin: 1.2rem 0 1.8rem;
}

.qat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
}

.qrl {
    width: 40px;
    height: 1.5px;
    background: var(--teal);
}

.qnm {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.qsr {
    font-size: .6rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.qct {
    margin-top: 1.8rem;
}

/* Buttons */
.bf {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .82rem 2.1rem;
    background: var(--teal);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s;
}

    .bf::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--teal-dk);
        transform: translateX(-101%);
        transition: transform .36s cubic-bezier(.76, 0, .24, 1);
    }

    .bf:hover {
        transform: translateY(-2px);
    }

        .bf:hover::before {
            transform: translateX(0);
        }

    .bf span,
    .bf svg {
        position: relative;
        z-index: 1;
    }

    .bf svg {
        transition: transform .25s;
    }

    .bf:hover svg {
        transform: translateX(4px);
    }

.bg {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 2.1rem;
    border: 1.5px solid rgba(255, 255, 255, .48);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
}

    .bg:hover {
        background: rgba(255, 255, 255, .1);
        border-color: #fff;
        transform: translateY(-2px);
    }

/* Slider controls */
.sdots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: .6rem;
    align-items: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    border: none;
    cursor: pointer;
    transition: background .3s, width .35s, border-radius .35s;
    padding: 0;
}

    .dot.active {
        background: var(--teal);
        width: 28px;
        border-radius: 4px;
    }

.sarr {
    position: absolute;
    bottom: 1.6rem;
    right: 3.5rem;
    z-index: 20;
    display: flex;
    gap: .6rem;
}

.arr {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background .25s, border-color .25s, transform .2s;
}

    .arr:hover {
        background: var(--teal);
        border-color: var(--teal);
        color: var(--charcoal);
        transform: scale(1.06);
    }

    .arr svg {
        width: 17px;
        height: 17px;
    }

.spb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 3px;
    background: rgba(255, 255, 255, .08);
}

.pb {
    height: 100%;
    background: var(--teal);
    width: 0;
}

/* MARQUEE */
.mq {
    background: var(--charcoal);
    overflow: hidden;
    padding: .6rem 0;
    position: relative;
    z-index: 5;
}

.mqt {
    display: flex;
    width: max-content;
    animation: mq 34s linear infinite;
}

.mqi {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0 2.2rem;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.mqd {
    width: 4px;
    height: 4px;
    background: var(--teal);
    transform: rotate(45deg);
}

@keyframes mq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
#newsletter {
    padding: 2rem 0px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
    /*margin-top: 50px;*/
}

    #newsletter::before {
        content: '';
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        pointer-events: none;
        /*opacity: 0.2;*/
    }

    /* teal radial glow top right */
    #newsletter::after {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(123, 232, 201, .08) 0%, transparent 65%);
        pointer-events: none;
    }

.nl-wrap {
   
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.12;
    margin-bottom: 1.4rem;
}

    .nl-title em {
        font-style: italic;
        color: var(--teal-dkr);
    }

.nl-p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.85;
    max-width: 480px;
    font-weight: 300;
}

.nl-form-wrap {
    background: rgba(255, 255, 255, .03);
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    position: relative;
    /*border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);*/
}

.nl-input-group {
    display: flex;
    gap: 0;
    width: 100%;
}

.nl-input {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--mid);
    padding: 0 1rem;
    height: 60px;
    color: #000;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: background .3s, border-color .3s;
    margin-right: 30px;
}

    .nl-input:focus {
        background: rgba(255, 255, 255, .06);
        border-color: var(--teal);
    }

.nl-form .msgh5 {
    color: red;
    font-size: 14px;
    margin-bottom: 16px;
    display: block;
    line-height: 1.5;
}

.nl-form .bf {
    height: 60px;
    padding: 0 2.8rem;
    white-space: nowrap;
}

.nl-privacy {
    font-size: .62rem;
    letter-spacing: .05em;
    color: var(--charcoal);
    margin-top: 1.4rem;
    font-weight: 400;
}

    .nl-privacy a {
        color: var(--teal-dkr);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: opacity 0.2s;
    }

        .nl-privacy a:hover {
            opacity: 0.8;
        }

.nl-bg-icon {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 320px;
    height: 320px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
    opacity: .05;
}

@media screen and (max-width: 1399px) {

    .tbl, .tbr {
        gap: 0.8rem;
    }
}

    @media screen and (max-width: 1299px) {
        .ni > a {
            padding: 0 0.48rem;
        }
    }

@media screen and (max-width: 992px) {
    .nl-wrap {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .nl-p {
        margin: 0 auto;
    }

    .nl-form-wrap {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    #newsletter {
        padding-top: 5rem;
        padding-bottom: 0;
    }

    .nl-form-wrap {
        padding: 2rem 1.5rem;
    }

    .nl-input-group {
        flex-direction: column;
        gap: .8rem;
    }

    .nl-input {
        border: 1px solid rgba(255, 255, 255, .15);
        width: 100%;
        height: 56px;
    }

    .nl-form .bf {
        width: 100%;
        height: 56px;
        justify-content: center;
    }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    background: #111;
    color: rgba(255, 255, 255, .7);
    padding: 4.5rem 0 2rem;
}

.ft {

    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.fl img {
    height: 50px;
    width: auto;
    margin-bottom: 1.2rem;
    opacity: .9;
}

.fl-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: .97rem;
    font-style: italic;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 1.3rem;
}

.fc-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    margin-bottom: .5rem;
    color: rgba(255, 255, 255, .65);
}

    .fc-row a {
        color: var(--teal);
        text-decoration: none;
        font-size: .75rem;
    }

        .fc-row a:hover {
            color: #fff;
        }

    .fc-row svg {
        flex-shrink: 0;
        width: 13px;
        height: 13px;
    }

.fhours {
    margin-top: 1rem;
    font-size: .73rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .55);
}

    .fhours strong {
        color: rgba(255, 255, 255, .8);
        display: block;
        margin-bottom: .3rem;
        font-size: .64rem;
        letter-spacing: .15em;
        text-transform: uppercase;
    }

.fsoc {
    display: flex;
    gap: .75rem;
    margin-top: 1.4rem;
}

    .fsoc a {
        width: 33px;
        height: 33px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .5);
        text-decoration: none;
        transition: border-color .25s, color .25s;
    }

        .fsoc a:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

    .fsoc svg {
        width: 13px;
        height: 13px;
    }

.fcol .ftrhdr {
    font-size: .63rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(123, 232, 201, .15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fcol a {
    display: block;
    font-size: .74rem;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .2s, padding-left .2s;
}

    .fcol a:hover {
        color: var(--teal);
        padding-left: .3rem;
    }

.fb {
 
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .63rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .05em;
}

    .fb a {
        color: rgba(255, 255, 255, .4);
        text-decoration: none;
    }

        .fb a:hover {
            color: var(--teal);
        }

/* ══════════════════════════════════
   RESPONSIVE LAYOUT adjustments
══════════════════════════════════ */

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body,
    a,
    button,
    .cc,
    .svc-sm,
    .svc-hero {
        cursor: auto !important;
    }

    #cur {
        display: none !important;
    }
}


/* 1200px - Laptops */
@media screen and (max-width: 1200px) {

    .ft {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* 992px - Tablets */
@media screen and (max-width: 992px) {
    #topbar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        white-space: normal;
        padding: 0.8rem 1.5rem;
        height: auto;
        justify-content: center;
        gap: 0.8rem;
    }

    .tbl,
    .tbr {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    
    #navbar {
        position: sticky;
        top: 0;
        padding: 0 1.5rem;     
    }

    nav {
        gap: 0.5rem;
    }

    .ni > a {
        font-size: 0.55rem;
        padding: 0 0.5rem;
    }

    .nav-cta {
        padding: 0.4rem 1rem;
    }

    .ft {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--charcoal);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

        .mobile-toggle span:nth-child(1) {
            top: 0;
        }

        .mobile-toggle span:nth-child(2) {
            top: 11px;
        }

        .mobile-toggle span:nth-child(3) {
            bottom: 0;
        }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 11px;
    }

body.no-scroll {
    overflow: hidden;
}

/* 768px - Phones */

@media screen and (max-width: 1199.98px) {
    .mobile-toggle {
        display: block;
    }

    #navbar {
        padding: 0 1.25rem;
        height:80px;
    }

    nav {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff !important;
        display: block;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 999;
        overflow-y: auto;
        height: auto;
    }

        nav.active {
            transform: translateX(0);
        }
    .nav-logo img {
        height: 70px;
    }

    .ni {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 0.5rem;
    }

        .ni > a {
            font-size: 0.85rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: auto;
            color: var(--charcoal);
            font-weight: 500;
            letter-spacing: 0.05em;
        }

            .ni > a::after {
                display: none;
            }

    /* Mobile Topbar Content */
    /* Mobile Topbar Content — ensure it stays pinned at the very top */
    #topbar {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 35px !important;
        padding: 0 1.25rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 2000 !important;
        background: var(--teal-dkr) !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hdrseo {
        padding: 0 1.25rem !important;
    }

    #topbar .tbr,
    #topbar .tbsep
   {
        display: none !important;
    }

    #topbar .tbl {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-around !important;
    }

     

        #topbar .tbl i {
            font-size: 1.15rem !important;
            color: #fff !important;
        }


    #navbar {
        position: fixed !important;
        top: 35px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        transform: none !important;
        backdrop-filter: none !important;
    }

    /* Menu should open below the fixed header */
    nav {
        top: 85px !important;
        height: calc(100vh - 85px) !important;
        position: fixed !important;
    }

    .nav-cta {
        margin: 1rem 0;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .mobile-topbar-items {
        padding-bottom: 1.5rem;
        display: block;
    }

    .mti-call,
    .mti-mail,
    .mti-hours {
        display: block;
        font-size: 0.85rem;
        color: var(--charcoal);
        margin-bottom: 0.5rem;
        text-decoration: none;
        letter-spacing: 0.02em;
        font-weight: 500;
    }

    .mti-hours {
        opacity: 0.6;
        font-size: 0.75rem;
    }

    .mti-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        margin-top: 1.2rem;
    }

        .mti-grid a {
            background: var(--off);
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.8rem;
            text-align: center;
            border: 1px solid var(--border);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

    .mti-sep {
        margin: 2rem 0 1rem;
        border: 0;
        border-top: 1px solid var(--border);
        opacity: 0.3;
    }
    /* Accordion styles */
    .ni.open > .dd,
    .hs.open > .sdd {
        display: block;
    }

    .hs {
        margin-bottom: 0.5rem;
    }

        .has-sub svg, .hs > a::before {display:none;}

    .has-sub > a {
        position: relative;
        height: auto;
    }

        .has-sub > a::after {
            content: '+';
            position: absolute;
            right: 0;
            left: auto;
            bottom: auto;
            top: 40%;
            transform: translateY(-50%);
            background: transparent;
            width: auto;
            height: auto;
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1;
            display: block !important;
        }

    .has-sub.open > a::after {
        content: '−';
    }
    .ni:hover > a::after {
        transform: translateY(-50%);
    }
    .dd,
    .sdd {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1.2rem;
        margin-top: 0;
        background: var(--off);
    }

}

@media screen and (max-width: 768px) {

    #topbar .tbl > span {
        display: none !important;
    }

    #hero {
        height: calc(100vh - 170px) !important;
    }

    .sc {
        padding: 0 1.5rem;
        justify-content: flex-end;
        padding-bottom: 5rem;
    }

    .stt {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .sds {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .sbt {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0.6rem;
    }

    .bf,
    .bg {
        justify-content: center;
        text-align: center;
    }

    .sarr {
        display: none;
    }

    .sdots {
        bottom: 0.5rem;
    }

    .qtx {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .sc-q {
        padding: 0 1rem;
    }

    .qmk {
        font-size: 5rem;
        margin-bottom: 0;
    }

    #collections,
    #services,
    #about,
    #testimonials,
    footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
      
    }

    #about {
        padding-bottom: 0;
    }

    .cg {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .cc {
        min-height: 320px;
    }

    .cc-f {
        grid-row: span 1;
    }

    .cc-wide {
        grid-column: span 1;
    }

    .sa-row {
        padding: 1.5rem;
    }

    .sa-row-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .svc-grid4 {
        grid-template-columns: 1fr;
    }

    .ab-t {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .ab-ctas {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .btn-s,
    .btn-o {
        justify-content: center;
        width: 100%;
    }

    .sec-head {
        margin-bottom: 2.5rem;
    }

    .sh-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .tgrid {
        grid-template-columns: 1fr;
    }

    .tc {
        padding: 1.8rem;
    }

    .ft {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .fb {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
    }

    /* Footer Accordion (Mobile) */
    .fcol {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        .fcol .ftrhdr {
            margin-bottom: 0;
            padding: 1.2rem 0;
            cursor: pointer;
            border-bottom: none;
            user-select: none;
        }

            .fcol .ftrhdr::after {
                content: '+';
                font-family: 'Jost', sans-serif;
                font-size: 1.2rem;
                font-weight: 300;
                color: var(--teal);
                transition: transform 0.3s ease;
            }

        .fcol.open .ftrhdr::after {
            content: '\2212';
            transform: none;
        }

        .fcol a {
            max-height: 0;
            overflow: hidden;
            margin-bottom: 0;
            opacity: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
            padding-left: 0.5rem;
        }

        .fcol.open a {
            max-height: 50px;
            /* enough for one line */
            margin-bottom: 0.8rem;
            opacity: 1;
        }

            .fcol.open a:last-child {
                margin-bottom: 1.5rem;
            }
}

/* 480px - Small Mobile */
@media screen and (max-width: 480px) {
    #topbar .tbl a span {
        display: none !important;
    }
    .mti-grid {

        grid-template-columns: 1fr;
   }
    .stt {
        font-size: 2rem;
    }

    .cc-name {
        font-size: 1.4rem;
    }

    .sh-title {
        font-size: 2.1rem;
    }

    .svc-hero-title {
        font-size: 1.8rem;
    }
    .inner-hero h1 {
        font-size: 1.5rem;
    }
}
