.elementor-497 .elementor-element.elementor-element-17e8498{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-497:not(.elementor-motion-effects-element-type-background), body.elementor-page-497 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EDE8E0;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-17e8498 *//* ============================================================
   PAGE ACCOMPAGNEMENT - CSS SÉCURISÉ (ANTI-DÉBORDEMENT)
   ============================================================ */

/* --- CORRECTIF TECHNIQUE (SÉCURITÉ MOBILE) --- */
html, body {
    overflow-x: hidden; /* Empêche physiquement le glissement gauche-droite */
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* --- VARIABLES LOCALES (INCHANGÉES) --- */
:root {
    --nm-acc-beige: #EDE8E0;
    --nm-acc-light: #F7F5F3;
    --nm-acc-green: #2E473B;
    --nm-acc-brown: #3E2723;
    --nm-acc-rust: #944028;
    --nm-acc-white: #FFFFFF;
    
    --nm-acc-f-title: 'Cinzel', serif;
    --nm-acc-f-body: 'Montserrat', sans-serif;
    --nm-acc-f-sign: 'Playfair Display', serif;
}

/* --- STRUCTURE --- */
.nm-acc-section {
    padding: 80px 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden; /* Sécurité supplémentaire par section */
}

/* HERO */
.nm-acc-hero {
    padding-top: 60px;
    padding-bottom: 120px;
    background-color: var(--nm-acc-beige);
}

/* Fonds alternés */
.nm-acc-bg-white { background-color: var(--nm-acc-white); }
.nm-acc-bg-beige { background-color: var(--nm-acc-light); }
.nm-acc-bg-green { background-color: var(--nm-acc-green); }

.nm-acc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nm-acc-center { text-align: center; }

/* Grille Zig-Zag */
.nm-acc-grid {
    display: flex;
    flex-direction: column; /* Empilement propre sur mobile */
    gap: 40px; /* Réduit sur mobile pour l'esthétique */
    align-items: center;
}

@media (min-width: 992px) {
    .nm-acc-grid {
        flex-direction: row; /* Retour en ligne sur PC */
        gap: 80px;
    }
    .nm-acc-content { flex: 1; }
    .nm-acc-image { flex: 1; }
}

/* --- TYPOGRAPHIE --- */
.nm-acc-h1 {
    font-family: var(--nm-acc-f-title);
    color: var(--nm-acc-green);
    font-size: clamp(34px, 5vw, 50px);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.nm-acc-h2 {
    font-family: var(--nm-acc-f-title);
    font-size: 32px;
    color: var(--nm-acc-green);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.nm-acc-subtitle {
    font-family: var(--nm-acc-f-sign);
    font-style: italic;
    color: var(--nm-acc-rust);
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.nm-acc-text {
    font-family: var(--nm-acc-f-body);
    font-size: 16px;
    color: var(--nm-acc-brown);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Numéro Géant */
.nm-acc-number {
    font-family: var(--nm-acc-f-title);
    font-size: 60px;
    color: var(--nm-acc-green);
    opacity: 0.15;
    line-height: 1;
    display: block;
    margin-bottom: -25px;
    position: relative;
    z-index: 0;
}

/* --- ÉLÉMENTS SPÉCIFIQUES --- */
.nm-acc-intro {
    font-family: var(--nm-acc-f-sign);
    font-style: italic;
    font-size: 20px;
    color: var(--nm-acc-brown);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Séparateur */
.nm-acc-separator {
    width: 60px;
    height: 1px;
    background-color: var(--nm-acc-rust);
    margin: 20px auto;
}

.nm-acc-img-frame {
    width: 100%;
    max-width: 100%; /* Sécurité mobile */
    height: auto;
    border-radius: 0px 50px 0px 50px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(46, 71, 59, 0.1);
}

.nm-acc-img {
    width: 100%;
    height: auto; /* Changé 100% en auto pour garder le ratio */
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.nm-acc-img-frame:hover .nm-acc-img {
    transform: scale(1.05);
}

/* Liste à puces */
.nm-acc-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nm-acc-list li {
    font-family: var(--nm-acc-f-body);
    color: var(--nm-acc-brown);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.nm-acc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--nm-acc-rust);
    transform: rotate(45deg);
}

/* Cadre Résultat */
.nm-acc-result {
    margin-top: 30px;
    background-color: rgba(237, 232, 224, 0.4);
    padding: 20px;
    border-left: 3px solid var(--nm-acc-rust);
    border-radius: 0 4px 4px 0;
}

.nm-acc-result p {
    font-family: var(--nm-acc-f-sign);
    font-style: italic;
    color: var(--nm-acc-brown);
    margin: 0;
}

.nm-acc-result-label {
    font-family: var(--nm-acc-f-title);
    font-size: 13px;
    color: var(--nm-acc-rust);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

/* --- VARIANTES FOND VERT --- */
.nm-acc-text-white { color: var(--nm-acc-white) !important; }
.nm-acc-text-rust { color: var(--nm-acc-rust) !important; opacity: 1 !important; }

.nm-acc-list-light li { color: var(--nm-acc-white) !important; }
.nm-acc-list-light li::before { background-color: var(--nm-acc-white); }

.nm-acc-result-light {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--nm-acc-white);
}
.nm-acc-result-light .nm-acc-result-label { color: var(--nm-acc-white); }
.nm-acc-result-light p { color: rgba(255,255,255,0.9); }

/* --- BOUTONS --- */
.nm-acc-btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--nm-acc-f-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 2px;
    margin-top: 20px;
}

.nm-acc-btn-primary {
    background-color: var(--nm-acc-green);
    color: var(--nm-acc-white);
    border: 1px solid var(--nm-acc-green);
}
.nm-acc-btn-primary:hover {
    background-color: transparent;
    color: var(--nm-acc-green);
}

/* --- ANIMATIONS (STABILISÉES) --- */
.nm-acc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    will-change: transform, opacity;
}
.nm-acc-reveal.nm-acc-active {
    opacity: 1;
    transform: translateY(0);
}
.nm-acc-delay-200 { transition-delay: 0.2s; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nm-acc-reverse { flex-direction: column-reverse; }
    .nm-acc-img-frame { height: 350px; } /* Un peu plus grand pour la lisibilité mobile */
}/* End custom CSS */