:root{
    --paper:#efe1c2;
    --paper-light:#f7edd6;
    --green:#1d3522;
    --gold:#c89c39;
    --text:#2c2419;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--paper);
    color:var(--text);
    font-family:'Source Sans 3', sans-serif;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* HEADER */

.site-header{
    background:var(--green);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-inner{
    min-height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.logo-img{
    height:65px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-main{
    color:var(--paper);
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    font-weight:700;
    letter-spacing:2px;
    line-height:1;
}

.logo-sub{
    color:var(--gold);
    font-family:'Cormorant Garamond', serif;
    font-size:18px;
    letter-spacing:8px;
    line-height:1;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:40px;
}

.main-nav a{
    color:#efe1c2;
    text-decoration:none;

    font-family:'Cormorant Garamond', serif;
    font-size:24px;

    transition:.25s;
}

.main-nav a:hover{
    color:#c89c39;
}

.main-nav a.active{
    color:#c89c39;
    position:relative;
}

.main-nav a.active:after{
    content:'';

    position:absolute;

    left:0;
    right:0;
    bottom:-10px;

    height:2px;

    background:#c89c39;
}
/* HERO */

.hero{
    min-height:85vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.55)
    ),
    url('../images/hero2.jpg');

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:700px;
}

.eyebrow{
/*    color:#f3d58d;*/

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:15px;

    font-size:14px;
}

.hero .eyebrow{
    color:#f3d58d;
}

.hero h1{
    color:white;

    font-family:'Cormorant Garamond', serif;

    font-size:76px;

    line-height:.95;

    margin-bottom:25px;
}

.hero-text{
    color:#f7f7f7;

    font-size:22px;

    max-width:650px;
}

.hero-buttons{
    margin-top:35px;
}

/* BUTTONS */

.btn{
    display:inline-block;

    padding:14px 28px;

    text-decoration:none;

    border-radius:40px;

    transition:.25s;

    margin-right:12px;
}

.btn-primary{
    background:var(--gold);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid #fff;
    color:#fff;
}

.btn.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;

    background:transparent;

    color:var(--green);
    border:2px solid var(--green);

    border-radius:50px;

    font-weight:600;
    text-decoration:none;

    transition:.3s ease;
}

.btn.btn-secondary:hover{
    background:var(--green);
    color:#fff;
    transform:translateY(-2px);
}

/* SECTIONS */

section{
    padding:90px 0;
}

h2{
    font-family:'Cormorant Garamond', serif;
    color:var(--green);
    font-size:52px;
    margin-bottom:25px;
}

.intro p,
.trust p{
    max-width:900px;
    font-size:20px;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    margin-top:40px;
}

.card{

    background:var(--paper-light);

    border:1px solid rgba(29,53,34,.15);

    border-radius:16px;

    padding:35px;

    display:flex;
    flex-direction:column;

}
.card .btn{

    margin-top:auto;

    align-self:flex-start;

}
.card h3{
    font-family:'Cormorant Garamond', serif;
    color:var(--green);
    font-size:34px;
    margin-bottom:15px;
}

.product-cards{
    margin-bottom:90px;
}
/* TRUST */

.trust{
    background:#f4e6c6;
}

/* FOOTER */

.site-footer{
    background:var(--green);

    color:var(--paper);

    text-align:center;

    padding:35px 0;
}

/* MOBILE */

@media(max-width:900px){

    .header-inner{
        flex-direction:column;
        padding:20px 0;
    }

    .main-nav{
        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:48px;
    }

    .cards{
        grid-template-columns:1fr;
    }

}

.page-hero{
    padding:120px 0 90px;
    background:#f4e6c6;
}

.page-hero h1{
    font-family:'Cormorant Garamond', serif;
    color:var(--green);
    font-size:72px;
    margin-bottom:20px;
}

.page-subtitle{
    max-width:700px;
    font-size:22px;
}

.two-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:18px;
    display:block;
}

.about-content p{
    margin-bottom:20px;
    font-size:19px;
}

@media(max-width:900px){

    .page-hero h1{
        font-size:48px;
    }

    .two-columns{
        grid-template-columns:1fr;
    }
}


.products-page{
    background:var(--paper);
}

.product-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.product-row.reverse .product-image{
    order:2;
}

.product-image img{
    width:100%;
    display:block;
    border-radius:20px;
    border:1px solid rgba(29,53,34,.18);
}

.product-text p{
    font-size:19px;
    margin-bottom:18px;
}

.product-text .btn{
    margin-top:18px;
}

.product-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}

.product-buttons .btn{
    margin:0;
}


@media(max-width:900px){
    .product-row,
    .product-row.reverse{
        grid-template-columns:1fr;
    }

    .product-row.reverse .product-image{
        order:0;
    }
}
@media(max-width:600px){

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .hero-buttons .btn{
        margin:0;
        width:100%;
        text-align:center;
    }

}

.contact-card{
    max-width:700px;
    margin:0 auto;

    background:var(--paper-light);

    border-radius:20px;

    padding:50px;

    border:1px solid rgba(29,53,34,.15);
}

.contact-item{
    margin-top:25px;
    font-size:20px;
}

.contact-item a{
    color:var(--green);
    text-decoration:none;
}

.contact-buttons{
    margin-top:40px;
}

.btn-viber{
    background:#7360f2;
    color:white;
}

.btn-viber:hover{
    transform:translateY(-2px);
}
.btn-instagram{
    background:#E4405F;
    color:white;
}

.btn-instagram:hover{
    transform:translateY(-2px);
}
.btn-facebook{
    background:#1877F2;
    color:#fff;
}

.btn-facebook:hover{
    transform:translateY(-2px);
}

/*price*/
.price-section{
    background:var(--paper);
}

.price-table{

    background:#f9f0dc;

    border:1px solid rgba(29,53,34,.12);

    border-radius:18px;

    overflow:hidden;

    margin-bottom:70px;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    border-bottom:1px solid rgba(29,53,34,.10);

    font-size:22px;

}

.price-row:last-child{
    border-bottom:none;
}

.price-row strong{

    color:var(--green);

    font-family:'Cormorant Garamond', serif;

    font-size:42px;

    font-weight:700;

}

.price-title{

    margin-top:20px;

    margin-bottom:25px;

}

.price-info{

    margin-top:10px;

    background:#f9f0dc;

    border:1px solid rgba(29,53,34,.12);

    border-radius:18px;

    padding:30px;

    display:flex;

    gap:24px;

    align-items:flex-start;

}

.info-icon{

    width:56px;
    height:56px;

    border-radius:50%;

    background:var(--green);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    font-weight:bold;

    flex-shrink:0;

}

.info-text p{

    margin-bottom:10px;

    font-size:19px;

}

.info-text p:last-child{
    margin-bottom:0;
}

.price-button{

    text-align:center;

    margin-top:40px;

}

@media(max-width:700px){

    .price-row{

        font-size:18px;

        padding:18px;

    }

    .price-row strong{

        font-size:30px;

    }

    .price-info{

        flex-direction:column;

        align-items:flex-start;

    }

}

.footer-copy{
    color:rgba(239,225,194,.85);
    font-size:15px;
    line-height:1.8;
}

/*update*/
.last-updated{
    margin-top:18px;
    color:#6e6454;
    font-size:15px;
}

.last-updated time{
    font-weight:600;
    color:var(--green);
}


/* ========================================
   O NAMA
======================================== */

.about-main-image{
    padding:0 0 70px;
}

.about-main-image .about-image{
    margin:0;
}

.about-main-image img{
    display:block;
    width:100%;
    max-width:1100px;
    margin:0 auto;
    border-radius:18px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
}

.about-story-section{
    padding-bottom:90px;
}

.about-story{
    max-width:820px;
    margin:0 auto;
}

.about-story p{
    margin:0 0 26px;
    font-size:19px;
    line-height:1.9;
    color:#4d443b;
}

.about-story h2{
    margin:65px 0 28px;
    font-size:34px;
    font-weight:700;
    color:#3d2c1c;
    line-height:1.3;
}

.about-highlight{
    margin:45px 0 !important;
    text-align:center;
    font-size:28px !important;
    font-weight:600;
    font-style:italic;
    color:#8c6a2d !important;
}

.about-quote{
    margin:50px 0;
    padding:35px 40px;
    background:#faf4e7;
    border-left:5px solid #c49a4c;
    border-radius:10px;
    font-size:22px;
    line-height:1.8;
    font-style:italic;
    color:#5d4932;
}

.about-ending{
    margin-top:70px;
    padding:55px 45px;
    background:#faf4e7;
    border-radius:16px;
    text-align:center;
}

.about-ending h2{
    margin-top:0;
}

.about-ending p{
    margin-bottom:20px;
}

.about-signature{
    margin-top:50px;
    text-align:center;
    position:relative;
    padding-top:35px;
}

.about-signature::before{
    content:"";
    display:block;
    width:90px;
    height:2px;
    background:#c49a4c;
    margin:0 auto 22px;
}

.about-signature strong{
    display:block;
    font-size:34px;
    font-family:Georgia, serif;
    color:#5b3b11;
    letter-spacing:1px;
    margin-bottom:8px;
}

.about-signature span{
    display:block;
    font-size:18px;
    font-style:italic;
    color:#8a6d3b;
    letter-spacing:.8px;
}

.about-signature span::before,
.about-signature span::after{
    content:"❦";
    color:#c49a4c;
    margin:0 10px;
    font-size:14px;
}

@media(max-width:900px){

    .about-main-image{
        padding-bottom:50px;
    }

    .about-story{
        max-width:100%;
    }

    .about-story p{
        font-size:17px;
        line-height:1.8;
    }

    .about-story h2{
        margin-top:45px;
        font-size:28px;
    }

    .about-highlight{
        font-size:23px !important;
    }

    .about-quote{
        padding:28px;
        font-size:19px;
    }

    .about-ending{
        padding:35px 25px;
    }

    .about-signature strong{
        font-size:28px;
    }

}