
/*
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Arial', sans-serif;
}
body{
    background-color:#f7f5ec;
    color:#203b2e;
    line-height:1.7;
}
*/
/* Hero Banner */
.hero-section{
    width:100%;
    min-height:520px;
    background: linear-gradient(rgba(22,48,36,0.55),rgba(22,48,36,0.55)), url("https://upax366.myueeshop.com/u_file/2608/28/photo/1.jpg") center / cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#ffffff;
    padding:60px 24px;
}
.hero-content h1{
    font-size:44px;
    font-weight:700;
    margin-bottom:16px;
}
.hero-content p{
    font-size:20px;
    max-width:820px;
    margin:0 auto;
    opacity:0.95;
}

/* Intro Section */
.intro-section{
    max-width:1280px;
    margin:0 auto;
    padding:80px 24px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:56px;
    align-items:center;
}
.intro-text h2{
    font-size:32px;
    margin-bottom:22px;
    color:#1a3427;
}
.intro-text p{
    font-size:17px;
    margin-bottom:18px;
}
.intro-img{
    width:100%;
    border-radius:10px;
    overflow:hidden;
}
.intro-img img{
    width:100%;
    height:auto;
    display:block;
}

/* Terroir Section 31°N Tea Belt */
.terroir-section{
    background:#ebe8dd;
    padding:80px 24px;
}
.terroir-wrap{
    max-width:1280px;
    margin:0 auto;
}
.terroir-top{
    display:grid;
    grid-template-columns: 1.3fr 1fr;
    gap:48px;
    align-items:center;
    margin-bottom:48px;
}
.terroir-text h2{
    font-size:34px;
    margin-bottom:20px;
}
.terroir-text p{
    font-size:17px;
}
.terroir-map{
    width:100%;
    border-radius:10px;
    overflow:hidden;
}
.terroir-map img{
    width:100%;
    height:auto;
}
/* Climate Stats Cards */
.stats-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:24px;
}
.stat-card{
    border:1px solid #406b54;
    padding:24px 16px;
    text-align:center;
    background:#f7f5ec;
}
.stat-card h4{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}
.stat-card .num{
    font-size:36px;
    font-weight:bold;
    color:#1a3427;
}

/* Farm Harvest Gallery Section */
.gallery-section{
    max-width:1280px;
    margin:0 auto;
    padding:80px 24px;
}
.gallery-title{
    text-align:center;
    margin-bottom:48px;
}
.gallery-title h2{
    font-size:32px;
    margin-bottom:12px;
}
.gallery-title p{
    font-size:17px;
    max-width:700px;
    margin:0 auto;
}
.gallery-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:32px;
}
.gallery-item{
    border-radius:10px;
    overflow:hidden;
}
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Footer Slogan */
.slogan-block{
    background:#1a3427;
    color:#fff;
    text-align:center;
    padding:60px 24px;
}
.slogan-block p{
    font-size:26px;
    font-style:italic;
}

/* Mobile Responsive */
@media(max-width:992px){
    .hero-content h1{
        font-size:32px;
    }
    .intro-section{
        grid-template-columns:1fr;
    }
    .terroir-top{
        grid-template-columns:1fr;
    }
    .stats-row{
        grid-template-columns: repeat(2,1fr);
    }
    .gallery-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .stats-row{
        grid-template-columns:1fr;
    }
    .hero-content h1{
        font-size:26px;
    }
}
