/* =================================================================
   GLOBAL ATENON – TYPO, COULEURS, ESPACEMENTS, BOUTONS, SHADOW, RADIUS
   ================================================================= */

/* Empêcher l'ascenseur horizontal global */
html,
body {
    overflow-x: hidden;
}


/* --- 1. VARIABLES & DESIGN SYSTEM --- */
:root {
    /* Couleurs Charte "Équilibre Naturel" */
    --color-primary: #5F7161;
    /* Vert Sauge (Expertise) */
    --color-primary-dark: #4A584C;
    /* Vert Sombre (Hover) */
    --color-accent: #D68C72;
    /* Terre Cuite (Action) */
    --color-accent-hover: #BF755A;
    /* Terre Cuite Foncé (Hover) */
    --color-text-main: #4A403A;
    /* Brun Profond (Lecture) */
    --color-text-light: #78706A;
    /* Gris Chaud (Secondaire) */
    --color-bg-body: #F3EEE6;
    /* Sable (Fond global) */
    --color-bg-white: #FFFFFF;
    /* Blanc (Cartes) */
    --color-bg-headerfooter: #2C2420;
    /* fond pour header et footer */


    /* Typographie de base */
    --font-title: "Montserrat", sans-serif;
    --font-body: "Open Sans", sans-serif;

    /* Mapping des familles globales Elementor → variables locales */
    --e-global-typography-font-family-titre: var(--font-title);
    --e-global-typography-font-family-texte: var(--font-body);

    --e-global-typography-style-normal: normal;
    --e-global-typography-style-italic: italic;

    /* Titres */
    --e-global-typography-titles-font-family: var(--e-global-typography-font-family-titre);
    /* Paragraphes */
    --e-global-typography-body-font-family: var(--e-global-typography-font-family-texte);

    /* TITRES */
    --e-global-typography-h1-size: clamp(2.5rem, 1.59rem + 2.58vw, 4.5rem);
    --e-global-typography-h2-size: clamp(2.125rem, 1.55rem + 1.61vw, 3.375rem);
    --e-global-typography-h3-size: clamp(1.75rem, 1.4rem + 0.97vw, 2.5rem);
    --e-global-typography-h4-size: clamp(1.5rem, 1.27rem + 0.65vw, 2rem);
    --e-global-typography-h5-size: clamp(1.25rem, 1.08rem + 0.48vw, 1.625rem);
    --e-global-typography-h6-size: clamp(1.125rem, 1.01rem + 0.32vw, 1.375rem);

    --e-global-typography-paragraph-small-size: clamp(0.80rem, 0.78rem + 0.2vw, 0.90rem);
    --e-global-typography-caption-size: 0.8rem;

    /* PARAGRAPHES & LEAD & MENUS */
    --e-global-typography-paragraph-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --e-global-typography-lead-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
    --e-global-typography-Menu-1-size: clamp(1rem, 1rem + 0.4vw, 1.25rem);
    --e-global-typography-Menu-2-size: clamp(0.9rem, 0.9rem + 0.3vw, 1.1rem);

    /* FONT-WEIGHT */
    --e-global-typography-bold: 600;
    --e-global-typography-semibold: 500;
    --e-global-typography-regular: 400;

    /* LINE-HEIGHT */
    --e-global-typography-title-line: 1.2;
    --e-global-typography-text-line: 1.6;

    /* Formes & Ombres */
    --radius: 4px;
    /* Arrondis légers (Pragmatisme) */
    --shadow-card: 0 10px 30px rgba(95, 113, 97, 0.08);
    --shadow-hover: 0 15px 40px rgba(95, 113, 97, 0.15);
}

/* --- 2. RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: var(--e-global-typography-text-line);
    font-size: var(--e-global-typography-paragraph-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--color-primary);
    line-height: var(--e-global-typography-title-line);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 3. UTILITAIRES --- */
.bg-white {
    background-color: var(--color-bg-white);
}

.bg-beige {
    background-color: var(--color-bg-body);
}

.bg-primary {
    background-color: var(--color-primary);
    color: white;
}

.bg-headerfooter {
    background-color: var(--color-bg-headerfooter);
    color: white;
}



.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent);
}

/* --- 4. COMPOSANTS (UI KIT) --- */

/* Boutons */

.btn {
display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 140, 114, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: #9FAAA0;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
}

/* Variante Bouton Blanc (sur fond sombre) */
.btn-white-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Lien Texte (CTA discret) */
.btn-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: var(--e-global-typography-Menu-2-size);
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--color-accent-hover );
    border-color: var(--color-accent-hover);
}

.btn-link i {
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translateX(4px);
}

/* --- 5. NAVIGATION STICKY (Top Bar + Header) --- */
/* Top Bar (Barre Contact) */
.top-bar {
    background-color: var(--color-text-main);
    /* Brun Profond */
    color: white;
    padding: 0px;
    font-size: var(--e-global-typography-Menu-2-size);
    font-family: var(--font-body);
    position: relative;
    z-index: 1002;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-list {
    display: flex;
    gap: 20px;
}

.contact-list span,
.contact-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.contact-list a:hover {
    color: var(--color-accent);
}

.contact-highlight {
    font-weight: 700 !important;
    color: white !important;
}

/* Header Principal */
header {
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 0px;
    position: relative;
    z-index: 1001;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Bouton "Rencontrons-nous" dans le menu */
.nav-cta {
    background-color: var(--color-accent);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--e-global-typography-Menu-2-size);
    text-transform: uppercase;
}

.nav-cta:hover {
    background-color: var(--color-accent-hover);
    color: white;
}

.mobile-toggle {
    display: none;
    font-size: clamp(1.5rem, 1.2rem + 0.6vw, 2rem);
    color: var(--color-primary);
    cursor: pointer;
}

/* --- 6. HERO SECTION (Bloc 1: Vert) --- */
.hero {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: var(--e-global-typography-h1-size);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: var(--e-global-typography-lead-size);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-actions .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* --- 7. SECTION CONSTAT (Bloc 2: BLANC) --- */
.problem-section {
    text-align: center;
    background-color: var(--color-bg-white);
    /* BLANC */
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background-color: var(--color-bg-body);
    /* Beige */
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: var(--e-global-typography-Menu-2-size);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --- 8. PRESTATIONS (Bloc 3: BEIGE) --- */
.services-section {
    background-color: var(--color-bg-body);
    /* BEIGE */
}

/* Tag sur fond beige doit être blanc pour ressortir */
.services-section .section-tag {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-bg-white);
    /* Blanc */
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--color-accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-body);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--e-global-typography-h4-size);
    margin-bottom: 24px;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background-color: var(--color-primary);
    color: white;
}

.service-card h3 {
    font-size: var(--e-global-typography-h5-size);
    margin-bottom: 16px;
}

.service-card p {
    font-size: var(--e-global-typography-paragraph-size);
    color: var(--color-text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-title);
    font-size: var(--e-global-typography-Menu-2-size);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-link i {
    transition: 0.3s;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* --- 9. ACCOMPAGNEMENTS CONCRETS (Bloc 4: VERT) --- */
.examples-section {
    background-color: var(--color-primary);
    /* VERT SAUGE */
    padding-bottom: 100px;
    color: white;
    /* Texte en blanc */
}

.examples-section h2 {
    color: white;
    font-size: var(--e-global-typography-h2-size);
}

.examples-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--e-global-typography-paragraph-size);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.example-card {
    background-color: rgba(255, 255, 255, 0.1);
    /* Transparence sur fond vert */
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.example-card:hover {
    background-color: white;
    transform: translateY(-5px);
}

/* Au survol, on repasse en couleurs standard */
.example-card:hover h4 {
    color: var(--color-text-main);
}

.example-card:hover p {
    color: var(--color-text-light);
}

.example-card:hover .btn-link {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.example-img {
    background-color: #eee;
    height: 100%;
}

.example-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.example-tag {
    font-family: var(--font-title);
    font-size: var(--e-global-typography-Menu-2-size);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.example-content h4 {
    font-size: var(--e-global-typography-h6-size);
    margin-bottom: 10px;
    color: white;
    /* Titre blanc par défaut */
}

.example-content p {
    font-size: var(--e-global-typography-paragraph-size);
    color: rgba(255, 255, 255, 0.8);
    /* Texte gris clair par défaut */
    margin-bottom: 20px;
}

/* Lien blanc sur fond vert */
.example-content .btn-link {
    color: white;
    border-color: white;
}

/* --- 10. INCARNATION / QUI SUIS-JE (Bloc 5: BLANC) --- */
.about-section {
    background-color: var(--color-bg-white);
    /* BLANC */
}

.about-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content .section-tag {
    background-color: var(--color-bg-body);
    /* Beige */
}

.quote-block {
    border-left: 4px solid var(--color-accent);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: var(--e-global-typography-lead-size);
    color: var(--color-text-light);
}

.metrics-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric strong {
    display: block;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: var(--e-global-typography-h3-size);
    color: var(--color-primary);
    line-height: 1;
}

.metric span {
    font-size: var(--e-global-typography-Menu-2-size);
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* --- 11. RESSOURCES (Bloc 6: BEIGE) --- */
/* Pour alterner après le blanc du Qui suis-je */
.resources-section {
    background-color: var(--color-bg-body);
    /* BEIGE */
    text-align: center;
}

.resources-section .section-tag {
    background-color: white;
}

.resource-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.resource-card {
    background: var(--color-bg-white);
    /* Blanc sur fond beige */
    padding: 30px;
    border-radius: var(--radius);
    width: 300px;
    text-align: left;
    transition: 0.3s;
    box-shadow: var(--shadow-card);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.resource-card i {
    font-size: var(--e-global-typography-h3-size);
    margin-bottom: 20px;
    color: var(--color-accent);
}

.resource-card h4 {
    color: var(--color-primary);
    font-size: var(--e-global-typography-h6-size);
    margin-bottom: 10px;
}

.resource-card p {
    font-size: var(--e-global-typography-paragraph-size);
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* --- 12. CONTACT (Bloc 7: VERT) --- */
/* Pour finir sur une note forte avant le footer */
.contact-section {
    background-color: var(--color-primary);
    /* VERT */
    color: white;
}

.contact-section h2 {
    color: white;
    font-size: var(--e-global-typography-h2-size);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--e-global-typography-paragraph-size);
}

.contact-card {
    background-color: var(--color-bg-white);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-info {
    background-color: var(--color-text-main);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    color: white;
    font-size: var(--e-global-typography-h4-size);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--e-global-typography-paragraph-size);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--color-accent);
    font-size: var(--e-global-typography-h6-size);
}

.contact-form {
    padding: 50px;
    color: var(--color-text-main);
    /* Reset text color for form */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: var(--e-global-typography-Menu-2-size);
    margin-bottom: 8px;
    color: var(--color-text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: var(--e-global-typography-paragraph-size);
    background-color: #FAFAFA;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(95, 113, 97, 0.1);
}

/* --- 13. FOOTER --- */
footer {
    background-color: #2C2420;
    color: white;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--e-global-typography-paragraph-size);
    max-width: 300px;
    margin-top: 20px;
}

.footer-title {
    color: white;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: var(--e-global-typography-Menu-1-size);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--e-global-typography-Menu-2-size);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: var(--e-global-typography-Menu-2-size);
    color: rgba(255, 255, 255, 0.4);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 960px) {

    .hero-container,
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    /* Menu burger requis en JS réel */
    .mobile-toggle {
        display: block;
    }

    .about-img::after {
        display: none;
    }

    .about-wrapper {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-list {
        justify-content: center;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .example-card {
        grid-template-columns: 1fr;
    }

    .example-img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: var(--e-global-typography-h2-size);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-list {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* =================================================================
   TOKENS ESPACEMENT SECTIONS (base + large)
   ================================================================= */

:root {
    /* Base (actuel) */
    --section-gap: 6%;
    --section-padding-x: 4%;
    --section-padding-y: 2%;

    /* Large (nouveau : plus important) */
    --section-gap-lg: 9%;
    --section-padding-x-lg: 6%;
    --section-padding-y-lg: 4%;
}

/* Ordinateur de bureau large (écran ≥ 1440px) */
@media (min-width: 1440px) {
    :root {
        /* Base */
        --section-gap: 7%;
        --section-padding-x: 4.5%;
        --section-padding-y: 2.5%;

        /* Large */
        --section-gap-lg: 10%;
        --section-padding-x-lg: 7%;
        --section-padding-y-lg: 4.5%;
    }
}

/* Portable / laptop (1025px à 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    :root {
        /* Base */
        --section-gap: 6%;
        --section-padding-x: 4%;
        --section-padding-y: 2%;

        /* Large */
        --section-gap-lg: 9%;
        --section-padding-x-lg: 6%;
        --section-padding-y-lg: 4%;
    }
}

/* Tablette paysage (769px à 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        /* Base */
        --section-gap: 5%;
        --section-padding-x: 5%;
        --section-padding-y: 3%;

        /* Large */
        --section-gap-lg: 8%;
        --section-padding-x-lg: 7%;
        --section-padding-y-lg: 5%;
    }
}

/* Tablette portrait (601px à 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    :root {
        /* Base */
        --section-gap: 6%;
        --section-padding-x: 6%;
        --section-padding-y: 4%;

        /* Large */
        --section-gap-lg: 9%;
        --section-padding-x-lg: 8%;
        --section-padding-y-lg: 6%;
    }
}

/* Mobile paysage (481px à 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    :root {
        /* Base */
        --section-gap: 8%;
        --section-padding-x: 8%;
        --section-padding-y: 5%;

        /* Large */
        --section-gap-lg: 12%;
        --section-padding-x-lg: 10%;
        --section-padding-y-lg: 8%;
    }
}

/* Mobile portrait (≤ 480px) */
@media (max-width: 480px) {
    :root {
        /* Base */
        --section-gap: 10%;
        --section-padding-x: 10%;
        --section-padding-y: 6%;

        /* Large (LG allégé comme demandé) */
        --section-gap-lg: 12%;
        --section-padding-x-lg: 12%;
        --section-padding-y-lg: 9%;
    }
}

/* =================================================================
   Classes de spacing à appliquer aux conteneurs
   ================================================================= */

/* Base */
.section-gap {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
}

.section-padding-x {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}

.section-padding-y {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* Large (nouveau) */
.section-gap-lg {
    margin-top: var(--section-gap-lg);
    margin-bottom: var(--section-gap-lg);
}

.section-padding-x-lg {
    padding-left: var(--section-padding-x-lg);
    padding-right: var(--section-padding-x-lg);
}

.section-padding-y-lg {
    padding-top: var(--section-padding-y-lg);
    padding-bottom: var(--section-padding-y-lg);
}

/* Option pratique : un seul class pour tout (version base) */
.section-space {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* Option pratique : un seul class pour tout (version large) */
.section-space-lg {
    margin-top: var(--section-gap-lg);
    margin-bottom: var(--section-gap-lg);
    padding-left: var(--section-padding-x-lg);
    padding-right: var(--section-padding-x-lg);
    padding-top: var(--section-padding-y-lg);
    padding-bottom: var(--section-padding-y-lg);
}

/* =================================================================
   Normalisation de l’ancienne classe .section
   (pour éviter les collisions avec un ancien padding fixe)
   ================================================================= */

.section {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* Zone de texte à scroll interne */
.bc-scrollbox {
    max-height: 420px;
    /* ajuste */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* inertie iOS */
}

/* Optionnel : défilement plus “propre” */
.bc-scrollbox {
    scrollbar-gutter: stable;
    /* évite les sauts de mise en page (navigateurs récents) */
}

ul>li {
    margin: 0.8em 0;
}

ol>li {
    margin: 0.8em 0;
}

ul ul {
    list-style-type: none;
    margin-block-start: 0px;
    margin-block-end: 0px;
}

html {
    scroll-behavior: auto !important;
}

.elementor-button {
    background-color: unset;
    border-radius: unset;
    border: unset;
    color: unset;
    font-size: unset;
    padding: unset;
    line-height: unset;
}

.padding-entre-element-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-entre-element-2 {
    padding-right: 10px;
}

.margin-entre-element-1 {
    margin-right: 10px;
}

.taille-h5 {
    font-size: var(--e-global-typography-h5-size);
}

.effet-img {
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}