.elementor-486 .elementor-element.elementor-element-cb2234d{--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-486:not(.elementor-motion-effects-element-type-background), body.elementor-page-486 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EDE8E0;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-cb2234d *//* ==============================================
   NISO MERAKI - SYSTÈME DE CLASSES UNIQUE (NM-)
   ============================================== */

/* --- VARIABLES LOCALES (Pour éviter tout conflit) --- */
:root {
    --nm-c-beige: #EDE8E0;
    --nm-c-beige-light: #F7F5F3;
    --nm-c-green: #2E473B;
    --nm-c-brown: #3E2723;
    --nm-c-rust: #944028;
    --nm-c-clay: #C57B57;
    --nm-c-white: #FFFFFF;
    
    --nm-f-title: 'Cinzel', serif;
    --nm-f-sign: 'Playfair Display', serif;
    --nm-f-body: 'Montserrat', sans-serif;
    
    --nm-radius: 0px 50px 0px 50px;
}

/* --- STRUCTURE --- */
.nm-section {
    padding: 80px 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.nm-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nm-grid-2 {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nm-col-content { flex: 1; }
.nm-col-image { flex: 1; }

.nm-bg-beige { background-color: var(--nm-c-beige-light); }
.nm-bg-green { background-color: var(--nm-c-green); }

.nm-text-center { text-align: center; }
.nm-max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- TYPOGRAPHIE --- */
.nm-h1 {
    font-family: var(--nm-f-title);
    font-size: clamp(34px, 5vw, 50px);
    color: var(--nm-c-green);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nm-h2 {
    font-family: var(--nm-f-title);
    font-size: clamp(26px, 4vw, 38px);
    color: var(--nm-c-green);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.nm-h3 {
    font-family: var(--nm-f-title);
    font-size: 18px;
    color: var(--nm-c-green);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.nm-subtitle {
    font-family: var(--nm-f-sign);
    font-style: italic;
    color: var(--nm-c-rust);
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.nm-text {
    font-family: var(--nm-f-body);
    font-size: 16px;
    color: var(--nm-c-brown); /* Couleur foncée forcée pour lisibilité */
    line-height: 1.8;
    margin-bottom: 20px;
}

.nm-text-sm {
    font-family: var(--nm-f-body);
    font-size: 14px;
    color: var(--nm-c-brown);
    line-height: 1.6;
}

.nm-text-light { color: var(--nm-c-white) !important; }

.nm-intro-text {
    font-family: var(--nm-f-sign);
    font-style: italic;
    font-size: 22px;
    color: var(--nm-c-brown);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* --- ÉLÉMENTS GRAPHIQUES --- */
.nm-separator {
    width: 60px;
    height: 1px;
    background-color: var(--nm-c-rust);
    margin: 30px auto;
}

.nm-quote {
    border-left: 3px solid var(--nm-c-rust);
    padding-left: 20px;
    margin-top: 30px;
    font-family: var(--nm-f-sign);
    font-style: italic;
    font-size: 18px;
    color: var(--nm-c-rust);
}

.nm-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nm-list li {
    font-family: var(--nm-f-body);
    color: var(--nm-c-brown);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.nm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--nm-c-rust);
    transform: rotate(45deg); /* Losange */
}

/* --- IMAGES --- */
.nm-img-wrapper {
    width: 100%;
    height: auto;
    border-radius: var(--nm-radius);
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(46, 71, 59, 0.1);
}

.nm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.nm-img-wrapper:hover .nm-img {
    transform: scale(1.05);
}

/* --- BOUTONS --- */
.nm-btn {
    display: inline-block;
    padding: 16px 34px;
    font-family: var(--nm-f-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid transparent;
    margin-top: 20px;
    border-radius: 2px;
}

.nm-btn-primary {
    background-color: var(--nm-c-green);
    color: var(--nm-c-white);
    border-color: var(--nm-c-green);
}
.nm-btn-primary:hover {
    background-color: transparent;
    color: var(--nm-c-green);
}

.nm-btn-secondary {
    background-color: transparent;
    color: var(--nm-c-green);
    border-color: var(--nm-c-green);
}
.nm-btn-secondary:hover {
    background-color: var(--nm-c-green);
    color: var(--nm-c-white);
}

/* --- SECTION ÉQUATION --- */
.nm-equation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.nm-eq-card {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px 30px;
    min-width: 200px;
    border-radius: 2px;
}

.nm-eq-highlight {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--nm-c-white);
}

.nm-eq-head {
    display: block;
    font-family: var(--nm-f-title);
    color: var(--nm-c-white);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nm-eq-sub {
    font-family: var(--nm-f-body);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nm-eq-symbol {
    font-size: 30px;
    color: var(--nm-c-rust);
    font-family: var(--nm-f-title);
}

/* --- TIMELINE --- */
.nm-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.nm-step-card {
    background-color: var(--nm-c-white);
    padding: 30px 25px;
    border-top: 4px solid var(--nm-c-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.nm-step-card:hover { transform: translateY(-5px); }

.nm-step-num {
    font-family: var(--nm-f-title);
    font-size: 40px;
    color: var(--nm-c-rust);
    opacity: 0.25;
    margin-bottom: 10px;
    line-height: 1;
}

/* --- ANIMATIONS --- */
.nm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.nm-reveal.nm-active {
    opacity: 1;
    transform: translateY(0);
}
.nm-delay-100 { transition-delay: 0.1s; }
.nm-delay-200 { transition-delay: 0.2s; }
.nm-delay-300 { transition-delay: 0.3s; }
.nm-delay-400 { transition-delay: 0.4s; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nm-grid-2 { flex-direction: column; }
    .nm-reverse-mobile { flex-direction: column-reverse; }
    
    .nm-equation-wrapper { flex-direction: column; }
    .nm-eq-symbol { transform: rotate(90deg); margin: 5px 0; }
    .nm-eq-card { width: 100%; max-width: 350px; }
    
    .nm-timeline-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .nm-section { padding: 60px 20px; }
    .nm-timeline-grid { grid-template-columns: 1fr; }
    .nm-h1 { font-size: 32px; }
}/* End custom CSS */
/* Start custom CSS *//* =========================================
   CSS SPÉCIFIQUE : PAGE "LA MÉTHODE"
   ========================================= */

/* --- 1. Utilitaires de Fond & Texte --- */
.bg-beige-light {
    background-color: var(--c-beige-light); /* #F7F5F3 */
}

.bg-vert-foret {
    background-color: var(--c-vert-foret); /* #2E473B */
}

.text-light {
    color: var(--c-blanc) !important;
}

.text-center {
    text-align: center;
}

/* --- 2. Intro & Séparateur --- */
.hero-method {
    padding-top: 120px;
    padding-bottom: 80px;
}

.separator-center {
    width: 80px;
    height: 1px;
    background-color: var(--c-rouille);
    margin: 30px auto;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--f-sign); /* Playfair Display */
    font-style: italic;
    color: var(--c-brun-texte);
}

/* Style de citation (Barre verticale) */
.quote-style {
    border-left: 3px solid var(--c-rouille);
    padding-left: 25px;
    margin-top: 40px;
    font-family: var(--f-sign);
    font-style: italic;
    font-size: 20px;
    color: var(--c-rouille);
    line-height: 1.5;
}

/* --- 3. L'Équation Meraki (Section Verte) --- */
.equation-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.eq-item {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px 40px;
    border-radius: 2px;
    min-width: 220px;
    transition: 0.3s;
}

/* Case "Performance" mise en avant */
.eq-item.highlight {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--c-blanc);
    transform: scale(1.05);
}

.eq-title {
    display: block;
    font-family: var(--f-titre);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-blanc);
    margin-bottom: 8px;
}

.eq-desc {
    font-family: var(--f-corps);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eq-sign {
    font-size: 40px;
    color: var(--c-rouille);
    font-family: var(--f-titre);
    font-weight: 300;
}

/* --- 4. Timeline / Étapes (Grille) --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
    gap: 30px;
    margin-top: 60px;
}

.step-item {
    background-color: var(--c-blanc);
    padding: 40px 30px;
    border-radius: 4px;
    /* Bordure supérieure verte pour le style */
    border-top: 4px solid var(--c-vert-foret);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
    text-align: left;
}

.step-item:hover {
    transform: translateY(-8px); /* Effet de levée au survol */
}

.step-number {
    font-family: var(--f-titre);
    font-size: 50px;
    color: var(--c-rouille);
    opacity: 0.2;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 600;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--c-vert-foret);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-brun-texte);
    margin: 0;
}

/* --- 5. RESPONSIVE (Tablette & Mobile) --- */
@media (max-width: 991px) {
    /* L'équation passe en vertical */
    .equation-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .eq-sign {
        transform: rotate(90deg); /* On tourne les signes + et = */
        margin: 5px 0;
    }
    
    .eq-item {
        width: 100%;
        max-width: 350px;
    }

    /* Les étapes passent en 2 colonnes sur tablette */
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    /* Les étapes passent en 1 colonne sur mobile */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: 18px;
    }
}/* End custom CSS */