/* ==================================================
                KAARU ABOUT PAGE
                STYLE.CSS
==================================================*/



/* ==================================================
                    GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');



/* ==================================================
                    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:#FDFBF7;

    color:#4A3B32;

    overflow-x:hidden;

    line-height:1.8;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

ul{

    list-style:none;

}
/* ==================================================
                    ROOT
==================================================*/

:root{

    --bg:#FDFBF7;

    --white:#ffffff;

    --primary:#4A3B32;

    --secondary:#8C7A6B;

    --soft:#F7F2EC;

    --border:#ECE4DA;

    --shadow-sm:
        0 8px 25px rgba(0,0,0,.05);

    --shadow-md:
        0 20px 45px rgba(0,0,0,.08);

    --shadow-lg:
        0 35px 80px rgba(0,0,0,.10);

    --radius:32px;

    --transition:.35s ease;

}
/* ==================================================
                TYPOGRAPHY
==================================================*/

h1,

h2,

h3,

.logo{

    font-family:

    "Playfair Display",

    serif;

}

h1{

    font-size:clamp(52px,6vw,82px);

    line-height:1.08;

    font-weight:600;

}

h2{

    font-size:clamp(38px,5vw,56px);

    line-height:1.15;

}

h3{

    font-size:28px;

    margin-bottom:16px;

}

p{

    font-size:17px;

    color:var(--secondary);

}

.section-label{

    display:inline-block;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.35em;

    color:var(--secondary);

    margin-bottom:24px;

    font-weight:600;

}
/* ==================================================
                CONTAINER
==================================================*/

.container{

    width:min(92%,1280px);

    margin:auto;

}

section{

    padding:120px 0;

}
/* =====================================================
                    FLOATING NAVBAR
===================================================== */

:root{
    --kaaru-ivory: #FDFBF7;
    --kaaru-brown: #4A3B32;
    --kaaru-taupe: #8C7A6B;
    --kaaru-line: rgba(74, 59, 50, 0.10);
}

body{
    padding-top: 132px;
}

.site-header{
    position: fixed;
    z-index: 1000;
    top: 20px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.kaaru-navbar{
    width: min(1500px, calc(100% - 40px));
    min-height: 90px;
    margin: auto;
    padding: 14px 20px 14px 38px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;

    background: rgba(253, 251, 247, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(74, 59, 50, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
}

.navbar-logo{
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.navbar-logo img{
    display: block;
    width: auto;
    height: 49px;
    max-width: 185px;
    object-fit: contain;
    object-position: left center;
}

.navbar-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 52px);
}

.nav-link{
    position: relative;
    color: var(--kaaru-brown);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-link::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    content: "";
    background: var(--kaaru-taupe);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active{
    color: var(--kaaru-taupe);
}

.nav-link:hover::after,
.nav-link.active::after{
    width: 18px;
}

.navbar-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-icon-button,
.menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--kaaru-brown);
    background: rgba(255, 255, 255, 0.62);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-icon-button:hover,
.menu-toggle:hover{
    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    transform: translateY(-2px);
}

.nav-icon-button svg{
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cart-button{
    position: relative;
}

.cart-badge{
    position: absolute;
    top: -7px;
    right: -3px;

    display: grid;
    place-items: center;
    min-width: 23px;
    height: 23px;
    padding: 0 5px;

    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    border: 2px solid var(--kaaru-ivory);
    border-radius: 50%;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span{
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =====================================================
                    MOBILE DRAWER
===================================================== */

.drawer-overlay{
    position: fixed;
    z-index: 1100;
    inset: 0;

    visibility: hidden;
    background: rgba(45, 34, 29, 0.28);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer{
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    width: min(86vw, 370px);
    height: 100dvh;
    padding: 28px;

    color: var(--kaaru-brown);
    background: var(--kaaru-ivory);
    box-shadow: -14px 0 35px rgba(74, 59, 50, 0.14);

    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}

.drawer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--kaaru-line);
}

.drawer-logo{
    width: auto;
    height: 37px;
    max-width: 145px;
    object-fit: contain;
    object-position: left center;
}

.drawer-close{
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--kaaru-brown);
    background: transparent;
    border: 1px solid var(--kaaru-line);
    border-radius: 50%;
    cursor: pointer;
}

.drawer-close span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1.5px;
    background: currentColor;
}

.drawer-close span:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-links{
    display: flex;
    flex-direction: column;
    padding: 28px 0;
}

.drawer-links a{
    padding: 16px 0;
    color: var(--kaaru-brown);
    border-bottom: 1px solid var(--kaaru-line);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-links a:hover,
.drawer-links a.active{
    color: var(--kaaru-taupe);
    padding-left: 8px;
}

.drawer-bottom{
    display: grid;
    gap: 14px;
    margin-top: auto;
}

.drawer-bottom a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--kaaru-brown);
    font-size: 14px;
    text-decoration: none;
}

.drawer-bottom span{
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    color: var(--kaaru-ivory);
    background: var(--kaaru-brown);
    border-radius: 50%;
    font-size: 10px;
}

body.menu-open{
    overflow: hidden;
}

body.menu-open .drawer-overlay{
    visibility: visible;
    opacity: 1;
}

body.menu-open .mobile-drawer{
    transform: translateX(0);
}

/* =====================================================
                    RESPONSIVE
===================================================== */

@media (max-width: 850px){

    body{
        padding-top: 106px;
    }

    .site-header{
        top: 14px;
    }

    .kaaru-navbar{
        width: min(100% - 28px, 700px);
        min-height: 76px;
        padding: 10px 12px 10px 24px;
        grid-template-columns: 1fr auto;
    }

    .navbar-logo img{
        height: 40px;
        max-width: 150px;
    }

    .navbar-links{
        display: none;
    }

    .menu-toggle{
        display: inline-flex;
    }

    .nav-icon-button{
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px){

    .navbar-actions{
        gap: 8px;
    }

    .navbar-logo img{
        height: 34px;
        max-width: 125px;
    }

    .nav-icon-button{
        width: 43px;
        height: 43px;
    }

    .nav-icon-button svg{
        width: 20px;
        height: 20px;
    }

    .menu-toggle{
        width: 43px;
        height: 43px;
    }
}
/* =====================================================
                ACTIVE NAVIGATION
===================================================== */

.nav-link{
    position:relative;
}

.nav-link.active{
    color:#8C7A6B;
}


/* Elegant underline */

.nav-link.active::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:18px;

    height:1px;

    background:#8C7A6B;

    transform:translateX(-50%);

    transition:width .3s ease;

}
/* ==================================================
                ABOUT HERO
==================================================*/

.about-section{

    padding-top:180px;

}

.about-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}




/* ==================================================
                STORY IMAGE
==================================================*/

.story-image{

    position:relative;
    width:100%;
    aspect-ratio:4/5;
    overflow:hidden;
    border-radius:40px;
    box-shadow:var(--shadow-md);
    background:#fff;

}

.story-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.story-badge{

    position:absolute;

    top:28px;

    left:28px;

    z-index:5;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(10px);

    padding:12px 22px;

    border-radius:999px;

    font-size:13px;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--primary);

    font-weight:600;

}
/* ==================================================
                STORY CONTENT
==================================================*/

.story-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.story-content h1{

    margin-bottom:26px;

    max-width:560px;

}

.story-content p{

    margin-bottom:20px;

    max-width:620px;

    color:var(--secondary);

}
/* ==================================================
                BRAND QUOTE
==================================================*/

.brand-quote{

    margin-top:40px;

    padding:34px;

    background:linear-gradient(

        135deg,

        #F7F2EC,

        #FCFAF8

    );

    border-left:5px solid var(--primary);

    border-radius:26px;

    font-family:

        "Playfair Display",

        serif;

    font-size:24px;

    line-height:1.8;

    color:var(--primary);

    box-shadow:var(--shadow-sm);

    position:relative;

}

.brand-quote::before{

    content:"“";

    position:absolute;

    top:14px;

    left:22px;

    font-size:72px;

    color:rgba(74,59,50,.08);

    line-height:1;

}
/* ==================================================
                SECTION HEADING
==================================================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

    margin-bottom:24px;

}

.section-heading p{

    max-width:620px;

    margin:auto;

}
/* ==================================================
                VALUES GRID
==================================================*/

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}
/* ==================================================
                VALUE CARD
==================================================*/

.value-card{

    background:#fff;

    padding:42px;

    border-radius:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.value-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:var(--soft);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:var(--primary);

    margin-bottom:28px;

}

.value-card h3{

    margin-bottom:18px;

}

.value-card p{

    color:var(--secondary);

}
/* ==================================================
                BRAND HIGHLIGHT
==================================================*/

.highlight-section{

    padding-top:40px;

}

.highlight-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.highlight-text h2{

    margin-bottom:24px;

}

.highlight-text p{

    max-width:420px;

}

.highlight-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.highlight-card{

    background:#fff;

    border-radius:28px;

    padding:36px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.highlight-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.highlight-card h3{

    margin-bottom:14px;

    font-size:22px;

}

.highlight-card p{

    font-size:15px;

}
/* ==================================================
                OUR PROMISE
==================================================*/

.promise-section{

    padding-top:100px;

}

.promise-card{

    background:linear-gradient(

        135deg,

        #FFFFFF,

        #F7F2EC

    );

    border-radius:40px;

    padding:90px;

    text-align:center;

    box-shadow:var(--shadow-md);

}

.promise-card span{

    display:inline-block;

    letter-spacing:.35em;

    text-transform:uppercase;

    color:var(--secondary);

    margin-bottom:20px;

    font-size:12px;

}

.promise-card h2{

    margin-bottom:24px;

}

.promise-card p{

    max-width:760px;

    margin:auto;

}


/* ==================================================
                BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:28px;

    bottom:28px;

    width:56px;

    height:56px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1000;

    box-shadow:var(--shadow-md);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}
/* ==================================================
                REVEAL ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/* ==================================================
                TOAST
==================================================*/

.toast{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%) translateY(30px);

    background:#4A3B32;

    color:#fff;

    padding:16px 26px;

    border-radius:999px;

    display:flex;

    align-items:center;

    gap:12px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:3000;

    box-shadow:var(--shadow-lg);

}

.toast.show{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}
/* ==================================================
                RESPONSIVE
==================================================*/

@media (max-width:1024px){

    .about-layout{

        grid-template-columns:1fr;
        gap:60px;

    }

    .highlight-wrapper{

        grid-template-columns:1fr;
        gap:40px;

    }

    .values-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}



@media (max-width:768px){

    /* ========= NAVBAR ========= */

    .desktop-nav{

        display:none;

    }

    .mobile-only{

        display:flex;

    }

    .about-section{

        padding-top:140px;

    }

    /* ========= STORY IMAGE ========= */

    .story-image{

        height:520px;
        border-radius:30px;

    }

    /* ========= TEXT ========= */

    .story-content h1{

    font-size:56px;
    line-height:1.05;

}

.story-content p{

    font-size:16px;

}

    /* ========= VALUES ========= */

    .highlight-grid{

        grid-template-columns:1fr;

    }

    
    /* ========= FOOTER ========= */

    .footer-grid{

        grid-template-columns:1fr;
        gap:40px;

    }

}



@media (max-width:480px){

    section{

        padding:80px 0;

    }

    .container{

        width:92%;

    }

    .about-section{

        padding-top:120px;

    }

    .story-image{

        height:420px;
        border-radius:24px;

    }

    .story-badge{

        top:18px;
        left:18px;
        padding:10px 18px;
        font-size:11px;

    }

    h1{

        font-size:40px;

    }

    h2{

        font-size:30px;

    }

    .about-content p{

        font-size:15px;
        line-height:1.9;

    }

    .brand-quote{

        font-size:20px;
        padding:28px;

    }

    .value-card,
    .highlight-card{

        padding:28px;

    }

    
    .promise-card{

        padding:36px 24px;

    }

}
/* =====================================================
                    FOOTER
===================================================== */

.footer{

    background:#ceccc9;

    color:#4A3B32;

    padding:90px 0 35px;

}


/* =====================================================
                FOOTER CONTAINER
===================================================== */

.footer-container{

    width:min(1200px,92%);

    margin:auto;

}


/* =====================================================
                    FOOTER GRID
===================================================== */

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;

}


/* =====================================================
                    BRAND
===================================================== */

.footer-brand h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

    color:#4A3B32;

}


/* =====================================================
                BRAND DESCRIPTION
===================================================== */

.footer-brand p{

    max-width:330px;

    color:#4A3B32;

    font-size:15px;

    line-height:1.8;

}


/* =====================================================
                    COLUMN
===================================================== */

.footer-column{

    display:flex;

    flex-direction:column;

    gap:14px;

}


/* =====================================================
                COLUMN HEADING
===================================================== */

.footer-column h3{

    font-family:'Playfair Display',serif;

    font-size:22px;

    color:#4A3B32;

    margin-bottom:15px;

}


/* =====================================================
                    LINKS
===================================================== */

.footer-column a{

    color:#4A3B32;

    text-decoration:none;

    font-size:15px;

    transition:.3s ease;

}


.footer-column a:hover{

    color:#4A3B32;

    transform:translateX(5px);

}


/* =====================================================
                    DIVIDER
===================================================== */

.footer-divider{

    width:100%;

    height:1px;

    background:#4A3B32;

    margin:60px 0 25px;

}


/* =====================================================
                    COPYRIGHT
===================================================== */

.footer-bottom{

    text-align:center;

}


.footer-bottom p{

    color:#4A3B32;

    font-size:14px;

}


/* =====================================================
                FOOTER BRAND ADJUSTMENT
===================================================== */

.footer-brand{

    padding-left:40px;

}


/* =====================================================
                    BRAND LOGO
===================================================== */

/*
    Jika menggunakan logo gambar,
    h2 sudah tidak digunakan.
*/

.footer-brand img{

    display:block;

    width:auto;

    height:32px;

    object-fit:contain;

    object-position:left;

    margin-bottom:20px;

}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media(max-width:768px){

    .footer{

        padding:70px 0 30px;

    }


    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:40px 30px;

    }


    .footer-brand{

        padding-left:0;

        grid-column:1 / -1;

    }


    .footer-brand p{

        max-width:400px;

    }

}


@media(max-width:480px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }


    .footer-brand{

        grid-column:auto;

    }


    .footer-brand img{

        height:28px;

    }

}