@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f6f1ee;
    overflow-x:hidden;
    color:#333;
    min-height:100vh;
}

main{
    width:85%;
    margin:auto;
    padding-bottom:100px;
}

a{
    text-decoration:none;
    color:white;
}

.nav{
    width:100%;
    height:100px;
    padding:0 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#4a120a;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 10px rgba(0,0,0,.3);
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    height:42px;
    width:auto;
    display:block;
}

.brand h1{
    display:flex;
    align-items:center;
    line-height:1;
}

.brand h1 a{
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    line-height:1;
}

.navlinks{
    display:flex;
    align-items:center;
    gap:50px;
}

.navbutton{
    font-weight:600;
    transition:.2s ease;
    display:flex;
    align-items:center;
    line-height:1;
}

.navbutton:hover{
    transform:scale(1.1);
}

.navlinks img.logo{
    height:32px;
    width:auto;
    display:block;
    cursor:pointer;
}

.hero{
    position:relative;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    height:90vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-slides{
    position:absolute;
    inset:0;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:80% center;
    opacity:0;
    transition:opacity 2s ease-in-out;
    transform:scale(1.03);
}

.hero-bg.active{
    opacity:1;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        to right,
        rgba(10,4,3,.98) 0%,
        rgba(20,8,6,.95) 25%,
        rgba(40,12,9,.75) 55%,
        rgba(90,25,18,.40) 80%,
        rgba(120,40,30,.15) 100%
    );
}

.hero-text{
    position:relative;
    z-index:2;
    margin-left:8%;
    max-width:520px;
    color:white;
}

.hero-text h2{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:35px;
}

.cta,
.home-feature-button,
.variety-btn,
.add-btn{
    display:inline-block;
    background:#731906;
    color:white;
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.25s ease;
}

.cta:hover,
.home-feature-button:hover,
.variety-btn:hover,
.add-btn:hover{
    background:#a3261a;
    transform:scale(1.05);
}

.shop-prompt{
    text-align:center;
    margin:90px 0 60px;
}

.shop-prompt h3{
    font-size:36px;
    color:#731906;
    margin-bottom:15px;
}

.shop-prompt p{
    color:#666;
}

.home-carousel-section{
    margin-bottom:120px;
}

.home-carousel{
    display:flex;
    gap:35px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:20px;
}

.home-carousel::-webkit-scrollbar{
    display:none;
}

.home-feature-card{
    flex:0 0 90%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px;
    background:white;
    border-radius:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    scroll-snap-align:center;
}

.home-feature-image{
    width:40%;
    display:flex;
    justify-content:center;
}

.home-feature-image img{
    width:300px;
    transition:.3s ease;
}

.home-feature-card:hover img{
    transform:translateY(-10px) rotate(-2deg);
}

.home-feature-info{
    width:50%;
}

.home-feature-tag{
    display:inline-block;
    background:#a3261a;
    color:white;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.home-feature-info h2{
    font-size:52px;
    color:#2b0d07;
    margin-bottom:25px;
}

.home-feature-info p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.home-feature-details{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.home-feature-details span{
    background:#f2ecea;
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#731906;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.25s ease;
}

.back-to-top:hover{
    background:#a3261a;
    transform:translateY(-3px);
}

.site-footer{
    background:#4a120a;
    color:white;
    text-align:center;
    padding:30px 0;
}

.shop-grid{
    width:85%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding-bottom:120px;
}

.shop-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.25s ease;
}

.shop-card:hover{
    transform:translateY(-8px);
}

.shop-card img{
    width:140px;
}

.shop-card h4{
    margin-top:15px;
    font-size:20px;
    font-weight:700;
}

.shop-card p{
    color:#666;
    margin-top:5px;
}

.variety-banner{
    width:85%;
    margin:60px auto 80px;
    display:flex;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.variety-image-side{
    flex:1;
    background:#f6f1ee;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
}

.variety-image-side img{
    width:100%;
    max-height:520px;
    object-fit:contain;
}

.variety-text-side{
    flex:1;
    padding:80px 65px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:linear-gradient(180deg,#3a0d08,#1f0704);
    color:#fff;
}

.variety-kicker{
    font-size:12px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    opacity:.8;
    margin-bottom:14px;
}

.variety-text-side h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.variety-text-side p{
    font-size:16px;
    line-height:1.7;
    opacity:.85;
    margin-bottom:28px;
}

.mission-hero{
    width:85%;
    margin:90px auto 110px;
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    align-items:center;
}

.mission-hero-text{
    flex:1;
    min-width:300px;
}

.mission-hero-text h2{
    font-size:54px;
    font-weight:800;
    color:#731906;
    margin-bottom:20px;
}

.mission-hero-text p{
    font-size:18px;
    line-height:1.7;
    color:#555;
    max-width:520px;
}

.mission-hero-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    cursor:pointer;
    transition:.25s ease;
}

.mission-hero-image img:hover{
    transform:scale(1.02);
}

.process-section{
    width:85%;
    margin:0 auto 120px;
    text-align:center;
}

.process-section h3{
    font-size:40px;
    font-weight:800;
    color:#731906;
    margin-bottom:10px;
}

.process-section h3::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:#731906;
    margin:15px auto 0;
    border-radius:2px;
}

.process-intro{
    color:#666;
    max-width:600px;
    margin:0 auto 50px;
    line-height:1.6;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
}

.process-step{
    background:white;
    padding:22px;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    text-align:left;
    transition:.25s ease;
}

.process-step:hover{
    transform:translateY(-6px);
}

.process-step img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:18px;
}

.contact-section{
    width:85%;
    margin:90px auto 110px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-form input,
.contact-form textarea{
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:10px;
}

.contact-info p{
    margin-bottom:10px;
    line-height:1.6;
}

.contact-faq{
    width:85%;
    margin:100px auto 130px;
    text-align:center;
}

.contact-faq h3{
    font-size:34px;
    font-weight:800;
    color:#731906;
    margin-bottom:18px;
}

.contact-faq h3::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:#731906;
    margin:15px auto 0;
    border-radius:2px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

.faq-item{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    text-align:left;
}