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

body{
    font-family:system-ui;
    background:#f5f3ef;
    color:#1e293b;
}

/* HERO */
.hero{
    height:350px;
    background:url('/images/moisson-hero-harvest.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    border-bottom:7px solid #cbd5e1;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.hero-inner{
    position:relative;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:2.5rem;
}

.subtitle{
    margin-top:1rem;
}

.hero-stat{
    margin-top:1.5rem;
}

/* SECTION */
.members-section{
    max-width:1200px;
    margin:auto;
    padding:2rem;
}

/* SEARCH */
.tools input{
    width:100%;
    padding:.8rem;
    border-radius:8px;
    border:1px solid #ddd;
    margin-bottom:1rem;
}

/* GRID */
.members-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:1.5rem;
}

/* CARD */
.member-card{
    background:#f8f6f2;
    border:1px solid #e5e1d8;
    border-radius:16px;
    overflow:hidden;
    transition:all 0.2s ease;
}

.member-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* TOP */
.card-top{
    background:#edeae4;
    padding:1rem 1.1rem;
    border-bottom:1px solid #e5e1d8;
}

.card-top h4{
    font-size:1rem;
    font-weight:600;
    margin-bottom:2px;
}

.card-top .location{
    font-size:.8rem;
    color:#64748b;
}

/* BODY */
.card-body{
    padding:1rem;
}

/* ADDRESS */
.address{
    display:flex;
    gap:.4rem;
    margin-top:.2rem;
}

.pin{
    margin-top:2px;
}

.address a{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:#1e293b;
    font-size:.85rem;
    line-height:1.3;
}

.line1{
    font-weight:500;
}

.line2{
    color:#64748b;
}

.address a:hover{
    color:#2f6f4f;
}

/* LINKS */
.links{
    margin-top:.6rem;
    font-size:.85rem;
}

.links a{
    color:#2f6f4f;
    text-decoration:none;
}

.links a:hover{
    text-decoration:underline;
}

/* FOOTER */
footer{
    background:#1e293b;
    text-align:center;
    margin-top:2rem;
}

/* PARTENAIRE */
.footer-partner{
    background:#ffffff;
    color:#000000;
    padding:2rem 1rem;
    border-top:7px solid #cbd5e1;
}

.footer-partner img{
    max-width:220px;
    height:auto;
    margin-bottom:.6rem;
}

.footer-partner p{
    margin-bottom:.4rem;
    font-size:.9rem;
}

.footer-partner a{
    color:#2563eb;
    text-decoration:none;
    font-size:.9rem;
}

.footer-partner a:hover{
    text-decoration:underline;
}

/* COPYRIGHT */
.footer-bottom{
    color:#cbd5e1;
    padding:1rem;
    font-size:.8rem;
}

/* MOBILE */
@media(max-width:768px){
    .hero{
        height:280px;
    }

    .hero h1{
        font-size:1.8rem;
    }

    .members-grid{
        grid-template-columns:1fr;
    }
}