/* === RESET & BASE === */
* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    background: #faf7f2;
    color: #2c2c2c;
    line-height: 1.6;
}
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

/* === HEADER PROVENÇAL === */
.provencal-header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.logo h1 {
    font-weight: 600;
    font-size: 2.2rem;
    color: #5e2a7c;
    letter-spacing: 1px;
}
.logo span {
    color: #b8860b;
    font-style: italic;
}
.nav-menu {
    display:flex;
    gap: 2.5rem;
    list-style:none;
}
.nav-menu a {
    color: #4a2c5e;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #d4af37;
    color: #b8860b;
}

/* === HERO === */
.hero-mep {
    background: linear-gradient(0deg, rgba(250,247,242,0.9) 0%, rgba(250,247,242,0.4) 100%), 
                url('https://images.pexels.com/photos/144433/pexels-photo-144433.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 650px;
    padding: 3rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    border-radius: 0 60px 60px 0;
    border-left: 8px solid #d4af37;
}
.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #5e2a7c;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.tagline {
    font-size: 1.6rem;
    color: #b8860b;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.btn-gold {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.2s;
    border: 1px solid #b8860b;
}
.btn-gold:hover {
    background: transparent;
    color: #5e2a7c;
    border-color: #5e2a7c;
}
.btn-outline {
    display: inline-block;
    border: 1px solid #5e2a7c;
    color: #5e2a7c;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-outline:hover {
    background: #5e2a7c;
    color: #fff;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #5e2a7c;
    margin: 3rem 0 2rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "✦";
    color: #d4af37;
    font-size: 1.5rem;
    margin-left: 10px;
}

/* === GRID CARDS === */
.card-grid-mep {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.card-mep {
    background: #ffffffdd;
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid #e9dccd;
    transition: 0.2s;
}
.card-mep:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(94,42,124,0.05);
}
.card-mep h3 {
    color: #b8860b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* === RNA FOOTER === */
.rna-footer-mep {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #d4af37;
    display: flex;
    justify-content: space-between;
    color: #6b4f7c;
    font-size: 0.9rem;
}

/* === FORM === */
.contact-form-mep input,
.contact-form-mep textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d4af37;
    background: #fffdf9;
    font-family: inherit;
}
.contact-form-mep input:focus { outline: none; border-color: #5e2a7c; }

@media (max-width:768px) {
    .header-content { flex-direction: column; }
    .hero-content h2 { font-size: 2.5rem; }
}