    /* fonts */

    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    :root{
        --font-one: "Inter", sans-serif;
        --font-two: "Public Sans", sans-serif;
        --font-three: "Jost", sans-serif;
        --logo-color: #039774;
    }

    body{
        font-family: var(--font-three);
        background-color: #ffffff;
    }

    .section-padding{
        padding: 100px 0px;
    }

    .para{
        font-size: 15px;   
        font-family: var(--font-two); 
        line-height: 1.75;
        color: #6e6e6a;
        
    }

    .heading{
        font-size: 100px;
        font-weight: 700;
        font-family: var(--font-three);
    }

    .headings-small{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 42px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        color: #161613;
        margin-bottom: 14px;
    }

    .headings-small em{
        font-style: italic;
        font-weight: 500;
        color: var(--logo-color);
    }

    a{
        color: white;
    }

    a:hover{
        color: white;
    }

    ul, li{
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

/* ================= NAVIGATION (capsule style) ================= */

.navigation{
    padding: 22px 50px;
    width: 100%;
    background-color: #ffffff;
}

.logo img{
    height: 80px;
    display: block;
}

.nav-capsule{
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #f6f6f4;
    border-radius: 40px;
    padding: 6px;
}

.links-main{
    display: flex;
}

.nav-capsule li{
    font-family: var(--font-one);
    font-size: 13.5px;
    font-weight: 500;
    color: #767672;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-capsule li.active{
    background-color: #ffffff;
    color: #1c1c1c;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.nav-capsule li:hover{
    color: var(--logo-color);
}

.nav-actions{
    gap: 26px;
}

.nav-action-item{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-one);
    font-size: 13.5px;
    font-weight: 500;
    color: #1c1c1c;
    cursor: pointer;
    transition: color 0.25s ease;
}

.nav-action-item svg{
    width: 17px;
    height: 17px;
    stroke: #1c1c1c;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s ease;
}

.nav-action-item:hover{
    color: var(--logo-color);
}

.nav-action-item:hover svg{
    stroke: var(--logo-color);
}

.nav-divider{
    width: 1px;
    height: 18px;
    background-color: #e3e3e0;
}

.cart-badge{
    background-color: var(--logo-color);
    color: #ffffff;
    font-family: var(--font-one);
    font-size: 10.5px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
    line-height: 1.4;
}

/* ---------- Mobile hamburger + offcanvas (new, isolated) ---------- */

.nav-toggle-btn{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 25px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle-btn span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1c1c1c;
    border-radius: 2px;
}

.mobile-offcanvas{
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -6px 0 24px rgba(0,0,0,0.15);
    padding: 28px 24px;
    transition: right 0.35s ease;
    z-index: 9999;
}

.mobile-offcanvas.is-open{
    right: 0;
}

.mobile-offcanvas ul{
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.mobile-offcanvas ul li{
    font-family: var(--font-one);
    font-size: 15px;
    font-weight: 500;
    color: #444;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.mobile-offcanvas ul li.active{
    color: var(--logo-color);
}

.offcanvas-close-btn{
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.offcanvas-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9998;
    display: none;
}

.offcanvas-overlay.is-open{
    display: block;
}

@media (max-width: 991.98px){
    .links-main{
        display: none !important;
    }
    .nav-toggle-btn{
        display: flex;
    }
}

@media (max-width: 500px){
    .logo img{
        height: 60px;
    }
    .nav-actions{
        gap: 18px
    }

    .cart-badge {
        font-size: 8px;
        padding: 1px 4px;
        margin-bottom: 8px;
    }   
}

    /* ================= HERO (split style) ================= */

    .hero-split{
        display: flex;
        align-items: stretch;
        height: 88vh;
        width: 100%;
        background-color: #ffffff;
        padding: 0 50px 40px;
        gap: 50px;
    }

    .hero-left{
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 580px;
    }

    .hero-eyebrow{
        font-family: var(--font-one);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #9b9b96;
        margin-bottom: 22px;
    }

    .hero-left h1{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 54px;
        line-height: 1.18;
        letter-spacing: -1px;
        color: #161613;
        margin-bottom: 22px;
    }

    .hero-left h1 em{
        font-style: italic;
        font-weight: 500;
        color: var(--logo-color);
    }

    .hero-left p{
        font-family: var(--font-two);
        font-size: 15.5px;
        line-height: 1.75;
        color: #6e6e6a;
        margin-bottom: 36px;
    }

    .hero-actions{
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 56px;
    }

    .hero-btn{
        font-family: var(--font-one);
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: var(--logo-color);
        border: none;
        padding: 15px 34px;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.25s ease, transform 0.2s ease;
    }

    .hero-btn:hover{
        background-color: #027c5f;
        transform: translateY(-2px);
    }

    .hero-link{
        font-family: var(--font-one);
        font-size: 14px;
        font-weight: 500;
        color: #1c1c1c;
        text-decoration: none;
        border-bottom: 1.4px solid #1c1c1c;
        padding-bottom: 3px;
        transition: color 0.25s ease, border-color 0.25s ease;
    }

    .hero-link:hover{
        color: var(--logo-color);
        border-color: var(--logo-color);
    }

    .hero-stats{
        display: flex;
        gap: 36px;
    }

    .hero-stats div{
        display: flex;
        flex-direction: column;
        padding-left: 18px;
        border-left: 1.4px solid #ececea;
    }

    .hero-stats div:first-child{
        padding-left: 0;
        border-left: none;
    }

    .hero-stats strong{
        font-family: var(--font-three);
        font-size: 26px;
        font-weight: 700;
        color: #161613;
    }

    .hero-stats span{
        font-family: var(--font-one);
        font-size: 11.5px;
        color: #9b9b96;
        letter-spacing: 0.4px;
        margin-top: 4px;
    }

    .hero-right{
        flex: 1;
    }

    .hero-image{
        width: 100%;
        height: 100%;
        border-radius: 28px;
        background-color: #f0efe9;
        background-image: url('../images/hero-side.jpg');
        background-size: cover;
        background-position: center;
    }

    @media (max-width: 991px){
        .hero-split{
            flex-direction: column;
            height: auto;
            padding: 30px 30px 50px;
        }
        .hero-left{
            max-width: 100%;
            padding-top: 20px;
        }
        .hero-right{
            height: 360px;
        }
        .hero-left h1{
            font-size: 38px;
        }
        .navigation{
            padding: 18px 20px;
        }
        .nav-capsule{
            display: none;
        }
    }















    /* products section */

    /* Scoped purely to the products carousel section. White background throughout, no fills introduced. */

    .products-section{
        background-color: #ffffff;
        padding: 100px 0px;
    }

    .products-head{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        margin-bottom: 60px;
    }


    .products-head .para{
        max-width: 460px;
    }

    .products-copy{
        max-width: 560px;
    }

    .products-nav{
        display: flex;
        gap: 12px;
        flex-shrink: 0;
        padding-bottom: 6px;
    }

    .carousel-arrow{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.4px solid #ececea;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color 0.25s ease;
    }

    .carousel-arrow svg{
        width: 18px;
        height: 18px;
        stroke: #1c1c1c;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.25s ease;
    }

    .carousel-arrow:hover{
        border-color: var(--logo-color);
    }

    .carousel-arrow:hover svg{
        stroke: var(--logo-color);
    }

    .carousel-arrow.is-disabled{
        opacity: 0.3;
        pointer-events: none;
    }

    .products-track{
        display: flex;
        gap: 28px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 4px 4px 14px;
        margin: 0 -4px;
    }

    .products-track::-webkit-scrollbar{
        display: none;
    }

    .products-track{
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .product-card{
        height: 700px;
        position: relative;
        flex: 0 0 calc((100% - 56px) / 3);
        aspect-ratio: 0.56;
        scroll-snap-align: start;
        overflow: hidden;
        background-color: #ffffff;
        border: 1px solid #ececea;
        border-radius: 28px;
        transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .product-card:hover{
        border-color: var(--logo-color);
        transform: translateY(-4px);
    }

    .product-image{
        position: absolute;
        inset: 0;
        /* width: 100%; */
        height: 70%;
        object-fit: cover;
        display: block;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
    }

    .product-gradient{
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(
            to bottom,
            #ffffff00 0%,
            rgba(255,255,255,0) 16%,
            rgba(255,255,255,0) 44%,
            #ffffff 66%,
            #ffffff 100%
        );
    }

    .product-content{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        padding: 0 24px 26px;
        text-align: center;
    }

    .product-name{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 19px;
        color: #161613;
        margin-bottom: 5px;
    }

    .product-desc{
        font-family: var(--font-two);
        font-size: 12.5px;
        line-height: 1.55;
        color: #6e6e6a;
        margin-bottom: 16px;
    }

    .product-meta{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .product-size{
        font-family: var(--font-one);
        font-weight: 500;
        font-size: 11px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #9b9b96;
    }

    .product-price{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 19px;
        color: #161613;
    }

    .product-price span{
        font-family: var(--font-one);
        font-weight: 500;
        font-size: 11px;
        color: #9b9b96;
        margin-left: 2px;
    }

    .product-actions{
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .qty-stepper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        width: 92px;
        border: 1px solid #ececea;
        border-radius: 30px;
        padding: 4px 5px;
        background-color: #ffffff;
    }

    .qty-btn{
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: none;
        background-color: transparent;
        font-family: var(--font-one);
        font-size: 15px;
        font-weight: 600;
        color: #1c1c1c;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .qty-btn:hover{
        background-color: #f6f6f4;
        color: var(--logo-color);
    }

    .qty-value{
        font-family: var(--font-one);
        font-weight: 600;
        font-size: 13px;
        color: #161613;
        min-width: 14px;
        text-align: center;
    }

    .add-cart-btn{
        flex: 1;
        font-family: var(--font-one);
        font-size: 12px;
        font-weight: 600;
        color: #ffffff;
        background-color: var(--logo-color);
        border: none;
        padding: 12px 0;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.25s ease, transform 0.2s ease;
    }

    .add-cart-btn:hover{
        background-color: #027c5f;
        transform: translateY(-2px);
    }

    .add-cart-btn.is-added{
        background-color: #1c1c1c;
    }

    @media (max-width: 991px){
        .product-card{
            flex: 0 0 calc((100% - 28px) / 2);
            height: 600px
        }
    }

    @media (max-width: 700px){
        .products-section{
            padding: 70px 24px 80px;
        }
        .products-head{
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 40px;
        }
        .headings-small{
            font-size: 32px;
        }
        .product-card{
            flex: 0 0 84%;
            aspect-ratio: 0.62;
        }
    }

    @media (max-width: 500px){
        .product-card{
            height: 500px;
        }

        .products-head{
            margin-bottom: 20px;
        }
    }













    /* journey section */

    .journey-section{
        background-color: #ffffff;
        display: flex;
        align-items: stretch;
        /* min-height: 640px; */
        width: 100%;
        overflow: hidden;
    }

    /* ---- LEFT: full-bleed image, no spacing from screen edge ---- */
    .journey-image-wrap{
        flex: 0 0 46%;
        position: relative;
        overflow: hidden;
    }

    .journey-image{
        position: absolute;
        inset: 0;
        background-image: url('../3.png');
        background-size: cover;
        background-position: center;
        clip-path: inset(100% 0% 0% 0%);
        transform: scale(1.15);
        will-change: clip-path, transform;
        height: 100%;
    }

    .journey-stat-card{
        position: absolute;
        left: 32px;
        bottom: 32px;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 18px 26px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 14px 34px rgba(0,0,0,0.14);
        opacity: 0;
        transform: translateY(24px);
        z-index: 2;
    }

    .journey-stat-card .stat-number{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 30px;
        color: #161613;
        line-height: 1;
    }

    .journey-stat-card .stat-number span{
        font-size: 15px;
        font-weight: 500;
        color: var(--logo-color);
        margin-left: 2px;
    }

    .journey-stat-card .stat-label{
        font-family: var(--font-one);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #9b9b96;
        margin-top: 5px;
        max-width: 130px;
    }

    /* ---- RIGHT: content panel ---- */
    .journey-content-wrap{
        flex: 1;
        display: flex;
        align-items: center;
    }

    .journey-content{
        padding:300px 70px;
        max-width: 800px;
    }


    .journey-content h2 .line{
        display: block;
        overflow: hidden;
    }

    .journey-content h2 .line span{
        display: inline-block;
        opacity: 0;
        transform: translateY(100%);
    }

    .journey-content h2 em{
        font-style: italic;
        font-weight: 500;
        color: var(--logo-color);
    }

    /* ---- signature: the journey progress line ---- */
    .journey-path{
        position: relative;
        padding-left: 30px;
        margin-bottom: 32px;
    }

    .journey-path::before{
        content: '';
        position: absolute;
        left: 4px;
        top: 4px;
        bottom: 4px;
        width: 2px;
        background-color: #e3e1da;
    }

    .journey-path-progress{
        position: absolute;
        left: 4px;
        top: 4px;
        width: 2px;
        height: 0%;
        background-color: var(--logo-color);
    }

    .journey-stop{
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 0;
    }

    .stop-dot{
        position: absolute;
        left: -30px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 2px solid #d8d6cf;
        transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .journey-stop.is-active .stop-dot{
        border-color: var(--logo-color);
        background-color: var(--logo-color);
        box-shadow: 0 0 0 4px rgba(3,151,116,0.15);
    }

    .stop-label{
        font-family: var(--font-one);
        font-size: 13.5px;
        font-weight: 500;
        color: #9b9b96;
        transition: color 0.3s ease;
    }

    .journey-stop.is-active .stop-label{
        color: #161613;
    }



    .journey-btn{
        display: inline-block;
        font-family: var(--font-one);
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: var(--logo-color);
        border: none;
        padding: 15px 34px;
        border-radius: 30px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.25s ease, transform 0.2s ease;
        opacity: 0;
        transform: translateY(14px);
    }

    .journey-btn:hover{
        background-color: #027c5f;
        transform: translateY(-2px);
    }

    @media (max-width: 991px){
        .journey-content{
            padding: 80px 30px;
            max-width: 800px;
        }
    }

    @media (max-width: 770px){
        .journey-section{
            flex-direction: column;
        }
        .journey-image-wrap{
            flex: 0 0 auto;
            width: 100%;
            height: 560px;
        }
        .journey-content{
            padding: 60px 30px;
        }

        .section-padding{
            padding: 50px 0px;
        }
    }










    /* why choose section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, .section-padding, existing fonts */

    .showcase-section{
        background-color: #f3f3f3;
        overflow: hidden;
        border-radius: 100px;
    }

    .showcase-head{
        text-align: center;
        max-width: 560px;
        margin: 0 auto 70px;
    }

    .showcase-head .para{
        margin: 0 auto;
    }

    .showcase-layout{
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 30px;
        max-width: 1180px;
        margin: 0 auto;
    }

    /* ---- points columns ---- */
    .showcase-points{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 600px;
    }

    .showcase-point{
        display: flex;
        align-items: center;
        gap: 14px;
        max-width: 230px;
        opacity: 0.6;
        /* transition: opacity 0.5s ease; */
        cursor: pointer;
    }

    .showcase-point.is-active{
        opacity: 1;
    }

.showcase-points-left .showcase-point:nth-child(1){ position: relative; left: -8px; }
.showcase-points-left .showcase-point:nth-child(2){ position: relative; left: -52px; }
.showcase-points-left .showcase-point:nth-child(3){ position: relative; left: -8px; }

.showcase-points-right .showcase-point:nth-child(1){ position: relative; left: 8px; }
.showcase-points-right .showcase-point:nth-child(2){ position: relative; left: 52px; }
.showcase-points-right .showcase-point:nth-child(3){ position: relative; left: 8px; }



    .showcase-points-right{
        align-items: flex-end;
    }

    .showcase-points-right .showcase-point{
        flex-direction: row-reverse;
        text-align: right;
        margin-left: auto;
    }



    .point-icon{
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #f0efe9;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.4s ease;
    }

    .showcase-point.is-active .point-icon{
        background-color: var(--logo-color);
    }

    .point-icon svg{
        width: 19px;
        height: 19px;
        stroke: #1c1c1c;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.4s ease;
    }

    .showcase-point.is-active .point-icon svg{
        stroke: #ffffff;
    }

    .point-title{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 15.5px;
        color: #161613;
        margin-bottom: 3px;
    }

    .point-desc{
        font-family: var(--font-two);
        font-size: 12px;
        line-height: 1.55;
        color: #9b9b96;
        margin-bottom: 0;
    }

    /* ---- center image ---- */
    .showcase-center{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase-image-wrap{
        position: relative;
        width: 340px;
        height: 600px; /* taller */
        border-radius: 28px;
        overflow: hidden;
        background-color: #f0efe9;
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .showcase-slide{
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.1s ease;
    }

    .showcase-slide.is-active{
        opacity: 1;
    }

    .showcase-slide img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .showcase-slide-overlay{
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%);
    }

    /* ---- dot indicators ---- */
    .showcase-dots{
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 26px;
    }

    .showcase-dot{
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #e3e1da;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    }

    .showcase-dot.is-active{
        background-color: var(--logo-color);
        transform: scale(1.35);
        box-shadow: 0 0 0 4px rgba(3,151,116,0.18);
    }

@media (max-width: 1100px){

    .showcase-layout{
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left right"
            "center center";
        gap: 30px;
    }

    .showcase-points-left{
        grid-area: left;
    }

    .showcase-points-right{
        grid-area: right;
    }

    .showcase-center{
        grid-area: center;
    }

    /* the staggered left/right offsets were designed for the wide
       3-column layout — reset them so points sit cleanly in a row */
    .showcase-points{
        height: auto;
        justify-content: flex-start;
        gap: 22px;
    }

    .showcase-points-left .showcase-point:nth-child(1),
    .showcase-points-left .showcase-point:nth-child(2),
    .showcase-points-left .showcase-point:nth-child(3),
    .showcase-points-right .showcase-point:nth-child(1),
    .showcase-points-right .showcase-point:nth-child(2),
    .showcase-points-right .showcase-point:nth-child(3){
        left: 0;
        max-width: none;
    }

    /* make right column read left-to-right like the left one,
       instead of mirrored/reversed */
    .showcase-points-right{
        align-items: flex-start;
    }

    .showcase-points-right .showcase-point{
        flex-direction: row;
        text-align: left;
        margin-left: 0;
    }

    .showcase-image-wrap{
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 1100px){

    .showcase-layout{
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "center"
            "right";
        gap: 24px;
    }

    .showcase-points{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        height: auto;
        gap: 10px;
    }

    /* each point: icon on top, text below, centered — so 3 fit side by side */
    .showcase-point,
    .showcase-points-right .showcase-point{
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100px;
        left: 0;
        margin-left: 0;
        gap: 6px;
    }

    .showcase-points-right{
        align-items: flex-start;
    }

    .point-title{
        font-size: 13px;
        margin-bottom: 1px;
    }

    .point-desc{
        font-size: 10.5px;
        line-height: 1.4;
    }

    .showcase-image-wrap{
        width: 100%;
        max-width: 300px;
        height: 480px;
        margin: 0 auto;
    }
}


@media (max-width: 600px){
    .point-icon svg{
        width: 16px;
        height: 16px;
    }
    .point-icon{
        width: 36px;
        height: 36px;
    }
    .point-title{
        font-size: 11px;
    }
    .point-desc{
        font-size: 10px;
    }


    .showcase-section{
        border-radius: 50px;
    }
}









/* Testimonial section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, .section-padding, existing fonts */

    .testimonials-section{
        background-color: #ffffff;
        overflow: hidden;
    }

    .testimonials-head{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        max-width: 1180px;
        margin: 0 auto 60px;
    }

    .testimonials-copy{
        max-width: 520px;
    }


    .testimonials-head .para{
        margin: 0;
    }

    .testimonials-nav{
        display: flex;
        gap: 12px;
        flex-shrink: 0;
        padding-bottom: 6px;
    }

    /* reuse the same arrow visual language as the products carousel */
    .testimonials-nav .carousel-arrow{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.4px solid #ececea;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color 0.25s ease;
    }

    .testimonials-nav .carousel-arrow svg{
        width: 18px;
        height: 18px;
        stroke: #1c1c1c;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.25s ease;
    }

    .testimonials-nav .carousel-arrow:hover{
        border-color: var(--logo-color);
    }

    .testimonials-nav .carousel-arrow:hover svg{
        stroke: var(--logo-color);
    }

    .testimonials-nav .carousel-arrow.is-disabled{
        opacity: 0.3;
        pointer-events: none;
    }

    .testimonials-track{
        display: flex;
        gap: 26px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        max-width: 1180px;
        margin: 0 auto;
        padding: 6px 6px 20px;
    }

    .testimonials-track::-webkit-scrollbar{
        display: none;
    }

    .testimonials-track{
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-card{
        position: relative;
        flex: 0 0 340px;
        min-height: 380px;
        scroll-snap-align: start;
        border-radius: 28px;
        border: 1px solid #ececea;
        background-color: #ffffff;
        padding: 34px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .testimonial-card:hover{
        border-color: var(--logo-color);
        transform: translateY(-4px);
        background-color: var(--logo-color);
        border-color: var(--logo-color);
        color: rgba(255,255,255,0.16);
        transition: all 0.5s ease;
        
    }

    .testimonial-card:hover .star-filled{ fill: #ffffff; }
    .testimonial-card:hover .star-empty{ fill: rgba(255,255,255,0.3); }

    .testimonial-card:hover .testimonial-avatar{
        background-color: rgba(255,255,255,0.18);
        color: #ffffff;
    }
    .testimonial-card:hover .testimonial-text{
        color: rgba(255,255,255,0.92);
    }

    .testimonial-card:hover .testimonial-role{
        color: rgba(255,255,255,0.72);
    }
    .testimonial-card:hover .testimonial-name{
        color: #ffffff;
    }

    



    .testimonial-quote-mark{
        position: absolute;
        top: 14px;
        right: 22px;
        font-family: var(--font-three);
        font-size: 90px;
        font-weight: 700;
        line-height: 1;
        color: #f0efe9;
        z-index: 0;
        user-select: none;
    }


    .testimonial-stars{
        display: flex;
        gap: 3px;
        position: relative;
        z-index: 1;
        margin-bottom: 18px;
    }

    .testimonial-stars svg{
        width: 15px;
        height: 15px;
        stroke: none;
    }

    .star-filled{ fill: var(--logo-color); }
    .star-empty{ fill: #e3e1da; }

    .testimonial-text{
        font-family: var(--font-two);
        font-size: 14.5px;
        line-height: 1.75;
        color: #4b4b47;
        position: relative;
        z-index: 1;
        margin-bottom: 28px;
    }

    

    .testimonial-footer{
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 1;
    }

    .testimonial-avatar{
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: #eaf6f2;
        color: var(--logo-color);
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }



    .testimonial-name{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 14.5px;
        color: #161613;
    }

    

    .testimonial-role{
        font-family: var(--font-one);
        font-size: 11.5px;
        color: #9b9b96;
        margin-top: 2px;
    }

    


    @media (max-width: 700px){
        .testimonials-section{
            padding: 70px 24px 80px;
        }
        .testimonials-head{
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 36px;
        }
        .testimonial-card{
            flex: 0 0 84%;
        }
    }















    /* About section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, existing fonts */

    .about-section{
        background-color: #ffffff;
        display: flex;
        align-items: stretch;
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
    }

    /* ---- LEFT: full-bleed, edge-to-edge image ---- */
    .about-image-wrap{
        flex: 0 0 50%;
        position: relative;
        overflow: hidden;
    }

    .about-image{
        position: absolute;
        inset: 0;
        background-image: url('../khayul.png');
        background-size: cover;
        background-position: center;
        clip-path: inset(0% 0% 100% 0%);
        transform: scale(1.15);
        will-change: clip-path, transform;
        height: 100%;
    }

    .about-image-overlay{
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 45%);
        z-index: 1;
    }

    .about-badge{
        position: absolute;
        right: 32px;
        bottom: 32px;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 18px 26px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 14px 34px rgba(0,0,0,0.14);
        opacity: 0;
        transform: translateY(24px);
        z-index: 2;
    }

    .about-badge .badge-number{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 30px;
        color: #161613;
        line-height: 1;
    }

    .about-badge .badge-number span{
        font-size: 15px;
        font-weight: 500;
        color: var(--logo-color);
        margin-left: 2px;
    }

    .about-badge .badge-label{
        font-family: var(--font-one);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #9b9b96;
        margin-top: 5px;
        max-width: 140px;
    }

    /* ---- RIGHT: oversized editorial content ---- */
    .about-content-wrap{
        flex: 1;
        display: flex;
        align-items: center;
        position: relative;
    }

    .about-bg-word{
        position: absolute;
        top: 50%;
        left: 60px;
        transform: translateY(-50%);
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 220px;
        line-height: 1;
        color: #f6f6f4;
        z-index: 0;
        white-space: nowrap;
        user-select: none;
        pointer-events: none;
    }

    .about-content{
        padding: 60px 70px;
        max-width: 620px;
        position: relative;
        z-index: 1;
    }

    .about-eyebrow{
        font-family: var(--font-one);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #9b9b96;
        margin-bottom: 22px;
        opacity: 0;
        transform: translateY(14px);
    }

    .about-heading{
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 52px;
        line-height: 1.16;
        letter-spacing: -1px;
        color: #161613;
        margin-bottom: 30px;
    }

    .about-heading em{
        font-style: italic;
        font-weight: 500;
        color: var(--logo-color);
    }

    .about-heading .line{
        display: block;
        overflow: hidden;
    }

    .about-heading .line span{
        display: inline-block;
        opacity: 0;
        transform: translateY(110%);
    }


    .about-btn{
        display: inline-block;
        font-family: var(--font-one);
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background-color: var(--logo-color);
        border: none;
        padding: 15px 34px;
        border-radius: 30px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.25s ease, transform 0.2s ease;
        opacity: 0;
        transform: translateY(18px);
    }

    .about-btn:hover{
        background-color: #027c5f;
        transform: translateY(-2px);
    }

    @media (max-width: 991px){
        .about-section{
            flex-direction: column;
            min-height: auto;
        }
        .about-image-wrap{
            flex: none;
            height: 380px;
        }
        .about-bg-word{
            display: none;
        }
        .about-content-wrap{
            padding: 60px 0;
        }
        .about-content{
            padding: 0 24px;
            max-width: 100%;
        }

    }














    /* certification section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, .section-padding, existing fonts */

    .certs-section{
        background-color: #f9f9f7;
    }

    .certs-head{
        text-align: center;
        max-width: 560px;
        margin: 0 auto 70px;
    }

    .certs-head .para{
        margin: 0 auto;
    }

    .certs-row{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        max-width: 1000px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .cert-badge{
        flex-shrink: 0;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid #ececea;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 28px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }

    .cert-badge:hover{
        border-color: var(--logo-color);
        box-shadow: 0 16px 34px rgba(3,151,116,0.14);
        transform: translateY(-6px) scale(1.05);
    }

    .cert-badge img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.55);
        transition: filter 0.4s ease;
    }

    .cert-badge:hover img{
        filter: grayscale(0%) opacity(1);
    }

    @media (max-width: 991px){
        .certs-row{
            gap: 30px;
        }
        .cert-badge{
            width: 100px;
            height: 100px;
            padding: 22px;
        }
    }

    @media (max-width: 700px){
        .certs-section{
            padding: 70px 24px 80px;
        }
        .certs-row{
            gap: 24px;
        }
        .cert-badge{
            width: 84px;
            height: 84px;
            padding: 18px;
        }
    }














    /* Videos section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, .section-padding, existing fonts */

    .videos-section{
        background-color: #ffffff;
    }

    .videos-head{
        text-align: center;
        max-width: 560px;
        margin: 0 auto 60px;
    }

    .videos-head .para{
        margin: 0 auto;
    }

    .videos-grid{
        display: flex;
        justify-content: center;
        gap: 28px;
        max-width: 1180px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

.video-card{
    position: relative;
    flex: 0 0 calc((100% - 56px) / 3);
    aspect-ratio: 0.6; /* was 0.8 — lower number = taller card */
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0efe9;
    border: 1px solid #ececea;
    opacity: 0;
    transform: translateY(36px);
    transition: border-color 0.35s ease, transform 0.35s ease;
}

    .video-card:hover{
        border-color: var(--logo-color);
        transform: translateY(-6px);
    }

    .video-thumb{
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .video-card:hover .video-thumb{
        transform: scale(1.06);
    }

    .video-overlay{
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.15) 100%);
        z-index: 1;
    }

    .video-play-btn{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: transform 0.35s ease, background-color 0.35s ease;
    }

    .video-card:hover .video-play-btn{
        transform: translate(-50%, -50%) scale(1.1);
        background-color: var(--logo-color);
    }

    .video-play-btn svg{
        width: 22px;
        height: 22px;
        fill: #161613;
        margin-left: 3px;
        transition: fill 0.35s ease;
    }

    .video-card:hover .video-play-btn svg{
        fill: #ffffff;
    }

    .video-info{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 26px 26px 24px;
    }

    .video-tag{
        display: inline-block;
        font-family: var(--font-one);
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #ffffff;
        background-color: rgba(255,255,255,0.16);
        backdrop-filter: blur(6px);
        padding: 5px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .video-title{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 19px;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .video-desc{
        font-family: var(--font-two);
        font-size: 12.5px;
        line-height: 1.55;
        color: rgba(255,255,255,0.78);
    }

    @media (max-width: 991px){
        .video-card{
            flex: 0 0 calc((100% - 28px) / 2);
        }
    }

    @media (max-width: 700px){
        .videos-section{
            padding: 70px 24px 80px;
        }
        .video-card{
            flex: 0 0 100%;
            aspect-ratio: 1.1;
        }
    }












    /* Faq section */

    /* Scoped to this section — reuses --logo-color, .headings-small, .para, .section-padding, existing fonts */

    .faq-section{
        background-color: #ffffff;
    }

    .faq-layout{
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 70px;
        align-items: start;
        max-width: 1180px;
        margin: 0 auto;
    }

    /* ---- LEFT COLUMN ---- */
    .faq-left{
        position: sticky;
        top: 40px;
    }

    .faq-left .headings-small{
        margin-bottom: 16px;
    }

    .faq-left .para{
        margin-bottom: 40px;
        max-width: 420px;
    }

    .faq-cta-card{
        border-radius: 28px;
        padding: 38px 34px;
        background:
            radial-gradient(120% 140% at 0% 0%, rgba(3,151,116,0.14) 0%, rgba(3,151,116,0) 55%),
            linear-gradient(160deg, #f0efe9 0%, #f6f6f4 100%);
        border: 1px solid #ececea;
        opacity: 0;
        transform: translateY(24px);
    }

    .faq-cta-icon{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .faq-cta-icon svg{
        width: 21px;
        height: 21px;
        stroke: var(--logo-color);
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .faq-cta-heading{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 22px;
        color: #161613;
        margin-bottom: 10px;
    }

    .faq-cta-text{
        font-family: var(--font-two);
        font-size: 13.5px;
        line-height: 1.7;
        color: #6e6e6a;
        margin-bottom: 26px;
        max-width: 320px;
    }

    .faq-cta-btn{
        display: inline-block;
        font-family: var(--font-one);
        font-size: 13.5px;
        font-weight: 600;
        color: #ffffff;
        background-color: var(--logo-color);
        border: none;
        padding: 13px 30px;
        border-radius: 30px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.25s ease, transform 0.2s ease;
    }

    .faq-cta-btn:hover{
        background-color: #027c5f;
        transform: translateY(-2px);
    }

    /* ---- RIGHT COLUMN — accordion ---- */
    .faq-list{
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .faq-item{
        border: 1px solid #ececea;
        border-radius: 22px;
        background-color: #ffffff;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: border-color 0.3s ease, background-color 0.3s ease;
    }

    .faq-item.is-open{
        border-color: var(--logo-color);
        background-color: #fafdfc;
    }

    .faq-question{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 22px 24px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .faq-question-text{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 16.5px;
        color: #161613;
        transition: color 0.3s ease;
    }

    .faq-item.is-open .faq-question-text{
        color: var(--logo-color);
    }

    .faq-toggle{
        position: relative;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1.4px solid #ececea;
        background-color: #ffffff;
        transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    }

    .faq-item.is-open .faq-toggle{
        background-color: var(--logo-color);
        border-color: var(--logo-color);
        transform: rotate(180deg);
    }

    .faq-toggle::before,
    .faq-toggle::after{
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #1c1c1c;
        transition: background-color 0.3s ease, transform 0.35s ease;
    }

    .faq-toggle::before{
        width: 12px;
        height: 1.6px;
        transform: translate(-50%, -50%);
    }

    .faq-toggle::after{
        width: 1.6px;
        height: 12px;
        transform: translate(-50%, -50%);
    }

    .faq-item.is-open .faq-toggle::before,
    .faq-item.is-open .faq-toggle::after{
        background-color: #ffffff;
    }

    .faq-item.is-open .faq-toggle::after{
        transform: translate(-50%, -50%) scaleY(0);
    }

    .faq-answer{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s ease;
    }

    .faq-answer-inner{
        padding: 0 24px 24px;
    }

    .faq-answer-text{
        font-family: var(--font-two);
        font-size: 13.5px;
        line-height: 1.75;
        color: #6e6e6a;
        max-width: 520px;
    }

    @media (max-width: 991px){
        .faq-layout{
            grid-template-columns: 1fr;
            gap: 44px;
        }
        .faq-left{
            position: static;
        }
        .faq-left .para{
            max-width: 100%;
        }
    }

    @media (max-width: 700px){
        .faq-section{
            padding: 70px 24px 80px;
        }
        .faq-question{
            padding: 18px 18px;
            gap: 14px;
        }
        .faq-question-text{
            font-size: 15px;
        }
        .faq-toggle{
            width: 32px;
            height: 32px;
        }
        .faq-cta-card{
            padding: 30px 26px;
        }
    }









    /* footer section */

    /* Scoped to this section — reuses --font-one/two/three, existing patterns */

    .site-footer{
        background-color: var(--logo-color);
        color: #ffffff;
        overflow: hidden;
        padding: 90px 0 0;
        border-top-left-radius: 100px;
    }

    .footer-top{
        display: grid;
        grid-template-columns: 0.8fr 1.1fr 1fr;
        gap: 50px;
        max-width: 1180px;
        margin: 0 auto;
        padding-bottom: 100px;
    }

    .footer-col-title{
        font-family: var(--font-three);
        font-weight: 600;
        font-size: 17px;
        color: #ffffff;
        margin-bottom: 26px;
        opacity: 0;
        transform: translateY(16px);
    }

    /* ---- LEFT: quick links ---- */
    .footer-links{
        display: flex;
        flex-direction: column;
        gap: 14px;
        opacity: 0;
        transform: translateY(16px);
    }

    .footer-links a{
        font-family: var(--font-one);
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255,255,255,0.72);
        text-decoration: none;
        transition: color 0.25s ease, padding-left 0.25s ease;
        width: fit-content;
    }

    .footer-links a:hover{
        color: #ffffff;
        padding-left: 4px;
    }

    /* ---- MIDDLE: follow us ---- */
    .footer-middle{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 26px;
        opacity: 0;
        transform: translateY(16px);
    }

    .footer-contact a,
    .footer-contact span{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: var(--font-two);
        font-size: 13.5px;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        transition: color 0.25s ease;
    }

    .footer-contact a:hover{
        color: #ffffff;
    }

    .footer-contact svg{
        width: 16px;
        height: 16px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .footer-social{
        display: flex;
        gap: 10px;
        opacity: 0;
        transform: translateY(16px);
    }

    .footer-social a{
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1.4px solid rgba(255,255,255,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .footer-social a:hover{
        background-color: #ffffff;
        border-color: #ffffff;
        transform: translateY(-3px);
    }

    .footer-social svg{
        width: 16px;
        height: 16px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.25s ease;
    }

    .footer-social a:hover svg{
        stroke: var(--logo-color);
    }

    /* ---- RIGHT: address ---- */
    .footer-address{
        opacity: 0;
        transform: translateY(16px);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .footer-address p{
        font-family: var(--font-two);
        font-size: 13.5px;
        line-height: 1.8;
        color: rgba(255,255,255,0.8);
        max-width: 260px;
    }

    /* ---- bottom bar, between two lines ---- */
    .footer-divider{
        height: 1px;
        width: 100%;
        background-color: rgba(255,255,255,0.22);
    }

    .footer-bottom{
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1180px;
        margin: 0 auto;
        padding: 22px 0;
    }

    .footer-copyright,
    .footer-legal a{
        font-family: var(--font-one);
        font-size: 12px;
        font-weight: 500;
        color: rgba(255,255,255,0.68);
        text-decoration: none;
        transition: color 0.25s ease;
    }

    .footer-legal{
        display: flex;
        gap: 30px;
    }

    .footer-legal a:hover{
        color: #ffffff;
    }

    /* ---- giant faint wordmark ---- */
    .footer-brandmark{
        text-align: center;
        line-height: 0.8;
        overflow: hidden;
        padding-top: 150px;
    }

    .footer-brandmark span{
        display: inline-block;
        font-family: var(--font-three);
        font-weight: 700;
        font-size: 350px;
        letter-spacing: 22px;
        color: rgba(255,255,255,0.22);
        transform: translateY(14%);
        user-select: none;
    }












    
    @media (max-width: 991px){
        .footer-top{
            grid-template-columns: 1fr;
            row-gap: 50px;
        }
        .footer-middle{
            align-items: flex-start;
            text-align: left;
        }
        .footer-address{
            grid-column: 1 / -1;
            align-items: flex-start;
            text-align: left;
        }
        .footer-brandmark span{
            font-size: 140px;
            letter-spacing: 12px;
        }

        .footer-brandmark{
            padding-top: 100px;
        }
    }

    @media (max-width: 700px){
        .site-footer{
            padding: 70px 24px 0;
        }
        .footer-top{
            grid-template-columns: 1fr;
            gap: 42px;
            padding-bottom: 50px;
        }
        .footer-address{
            grid-column: auto;
        }
        .footer-bottom{
            flex-direction: column;
            gap: 14px;
            text-align: left;
            align-items: flex-start;
            padding: 24px 0;
        }
        .footer-legal{
            gap: 22px;
        }
        .footer-brandmark span{
            font-size: 78px;
            letter-spacing: 6px;
        }

        .site-footer{
            border-top-left-radius: 50px;
        }
    }



    @media (max-width: 450px){
        .footer-brandmark{
            padding-top: 70px;
        }
    }









    @media (max-width: 680px){
        
    }