.hero-loc{
    max-width:850px;
    margin:45px auto 0;
    padding:0 20px;
    text-align:center;
}

.hero-loc h1{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.2rem,4vw,3rem);
    font-weight:600;
    color:#334155;
    line-height:1.1;
}

.hero-divider{
    width:60px;
    height:3px;
    margin:16px auto 18px;
    border-radius:50px;
    background:#C9A66B;
}

.hero-loc p{
    max-width:650px;
    margin:auto;
    font-size:1rem;
    line-height:1.7;
    color:#64748b;
}

/* Grille */
.grid-materiel{
    max-width:1200px;
    margin:0 auto;
    padding:50px 20px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* Carte */
.card-materiel{
    display:flex;
    flex-direction:column;
    padding:24px;
    background:#fff;
    border:1px solid #e8dcc7;
    border-radius:22px;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
}

/* Image */
.img-materiel{
    overflow:hidden;
    border-radius:16px;
    margin-bottom:22px;
}

.img-materiel img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
}

/* Description */
.desc-materiel{
    min-height:185px;
    padding-bottom:20px;
}

.desc-materiel h2{
    margin-bottom:16px;
    font-size:1.8rem;
    color:#1f2937;
}

.desc-materiel p{
    line-height:1.75;
    color:#555;
}

/* Caractéristiques */
.carac-materiel{
    margin-top:auto;
    padding-top:22px;
    border-top:1px solid #d9d9d9;
}

.carac-materiel h4{
    margin-bottom:14px;
    color:#334155;
}

.carac-materiel ul{
    padding-left:22px;
}

.carac-materiel li{
    margin-bottom:10px;
    line-height:1.6;
}

/* Bouton */
.btn-materiel{
    margin-top:28px;
    padding-top:24px;
    border-top:1px solid #d9d9d9;
}

.btn-info{
    display:inline-block;
    padding:12px 28px;
    border:2px solid #c9a66b;
    border-radius:8px;
    color:#c9a66b;
    text-decoration:none;
    font-weight:600;
    letter-spacing:.3px;
    transition:.25s;
}

.btn-info:hover{
    background:#c9a66b;
    color:white;
    box-shadow:0 5px 15px rgba(201,166,107,.35);
}

/* Responsive */
@media(max-width:1100px){

    .grid-materiel{
        grid-template-columns:1fr;
    }

    .desc-materiel{
        min-height:auto;
    }
}

@media(max-width:700px){

    .grid-materiel{
        padding:30px 20px;
    }

    .img-materiel img{
        height:250px;
    }

    .card-materiel{
        padding:18px;
    }
}