* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #2f3a3a;
    background: #f8f6f1;
    line-height: 1.6;
}

/* =========================
   MENU PRINCIPAL
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    min-height: 86px;
    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    background: rgba(250, 248, 243, 0.94);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(82, 127, 115, 0.12);
    box-shadow: 0 4px 20px rgba(50, 70, 65, 0.05);
}


/* Logo + nom à gauche */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;

    text-decoration: none;
    color: #30423e;
}

.navbar-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.navbar-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    white-space: nowrap;
}


/* Liens du menu */

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 26px;
    flex: 1;
}

.navbar-links a {
    position: relative;

    text-decoration: none;
    color: #53615d;

    font-size: 0.93rem;
    font-weight: 500;

    padding: 10px 0;

    transition: color 0.3s ease;
}

.navbar-links a:not(.contact-link)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: #527f73;

    transition: width 0.3s ease;
}

.navbar-links a:not(.contact-link):hover {
    color: #527f73;
}

.navbar-links a:not(.contact-link):hover::after {
    width: 100%;
}


/* Bouton Contact */

.navbar-links .contact-link {
    color: white;
    background: #527f73;

    padding: 11px 20px;
    border-radius: 30px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.navbar-links .contact-link:hover {
    background: #426b61;
    transform: translateY(-2px);
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(250, 248, 243, 0.80),
            rgba(238, 245, 241, 0.92)
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(154, 198, 183, 0.18);
    top: -150px;
    right: -120px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(180, 164, 205, 0.15);
    bottom: -170px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.logo-lep {
    width: 190px;
    max-width: 55vw;
    margin-bottom: 25px;
}

.association-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.80rem;
    color: #71827e;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    font-size: clamp(2.6rem, 6vw, 5.7rem);
    line-height: 1.05;
    color: #263936;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 680px;
    margin: 0 auto 38px auto;
    font-size: 1.18rem;
    color: #56635f;
}

.hero-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #527f73;
    padding: 16px 28px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(65, 95, 87, 0.18);
}

.hero-button:hover {
    transform: translateY(-3px);
    background: #426b61;
}


/* SECTIONS */

main {
    overflow: hidden;
}

.intro-section,
.poles-section {
    padding: 110px 8%;
}

.intro-section {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

.intro-section {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}


/* Valeurs de l'association */

.association-values {
    max-width: 950px;
    margin: 70px auto 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-item {
    padding: 26px 18px;

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid rgba(82, 127, 115, 0.12);
    border-radius: 22px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.value-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    font-weight: normal;
    color: #527f73;
}

.value-item span {
    font-size: 0.92rem;
    color: #717b78;
}

.section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    color: #6f9388;
    margin-bottom: 16px;
    font-weight: bold;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: normal;
    line-height: 1.15;
    color: #2a3d39;
    margin-bottom: 35px;
}

.intro-section p {
    max-width: 780px;
    margin: 0 auto 20px auto;
    font-size: 1.08rem;
}

.intro-main {
    font-size: 1.35rem !important;
    color: #394d48;
}

blockquote {
    max-width: 850px;
    margin: 55px auto 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-style: italic;
    color: #527f73;
    line-height: 1.45;
}


/* =========================
   ACTIONS AUJOURD'HUI
========================= */

.actions-section {
    padding: 110px 8%;
    background: #f7f5f0;
    text-align: center;
}

.actions-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: normal;
    color: #30423e;
    margin: 15px 0 25px;
}

.actions-intro {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.8;
    color: #68736f;
}


/* Grande carte de l'action */

.action-card {
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 150px 1fr;

    background: white;
    border-radius: 30px;
    overflow: hidden;

    text-align: left;

    border: 1px solid rgba(82, 127, 115, 0.12);
    box-shadow: 0 18px 50px rgba(70, 90, 85, 0.09);
}


/* Numéro à gauche */

.action-number {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #527f73;
    color: white;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
}


/* Contenu */

.action-content {
    padding: 45px 65px;
}

.action-status {
    display: inline-block;

    padding: 8px 15px;
    margin-bottom: 20px;

    border-radius: 30px;

    background: #e7f0ec;
    color: #527f73;

    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.15em;
}

.action-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;

    color: #30423e;

    margin: 0 0 20px;
}

.action-content p {
    color: #68736f;
    line-height: 1.8;
    margin: 0;
}

.action-method {
    margin-top: 28px !important;

    padding-top: 22px;
    border-top: 1px solid #e2e8e5;

    color: #527f73 !important;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1rem;
}

/* PÔLES */

.poles-section {
    position: relative;
    background: #edf2ef;
    text-align: center;
    padding: 120px 8% 130px;
}

.poles-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: normal;
    color: #30423e;
    margin: 15px 0 25px;
}

.poles-intro {
    max-width: 820px;
    margin: 0 auto 65px;

    color: #68736f;
    font-size: 1.08rem;
    line-height: 1.8;
}

.poles-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pole-card {
    background: rgba(255, 255, 255, 0.90);
    padding: 40px 30px 32px;
    border-radius: 28px;
    min-height: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.pole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.16);
}

.pole-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Logo Maisons Paisibles plus grand */
.pole-card:nth-child(2) .pole-logo {
    width: 260px;
    height: 190px;
    transform: scale(1.20);
}

.pole-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;
    color: #30423e;
    margin-bottom: 16px;
}

.pole-card p {
    color: #68736f;
    max-width: 300px;
    margin-bottom: 24px;
}

.pole-link {
    margin-top: auto;

    display: inline-block;
    text-decoration: none;

    color: #527f73;
    font-weight: bold;

    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid #9eb7b0;

    transition: 0.3s ease;
}

.pole-link:hover {
    background: #527f73;
    color: white;
    border-color: #527f73;
}


/* MOBILE */

@media (max-width: 900px) {

    .poles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .poles-grid {
        grid-template-columns: 1fr;
    }

    .pole-card {
        min-height: auto;
    }

    .pole-logo {
        width: 130px;
        height: 130px;
    }
}

/* =========================
   PAGE REFUGE SECONDE SOUFFLE
========================= */

.refuge-page {
    background: #f7f8f4;
    color: #2f3a36;
}


/* HERO REFUGE */

.refuge-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(98, 142, 120, 0.13), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(225, 170, 72, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaf6 0%, #eef4ef 100%);
}

.refuge-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.refuge-main-logo {
    width: 190px;
    height: 190px;
    object-fit: contain;

    margin-bottom: 22px;
}

.refuge-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5d7f70;

    margin-bottom: 24px;
}

.refuge-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 1.08;

    color: #263b32;

    margin-bottom: 28px;
}

.refuge-hero p {
    max-width: 720px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #66736d;
}


/* INTRO */

.refuge-intro {
    max-width: 1000px;
    margin: 0 auto;

    padding: 110px 8%;

    text-align: center;
}

.refuge-intro h2,
.refuge-missions h2,
.refuge-human-animal h2,
.refuge-brigade h2,
.refuge-future h2,
.refuge-construction h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.2;

    color: #2d4338;

    margin: 15px 0 30px;
}

.refuge-lead {
    max-width: 820px;
    margin: 0 auto 25px;

    font-size: 1.35rem !important;
    line-height: 1.7;

    color: #41564c;
}

.refuge-intro p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.07rem;
    line-height: 1.8;

    color: #68736f;
}


/* MISSIONS */

.refuge-missions {
    padding: 110px 8% 120px;

    background: #e9f0ea;

    text-align: center;
}

.refuge-missions-grid {
    width: min(1150px, 100%);

    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.refuge-mission-card {
    position: relative;

    min-height: 300px;

    padding: 42px 28px;

    background: rgba(255, 255, 255, 0.88);

    border-radius: 26px;
    border: 1px solid rgba(79, 115, 97, 0.10);

    box-shadow: 0 16px 40px rgba(65, 90, 76, 0.08);

    text-align: left;

    transition: 0.3s ease;
}

.refuge-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(65, 90, 76, 0.13);
}

.refuge-mission-card span {
    display: block;

    margin-bottom: 45px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #8a9d91;
}

.refuge-mission-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;

    color: #30463a;

    margin-bottom: 18px;
}

.refuge-mission-card p {
    color: #68736f;
    line-height: 1.7;
}


/* HUMAIN + ANIMAL */

.refuge-human-animal {
    padding: 120px 8%;

    background:
        linear-gradient(
            135deg,
            #f8f5ef 0%,
            #eef3ee 100%
        );
}

.refuge-human-animal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.refuge-human-animal h2 {
    max-width: 900px;
}

.refuge-human-animal p {
    max-width: 850px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #66726c;

    margin-bottom: 18px;
}


/* BRIGADE */

.refuge-brigade {
    padding: 110px 8%;

    background: #ffffff;
}

.refuge-brigade-inner {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px 1fr;

    gap: 70px;
    align-items: center;
}

.refuge-brigade-logo {
    width: 250px;
    height: 250px;

    object-fit: contain;

    margin: 0 auto;
}

.refuge-brigade p {
    max-width: 720px;

    line-height: 1.8;
    color: #68736f;

    margin-bottom: 30px;
}


/* FUTUR REFUGE */

.refuge-future {
    padding: 120px 8%;

    background: #edf3ee;

    text-align: center;
}

.refuge-future-intro {
    max-width: 820px;

    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.8;

    color: #68736f;
}

.refuge-future-grid {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.refuge-future-item {
    min-height: 160px;

    padding: 32px 26px;

    background: rgba(255, 255, 255, 0.86);

    border-radius: 24px;
    border: 1px solid rgba(82, 127, 115, 0.10);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.refuge-future-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;

    color: #30443a;
}

.refuge-future-item span {
    color: #6f7975;

    font-size: 0.95rem;
}


/* CONSTRUCTION */

.refuge-construction {
    padding: 120px 8% 130px;

    text-align: center;

    background: #f8f6f1;
}

.refuge-construction p {
    max-width: 820px;

    margin: 0 auto;

    color: #68736f;
    font-size: 1.08rem;
    line-height: 1.85;
}


/* FOOTER */

.refuge-footer {
    padding: 70px 20px;

    background: #30463a;
    color: white;

    text-align: center;
}

.refuge-footer img {
    width: 110px;
    height: 110px;

    object-fit: contain;

    margin-bottom: 18px;
}

.refuge-footer p {
    margin-bottom: 22px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.82);
}

.refuge-footer a {
    color: white;

    text-decoration: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    padding-bottom: 3px;
}


/* RESPONSIVE REFUGE */

@media (max-width: 900px) {

    .refuge-missions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refuge-future-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refuge-brigade-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .refuge-brigade p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {

    .refuge-hero {
        padding-top: 80px;
    }

    .refuge-main-logo {
        width: 150px;
        height: 150px;
    }

    .refuge-missions-grid,
    .refuge-future-grid {
        grid-template-columns: 1fr;
    }

    .refuge-intro,
    .refuge-missions,
    .refuge-human-animal,
    .refuge-brigade,
    .refuge-future,
    .refuge-construction {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* =========================
   PAGE BRIGADE ANIMALE SOCIALE
========================= */

.brigade-page {
    background: #f8f8f5;
    color: #2f3a36;
}


/* HERO BRIGADE */

.brigade-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 18% 20%, rgba(45, 92, 130, 0.10), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(209, 118, 50, 0.10), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(88, 133, 104, 0.10), transparent 35%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.brigade-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.brigade-main-logo {
    width: 210px;
    height: 210px;

    object-fit: contain;

    margin-bottom: 24px;
}

.brigade-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5b7c72;

    margin-bottom: 24px;
}

.brigade-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.08;

    color: #2a3d37;

    margin-bottom: 28px;
}

.brigade-hero p {
    max-width: 760px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #66736d;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .brigade-hero {
        padding-top: 80px;
    }

    .brigade-main-logo {
        width: 165px;
        height: 165px;
    }
}

/* INTRO BRIGADE */

.brigade-intro {
    max-width: 1050px;
    margin: 0 auto;
    padding: 115px 8%;
    text-align: center;
}

.brigade-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;
    color: #2d4338;
    margin: 15px 0 32px;
}

.brigade-lead {
    max-width: 850px;
    margin: 0 auto 28px;

    font-size: 1.35rem;
    line-height: 1.75;
    color: #41564c;
}

.brigade-intro > p:not(.brigade-lead):not(.brigade-highlight) {
    max-width: 820px;
    margin: 0 auto 28px;

    font-size: 1.08rem;
    line-height: 1.85;
    color: #68736f;
}

.brigade-highlight {
    max-width: 900px;
    margin: 55px auto 0;

    padding: 34px 40px;

    background: #edf3ef;
    border-left: 5px solid #527f73;
    border-radius: 0 22px 22px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.75;

    color: #40564c;
}

/* MODE D'ACTION BRIGADE */

.brigade-actions {
    padding: 115px 8% 125px;
    background: #edf2ef;
    text-align: center;
}

.brigade-actions h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    color: #2d4338;
    margin: 15px 0 55px;
}

.brigade-actions-grid {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.brigade-action-card {
    min-height: 340px;
    padding: 38px 25px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 26px;
    border: 1px solid rgba(82, 127, 115, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.brigade-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.brigade-action-card > span {
    display: block;
    margin-bottom: 40px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #83958c;
}

.brigade-action-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;

    color: #30453b;

    margin-bottom: 18px;
}

.brigade-action-card p {
    color: #68736f;
    line-height: 1.75;
    font-size: 0.96rem;
}


/* Rappel de priorité */

.brigade-priority {
    max-width: 950px;
    margin: 65px auto 0;

    padding: 34px 40px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(82, 127, 115, 0.13);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.brigade-priority strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: normal;

    color: #30453b;

    margin-bottom: 10px;
}

.brigade-priority p {
    color: #68736f;
    line-height: 1.7;
    margin: 0;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .brigade-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .brigade-actions-grid {
        grid-template-columns: 1fr;
    }

    .brigade-actions {
        padding-left: 22px;
        padding-right: 22px;
    }

    .brigade-priority {
        padding: 28px 24px;
    }
}

/* =========================
   BRIGADE - DEUX REALITES
========================= */

.brigade-double-reality {
    padding: 120px 8%;
    background:
        linear-gradient(
            135deg,
            #f8f6f1 0%,
            #eef3ef 100%
        );
}

.brigade-double-reality-inner {
    max-width: 1050px;
    margin: 0 auto;
}

.brigade-double-reality h2 {
    max-width: 900px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2d4338;

    margin: 15px 0 32px;
}

.brigade-double-lead {
    max-width: 850px;

    font-size: 1.3rem !important;
    line-height: 1.75;

    color: #41564c !important;
}

.brigade-double-reality p {
    max-width: 850px;

    margin-bottom: 20px;

    color: #68736f;
    font-size: 1.08rem;
    line-height: 1.85;
}

.brigade-quote {
    max-width: 900px;

    margin: 60px 0 0;
    padding: 38px 42px;

    background: rgba(255, 255, 255, 0.78);

    border-left: 5px solid #527f73;
    border-radius: 0 24px 24px 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #46675a;
}


/* =========================
   BRIGADE + REFUGE
========================= */

.brigade-refuge-link {
    padding: 115px 8%;
    background: white;
}

.brigade-refuge-inner {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 300px 1fr;

    gap: 75px;
    align-items: center;
}

.brigade-refuge-logo {
    width: 270px;
    height: 270px;

    object-fit: contain;

    margin: 0 auto;
}

.brigade-refuge-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: normal;

    color: #2d4338;

    margin: 15px 0 28px;
}

.brigade-refuge-content p {
    max-width: 720px;

    color: #68736f;
    line-height: 1.8;

    margin-bottom: 18px;
}

.brigade-refuge-content .pole-link {
    margin-top: 15px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .brigade-refuge-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brigade-refuge-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .brigade-double-reality-inner {
        text-align: center;
    }

    .brigade-double-reality h2,
    .brigade-double-reality p,
    .brigade-quote {
        margin-left: auto;
        margin-right: auto;
    }

    .brigade-quote {
        text-align: left;
    }
}

/* =========================
   FIN DE PAGE BRIGADE
========================= */

.brigade-construction {
    padding: 120px 8% 130px;

    background: #f7f5f0;
    text-align: center;
}

.brigade-construction h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2d4338;

    margin: 15px 0 32px;
}

.brigade-construction p {
    max-width: 850px;

    margin: 0 auto 20px;

    color: #68736f;
    font-size: 1.08rem;
    line-height: 1.85;
}

.brigade-final-quote {
    max-width: 900px;

    margin: 60px auto 45px;
    padding: 38px 42px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(82, 127, 115, 0.12);

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.07);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #46675a;
}

.brigade-back-button {
    display: inline-block;

    padding: 14px 25px;

    background: #527f73;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.brigade-back-button:hover {
    background: #426b61;
    transform: translateY(-2px);
}

/* =========================
   PAGE MAISONS PAISIBLES
========================= */

.maisons-page {
    background: #f8f7f2;
    color: #2f3a36;
}


/* HERO MAISONS */

.maisons-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 18% 20%, rgba(106, 145, 112, 0.12), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(205, 168, 111, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaf6 0%, #eef3ed 100%);
}

.maisons-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.maisons-main-logo {
    width: 250px;
    height: 210px;

    object-fit: contain;

    margin-bottom: 22px;

    transform: scale(1.15);
}

.maisons-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #64806c;

    margin-bottom: 24px;
}

.maisons-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 1.08;

    color: #304238;

    margin-bottom: 28px;
}

.maisons-hero p {
    max-width: 780px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #68736f;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .maisons-hero {
        padding-top: 80px;
    }

    .maisons-main-logo {
        width: 190px;
        height: 170px;
    }
}

/* =========================
   INTRO MAISONS PAISIBLES
========================= */

.maisons-intro {
    max-width: 1050px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.maisons-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304238;

    margin: 15px 0 32px;
}

.maisons-lead {
    max-width: 820px;
    margin: 0 auto 28px;

    font-size: 1.35rem;
    line-height: 1.75;

    color: #41564c;
}

.maisons-intro > p:not(.maisons-lead) {
    max-width: 820px;
    margin: 0 auto 24px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.maisons-quote {
    max-width: 900px;

    margin: 60px auto 0;
    padding: 38px 42px;

    background: #edf3ee;

    border-left: 5px solid #64806c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #46675a;
}

/* =========================
   PUBLIC MAISONS PAISIBLES
========================= */

.maisons-public {
    padding: 115px 8% 125px;

    background: #edf2ed;
    text-align: center;
}

.maisons-public h2 {
    max-width: 950px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304238;
}

.maisons-public-intro {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}

.maisons-public-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.maisons-public-card {
    min-height: 320px;
    padding: 38px 26px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 26px;
    border: 1px solid rgba(100, 128, 108, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.maisons-public-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.maisons-public-card > span {
    display: block;
    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #87978d;
}

.maisons-public-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #304238;

    margin-bottom: 18px;
}

.maisons-public-card p {
    color: #68736f;
    line-height: 1.75;
}

.maisons-admission-note {
    max-width: 950px;
    margin: 65px auto 0;

    padding: 34px 40px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(100, 128, 108, 0.12);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.maisons-admission-note strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: normal;

    color: #304238;

    margin-bottom: 10px;
}

.maisons-admission-note p {
    margin: 0;

    color: #68736f;
    line-height: 1.75;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .maisons-public-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .maisons-public {
        padding-left: 22px;
        padding-right: 22px;
    }

    .maisons-public-grid {
        grid-template-columns: 1fr;
    }

    .maisons-admission-note {
        padding: 28px 24px;
    }
}

/* =========================
   PARCOURS MAISONS PAISIBLES
========================= */

.maisons-parcours {
    padding: 120px 8% 130px;
    background: #f8f6f1;
    text-align: center;
}

.maisons-parcours h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    color: #304238;
    margin: 15px 0 28px;
}

.maisons-parcours-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    color: #68736f;
    font-size: 1.08rem;
    line-height: 1.85;
}

.maisons-parcours-grid {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.maisons-parcours-card {
    min-height: 350px;
    padding: 38px 25px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(100, 128, 108, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.maisons-parcours-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.maisons-parcours-card > span {
    display: block;
    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #87978d;
}

.maisons-parcours-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #304238;

    margin-bottom: 18px;
}

.maisons-parcours-card p {
    color: #68736f;
    line-height: 1.75;
    font-size: 0.96rem;
}

.maisons-parcours-phrase {
    max-width: 900px;
    margin: 65px auto 0;

    padding: 35px 40px;

    background: #edf3ee;

    border-radius: 24px;
    border-left: 5px solid #64806c;
}

.maisons-parcours-phrase strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: normal;

    color: #304238;

    margin-bottom: 10px;
}

.maisons-parcours-phrase p {
    margin: 0;

    color: #68736f;
    line-height: 1.75;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .maisons-parcours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .maisons-parcours {
        padding-left: 22px;
        padding-right: 22px;
    }

    .maisons-parcours-grid {
        grid-template-columns: 1fr;
    }

    .maisons-parcours-phrase {
        padding: 28px 24px;
    }
}

/* =========================
   VIE EN MAISON PAISIBLE
========================= */

.maisons-vie {
    padding: 120px 8% 130px;
    background: #edf2ed;
    text-align: center;
}

.maisons-vie h2 {
    max-width: 950px;
    margin: 15px auto 60px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304238;
}

.maisons-vie-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.maisons-vie-card {
    min-height: 310px;
    padding: 38px 28px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 26px;
    border: 1px solid rgba(100, 128, 108, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.maisons-vie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.maisons-vie-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #87978d;
}

.maisons-vie-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #304238;

    margin-bottom: 18px;
}

.maisons-vie-card p {
    color: #68736f;
    line-height: 1.75;
}

.maisons-vie-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: white;

    border-left: 5px solid #64806c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #46675a;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .maisons-vie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .maisons-vie {
        padding-left: 22px;
        padding-right: 22px;
    }

    .maisons-vie-grid {
        grid-template-columns: 1fr;
    }

    .maisons-vie-quote {
        padding: 28px 24px;
    }
}

/* =========================
   DEMAIN - MAISONS PAISIBLES
========================= */

.maisons-demain {
    padding: 120px 8% 130px;
    background: #f8f6f1;
    text-align: center;
}

.maisons-demain h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304238;

    margin: 15px 0 30px;
}

.maisons-demain-lead {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.3rem;
    line-height: 1.75;

    color: #41564c;
}

.maisons-demain > p:not(.maisons-demain-lead) {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.maisons-demain-grid {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.maisons-demain-item {
    min-height: 160px;
    padding: 32px 28px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(100, 128, 108, 0.10);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 8px;
}

.maisons-demain-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;

    color: #304238;
}

.maisons-demain-item span {
    color: #68736f;
    line-height: 1.6;
}

.maisons-final-quote {
    max-width: 900px;

    margin: 65px auto 45px;
    padding: 38px 42px;

    background: #edf3ee;

    border-left: 5px solid #64806c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #46675a;
}

.maisons-back-button {
    display: inline-block;

    padding: 14px 25px;

    background: #64806c;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.maisons-back-button:hover {
    background: #526d5b;
    transform: translateY(-2px);
}

@media (max-width: 700px) {

    .maisons-demain-grid {
        grid-template-columns: 1fr;
    }

    .maisons-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .maisons-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE PÔLE URGENCE
========================= */

.urgence-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO URGENCE */

.urgence-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 18% 20%, rgba(190, 76, 76, 0.10), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(225, 164, 74, 0.10), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(82, 127, 115, 0.09), transparent 35%),
        linear-gradient(180deg, #fbfaf7 0%, #f2f3ee 100%);
}

.urgence-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.urgence-main-logo {
    width: 210px;
    height: 210px;
    object-fit: contain;
    margin-bottom: 24px;
}

.urgence-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #8a675e;

    margin-bottom: 24px;
}

.urgence-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 1.08;

    color: #3e3734;

    margin-bottom: 28px;
}

.urgence-hero p {
    max-width: 780px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #6b6f6c;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .urgence-hero {
        padding-top: 80px;
    }

    .urgence-main-logo {
        width: 165px;
        height: 165px;
    }
}

/* =========================
   INTRO PÔLE URGENCE
========================= */

.urgence-intro {
    max-width: 1050px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.urgence-intro h2 {
    max-width: 950px;
    margin: 15px auto 32px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #3e3734;
}

.urgence-lead {
    max-width: 850px;
    margin: 0 auto 28px;

    font-size: 1.35rem;
    line-height: 1.75;

    color: #4d5551;
}

.urgence-intro > p:not(.urgence-lead) {
    max-width: 850px;
    margin: 0 auto 24px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #6b6f6c;
}

.urgence-quote {
    max-width: 900px;

    margin: 60px auto 0;
    padding: 38px 42px;

    background: #f4eeee;

    border-left: 5px solid #a66b63;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #72534e;
}

/* =========================
   PARCOURS PÔLE URGENCE
========================= */

.urgence-parcours {
    padding: 120px 8% 130px;
    background: #f1eeee;
    text-align: center;
}

.urgence-parcours h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #3e3734;

    margin: 15px 0 28px;
}

.urgence-parcours-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    color: #6b6f6c;
    font-size: 1.08rem;
    line-height: 1.85;
}


/* 5 ÉTAPES */

.urgence-parcours-grid {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.urgence-parcours-card {
    min-height: 340px;
    padding: 38px 25px;

    background: rgba(255, 255, 255, 0.94);

    border-radius: 26px;
    border: 1px solid rgba(166, 107, 99, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(80, 70, 65, 0.07);

    transition: 0.3s ease;
}

.urgence-parcours-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(80, 70, 65, 0.12);
}

.urgence-parcours-card > span {
    display: block;

    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #a18b85;
}

.urgence-parcours-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #4c3d39;

    margin-bottom: 18px;
}

.urgence-parcours-card p {
    color: #6b6f6c;
    line-height: 1.75;
    font-size: 0.96rem;
}


/* ORIENTATION */

.urgence-orientation {
    width: min(1050px, 100%);

    margin: 80px auto 0;
    padding-top: 60px;

    border-top: 1px solid rgba(100, 90, 85, 0.15);
}

.urgence-orientation-label {
    display: block;

    margin-bottom: 15px;

    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.18em;

    color: #a66b63;
}

.urgence-orientation h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: normal;

    color: #3e3734;

    margin-bottom: 45px;
}

.urgence-orientation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.urgence-orientation-card {
    min-height: 270px;
    padding: 38px 35px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(166, 107, 99, 0.11);

    text-align: left;
    text-decoration: none;

    box-shadow: 0 15px 40px rgba(80, 70, 65, 0.07);

    transition: 0.3s ease;
}

a.urgence-orientation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(80, 70, 65, 0.12);
}

.urgence-arrow {
    display: block;

    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;

    color: #a66b63;
}

.urgence-orientation-card strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;

    color: #3e3734;

    margin-bottom: 15px;
}

.urgence-orientation-card p {
    color: #6b6f6c;
    line-height: 1.75;

    margin-bottom: 22px;
}

.urgence-discover {
    color: #a66b63;

    font-size: 0.88rem;
    font-weight: bold;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .urgence-parcours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .urgence-parcours {
        padding-left: 22px;
        padding-right: 22px;
    }

    .urgence-parcours-grid,
    .urgence-orientation-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   APRÈS L'URGENCE
========================= */

.urgence-apres {
    padding: 120px 8%;
    background: #f8f6f1;
}

.urgence-apres-inner {
    max-width: 1050px;
    margin: 0 auto;
}

.urgence-apres h2 {
    max-width: 950px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #3e3734;

    margin: 15px 0 35px;
}

.urgence-apres-lead {
    max-width: 850px;

    font-size: 1.3rem !important;
    line-height: 1.75;

    color: #4d5551 !important;
}

.urgence-apres p {
    max-width: 850px;

    margin-bottom: 20px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #6b6f6c;
}

.urgence-apres-quote {
    max-width: 900px;

    margin: 60px 0 0;
    padding: 38px 42px;

    background: #f4eeee;

    border-left: 5px solid #a66b63;
    border-radius: 0 24px 24px 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #72534e;
}

@media (max-width: 700px) {

    .urgence-apres {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* =========================
   DEMAIN - PÔLE URGENCE
========================= */

.urgence-demain {
    padding: 120px 8% 130px;
    background: #f1eeee;
    text-align: center;
}

.urgence-demain h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #3e3734;

    margin: 15px 0 30px;
}

.urgence-demain-lead {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.3rem;
    line-height: 1.75;

    color: #4d5551;
}

.urgence-demain > p:not(.urgence-demain-lead) {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #6b6f6c;
}


/* ÉLÉMENTS DU FUTUR PÔLE */

.urgence-demain-grid {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.urgence-demain-item {
    min-height: 165px;
    padding: 32px 28px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(166, 107, 99, 0.10);

    box-shadow: 0 14px 35px rgba(80, 70, 65, 0.07);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 8px;
}

.urgence-demain-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;

    color: #3e3734;
}

.urgence-demain-item span {
    color: #6b6f6c;
    line-height: 1.65;
}


/* LIEN MAISONS PAISIBLES */

.urgence-maisons-link {
    max-width: 900px;

    margin: 75px auto 0;
    padding: 45px 40px;

    background: #f8f6f1;

    border-radius: 28px;
    border: 1px solid rgba(100, 128, 108, 0.12);
}

.urgence-next-label {
    display: block;

    margin-bottom: 12px;

    font-size: 0.74rem;
    font-weight: bold;
    letter-spacing: 0.18em;

    color: #64806c;
}

.urgence-maisons-link h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: normal;

    color: #304238;

    margin-bottom: 18px;
}

.urgence-maisons-link p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #68736f;
    line-height: 1.8;
}

.urgence-maisons-button {
    display: inline-block;

    padding: 13px 24px;

    background: #64806c;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.urgence-maisons-button:hover {
    background: #526d5b;
    transform: translateY(-2px);
}


/* CITATION FINALE */

.urgence-final-quote {
    max-width: 900px;

    margin: 65px auto 45px;
    padding: 38px 42px;

    background: white;

    border-left: 5px solid #a66b63;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #72534e;
}


/* RETOUR LEP */

.urgence-back-button {
    display: inline-block;

    padding: 14px 25px;

    background: #a66b63;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.urgence-back-button:hover {
    background: #8e5952;
    transform: translateY(-2px);
}


@media (max-width: 700px) {

    .urgence-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .urgence-demain-grid {
        grid-template-columns: 1fr;
    }

    .urgence-maisons-link,
    .urgence-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE VILLAGE DU LIBRE ESPRIT
========================= */

.village-page {
    background: #f7f8f2;
    color: #2f3a36;
}


/* HERO VILLAGE */

.village-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(104, 151, 103, 0.14), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(223, 185, 86, 0.14), transparent 28%),
        radial-gradient(circle at 50% 92%, rgba(117, 165, 146, 0.10), transparent 35%),
        linear-gradient(180deg, #fbfaf4 0%, #edf4e8 100%);
}

.village-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.village-main-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 24px;
}

.village-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #6f8c64;

    margin-bottom: 24px;
}

.village-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.08;

    color: #304433;

    margin-bottom: 28px;
}

.village-hero p {
    max-width: 820px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #68736f;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .village-hero {
        padding-top: 80px;
    }

    .village-main-logo {
        width: 170px;
        height: 170px;
    }
}

/* =========================
   INTRO VILLAGE DU LIBRE ESPRIT
========================= */

.village-intro {
    max-width: 1100px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.village-intro h2 {
    max-width: 950px;
    margin: 15px auto 32px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304433;
}

.village-lead {
    max-width: 850px;
    margin: 0 auto 28px;

    font-size: 1.35rem;
    line-height: 1.75;

    color: #445848;
}

.village-intro > p:not(.village-lead) {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.village-quote {
    max-width: 900px;

    margin: 60px auto 0;
    padding: 38px 42px;

    background: #edf4e8;

    border-left: 5px solid #7a986c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #54704d;
}

/* =========================
   VILLAGE OUVERT À TOUS
========================= */

.village-ouvert {
    padding: 100px 6%;
    background: #eef3ec;
    text-align: center;
}

.village-ouvert h2 {
    margin: 15px auto 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: normal;
    color: #304433;
}

.village-ouvert-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #68736f;
}

.village-publics {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.village-public-card {
    min-height: 300px;
    padding: 42px 32px;
    background: #ffffff;
    border-radius: 32px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(70, 90, 85, 0.08);
}

.village-public-card span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    color: #7b927d;
}

.village-public-card h3 {
    margin: 55px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;
    color: #304433;
}

.village-public-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #68736f;
}

.village-mixite {
    max-width: 850px;
    margin: 65px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: #526c57;
}

@media (max-width: 950px) {
    .village-publics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .village-publics {
        grid-template-columns: 1fr;
    }
}

/* =========================
   EXPÉRIENCES DU VILLAGE
========================= */

.village-experiences {
    padding: 115px 8% 125px;
    background: #f8f7f1;
    text-align: center;
}

.village-experiences h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304433;
}

.village-experiences-intro {
    max-width: 820px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.85;
    color: #68736f;
}

.village-experiences-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.village-experience-card {
    min-height: 310px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(111, 140, 100, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.village-experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.village-experience-card > span {
    display: block;
    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #8b9d83;
}

.village-experience-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;

    color: #304433;

    margin-bottom: 18px;
}

.village-experience-card p {
    color: #68736f;
    line-height: 1.75;
}

.village-experiences-quote {
    max-width: 850px;

    margin: 65px auto 0;
    padding: 36px 40px;

    background: #edf4e8;

    border-left: 5px solid #7a986c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #54704d;
}

@media (max-width: 950px) {

    .village-experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .village-experiences {
        padding-left: 22px;
        padding-right: 22px;
    }

    .village-experiences-grid {
        grid-template-columns: 1fr;
    }

    .village-experiences-quote {
        padding: 28px 24px;
    }
}

/* =========================
   ATELIER DES POSSIBLES
   DANS LE VILLAGE
========================= */

.village-atelier {
    padding: 120px 8%;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(223, 185, 86, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #eef4e9 0%,
            #f8f6ef 100%
        );
}

.village-atelier-inner {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 330px 1fr;

    gap: 80px;
    align-items: center;
}


/* LOGO */

.village-atelier-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.village-atelier-logo {
    width: 290px;
    height: 290px;

    object-fit: contain;
}


/* CONTENU */

.village-atelier-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304433;

    margin: 15px 0 28px;
}

.village-atelier-content > p {
    max-width: 720px;

    color: #68736f;
    font-size: 1.05rem;
    line-height: 1.8;

    margin-bottom: 20px;
}

.village-atelier-lead {
    font-size: 1.2rem !important;
    color: #445848 !important;
}


/* SA'CARTONNN */

.village-sacartonnn {
    max-width: 720px;

    margin: 38px 0 0;
    padding: 30px 32px;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 24px;
    border: 1px solid rgba(111, 140, 100, 0.12);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.village-sacartonnn-label {
    display: block;

    margin-bottom: 10px;

    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.17em;

    color: #8a9565;
}

.village-sacartonnn h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;

    color: #304433;

    margin-bottom: 12px;
}

.village-sacartonnn p {
    margin: 0;

    color: #68736f;
    line-height: 1.75;
}


/* CITATION */

.village-atelier-quote {
    max-width: 720px;

    margin: 35px 0 30px;
    padding: 30px 34px;

    border-left: 5px solid #7a986c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;

    color: #54704d;
}


/* BOUTON */

.village-atelier-button {
    display: inline-block;

    padding: 14px 25px;

    background: #6f8c64;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.village-atelier-button:hover {
    background: #5d7854;
    transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .village-atelier-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .village-atelier-content {
        text-align: center;
    }

    .village-atelier-content > p,
    .village-sacartonnn,
    .village-atelier-quote {
        margin-left: auto;
        margin-right: auto;
    }

    .village-sacartonnn,
    .village-atelier-quote {
        text-align: left;
    }
}

@media (max-width: 600px) {

    .village-atelier {
        padding-left: 22px;
        padding-right: 22px;
    }

    .village-atelier-logo {
        width: 220px;
        height: 220px;
    }
}

/* =========================
   LE FUTUR VILLAGE
========================= */

.village-lieu {
    padding: 120px 8% 130px;
    background: #edf3e9;
    text-align: center;
}

.village-lieu h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304433;
}

.village-lieu-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}

.village-lieu-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.village-lieu-card {
    min-height: 300px;
    padding: 38px 28px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 26px;
    border: 1px solid rgba(111, 140, 100, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.village-lieu-card:nth-child(1),
.village-lieu-card:nth-child(2),
.village-lieu-card:nth-child(3) {
    grid-column: span 2;
}

.village-lieu-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.village-lieu-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.village-lieu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.village-lieu-card > span {
    display: block;
    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #8b9d83;
}

.village-lieu-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;

    color: #304433;

    margin-bottom: 18px;
}

.village-lieu-card p {
    color: #68736f;
    line-height: 1.75;
}

.village-lieu-quote {
    max-width: 850px;

    margin: 65px auto 0;
    padding: 36px 40px;

    background: white;

    border-left: 5px solid #7a986c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #54704d;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .village-lieu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .village-lieu-card:nth-child(1),
    .village-lieu-card:nth-child(2),
    .village-lieu-card:nth-child(3),
    .village-lieu-card:nth-child(4),
    .village-lieu-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {

    .village-lieu {
        padding-left: 22px;
        padding-right: 22px;
    }

    .village-lieu-grid {
        grid-template-columns: 1fr;
    }

    .village-lieu-quote {
        padding: 28px 24px;
    }
}

/* =========================
   DEMAIN - VILLAGE DU LIBRE ESPRIT
========================= */

.village-demain {
    padding: 120px 8% 130px;
    background: #f8f7f1;
    text-align: center;
}

.village-demain h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #304433;

    margin: 15px 0 30px;
}

.village-demain-lead {
    max-width: 880px;
    margin: 0 auto 65px;

    font-size: 1.2rem;
    line-height: 1.8;

    color: #58685b;
}

.village-demain-grid {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.village-demain-item {
    min-height: 180px;
    padding: 32px 28px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(111, 140, 100, 0.10);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 10px;
}

.village-demain-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: normal;

    color: #304433;
}

.village-demain-item span {
    color: #68736f;
    line-height: 1.7;
}

.village-final-quote {
    max-width: 900px;

    margin: 65px auto 45px;
    padding: 38px 42px;

    background: #edf4e8;

    border-left: 5px solid #7a986c;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #54704d;
}

.village-back-button {
    display: inline-block;

    padding: 14px 25px;

    background: #6f8c64;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.village-back-button:hover {
    background: #5d7854;
    transform: translateY(-2px);
}

@media (max-width: 950px) {

    .village-demain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .village-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .village-demain-grid {
        grid-template-columns: 1fr;
    }

    .village-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE ATELIER DES POSSIBLES
========================= */

.atelier-page {
    background: #faf7f5;
    color: #2f3a36;
}


/* HERO ATELIER */

.atelier-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(180, 130, 170, 0.13), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(224, 170, 89, 0.13), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(107, 154, 137, 0.10), transparent 35%),
        linear-gradient(180deg, #fbf8f6 0%, #f3eeef 100%);
}

.atelier-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.atelier-main-logo {
    width: 220px;
    height: 220px;

    object-fit: contain;

    margin-bottom: 24px;
}

.atelier-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #8b6f85;

    margin-bottom: 24px;
}

.atelier-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 1.08;

    color: #41363e;

    margin-bottom: 28px;
}

.atelier-hero p {
    max-width: 820px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.75;

    color: #6d676b;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .atelier-hero {
        padding-top: 80px;
    }

    .atelier-main-logo {
        width: 170px;
        height: 170px;
    }
}

/* =========================
   INTRO ATELIER DES POSSIBLES
========================= */

.atelier-intro {
    max-width: 1100px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.atelier-intro h2 {
    max-width: 950px;
    margin: 15px auto 32px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #41363e;
}

.atelier-lead {
    max-width: 850px;
    margin: 0 auto 28px;

    font-size: 1.35rem;
    line-height: 1.75;

    color: #554a51;
}

.atelier-intro > p:not(.atelier-lead) {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #6d676b;
}

.atelier-quote {
    max-width: 900px;

    margin: 60px auto 0;
    padding: 38px 42px;

    background: #f3edef;

    border-left: 5px solid #9b7b95;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;

    color: #705d6b;
}

/* =========================
   SA'CARTONNN
========================= */

.atelier-sacartonnn {
    padding: 120px 8% 130px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(224, 170, 89, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f5efeb 0%,
            #faf7f3 100%
        );

    text-align: center;
}

.atelier-sacartonnn-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.atelier-sacartonnn h2 {
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: normal;
    line-height: 1.1;

    color: #41363e;
}

.atelier-sacartonnn h2 span {
    display: block;

    margin-top: 10px;

    font-size: 0.48em;
    color: #8b6f85;
}

.sacartonnn-lead {
    max-width: 820px;
    margin: 0 auto 25px;

    font-size: 1.3rem !important;
    line-height: 1.75;

    color: #554a51 !important;
}

.atelier-sacartonnn-inner > p:not(.sacartonnn-lead) {
    max-width: 820px;
    margin: 0 auto 22px;

    color: #6d676b;
    font-size: 1.08rem;
    line-height: 1.85;
}


/* ÉTAPES */

.sacartonnn-process {
    width: min(1050px, 100%);

    margin: 65px auto 0;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.sacartonnn-process div {
    min-height: 145px;

    padding: 25px 15px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 12px 30px rgba(80, 65, 75, 0.07);
}

.sacartonnn-process span {
    display: block;

    margin-bottom: 15px;

    font-family: Georgia, "Times New Roman", serif;
    color: #a18a99;
}

.sacartonnn-process strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: normal;

    color: #41363e;
}


/* PHRASE SA'CARTONNN */

.sacartonnn-quote {
    max-width: 700px;

    margin: 65px auto 0;
    padding: 35px 40px;

    background: white;

    border-radius: 26px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-style: italic;

    color: #8b6f85;

    box-shadow: 0 15px 40px rgba(80, 65, 75, 0.08);
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .sacartonnn-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .atelier-sacartonnn {
        padding-left: 22px;
        padding-right: 22px;
    }

    .sacartonnn-process {
        grid-template-columns: 1fr;
    }

    .sacartonnn-quote {
        padding: 28px 24px;
    }
}

/* =========================
   UN ATELIER, PLUSIEURS POSSIBLES
========================= */

.atelier-possibles {
    padding: 120px 8% 130px;
    background: #f2edef;
    text-align: center;
}

.atelier-possibles h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #41363e;
}

.atelier-possibles-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #6d676b;
}

.atelier-possibles-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.atelier-possible-card {
    min-height: 310px;
    padding: 38px 28px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 26px;
    border: 1px solid rgba(155, 123, 149, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(80, 65, 75, 0.08);

    transition: 0.3s ease;
}

.atelier-possible-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(80, 65, 75, 0.13);
}

.atelier-possible-card > span {
    display: block;
    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #a18a99;
}

.atelier-possible-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #41363e;

    margin-bottom: 18px;
}

.atelier-possible-card p {
    color: #6d676b;
    line-height: 1.75;
}

.atelier-possibles-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: white;

    border-left: 5px solid #9b7b95;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #705d6b;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .atelier-possibles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .atelier-possibles {
        padding-left: 22px;
        padding-right: 22px;
    }

    .atelier-possibles-grid {
        grid-template-columns: 1fr;
    }

    .atelier-possibles-quote {
        padding: 28px 24px;
    }
}

/* =========================
   DEMAIN - ATELIER DES POSSIBLES
========================= */

.atelier-demain {
    padding: 120px 8% 130px;
    background: #faf7f5;
    text-align: center;
}

.atelier-demain h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #41363e;

    margin: 15px 0 30px;
}

.atelier-demain-lead {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.25rem;
    line-height: 1.8;

    color: #554a51;
}

.atelier-demain > p:not(.atelier-demain-lead) {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #6d676b;
}

.atelier-demain-grid {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.atelier-demain-item {
    min-height: 170px;
    padding: 32px 28px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(155, 123, 149, 0.10);

    box-shadow: 0 14px 35px rgba(80, 65, 75, 0.07);

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 8px;
}

.atelier-demain-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;

    color: #41363e;
}

.atelier-demain-item span {
    color: #6d676b;
    line-height: 1.7;
}

.atelier-final-quote {
    max-width: 900px;

    margin: 65px auto 45px;
    padding: 38px 42px;

    background: #f3edef;

    border-left: 5px solid #9b7b95;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #705d6b;
}

.atelier-village-button,
.atelier-back-button {
    display: inline-block;

    margin: 5px 8px;
    padding: 14px 25px;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.atelier-village-button {
    background: #9b7b95;
    color: white;
}

.atelier-village-button:hover {
    background: #84667f;
    transform: translateY(-2px);
}

.atelier-back-button {
    background: transparent;
    color: #705d6b;

    border: 1px solid #bca9b8;
}

.atelier-back-button:hover {
    background: white;
    transform: translateY(-2px);
}

@media (max-width: 700px) {

    .atelier-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .atelier-demain-grid {
        grid-template-columns: 1fr;
    }

    .atelier-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE PARTENAIRES
========================= */

.partenaires-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO PARTENAIRES */

.partenaires-hero {
    min-height: 88vh;
    padding: 120px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(88, 128, 117, 0.12), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(190, 160, 110, 0.11), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(143, 120, 160, 0.08), transparent 35%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.partenaires-hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.partenaires-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;

    margin-bottom: 24px;
}

.partenaires-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 1.08;

    color: #2f403a;

    margin-bottom: 30px;
}

.partenaires-hero-lead {
    max-width: 820px;
    margin: 0 auto 22px;

    font-size: 1.3rem !important;
    line-height: 1.8;

    color: #465b54 !important;
}

.partenaires-hero-content > p:not(.partenaires-hero-lead) {
    max-width: 820px;
    margin: 0 auto 35px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.partenaires-hero-quote {
    max-width: 820px;

    margin: 55px auto 0;
    padding: 32px 38px;

    background: rgba(255, 255, 255, 0.72);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.65rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .partenaires-hero {
        padding-top: 90px;
    }

    .partenaires-hero-quote {
        padding: 28px 24px;
    }
}

/* =========================
   POURQUOI DEVENIR PARTENAIRE
========================= */

.partenaires-pourquoi {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.partenaires-pourquoi h2 {
    max-width: 950px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.partenaires-pourquoi-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}


/* CARTES */

.partenaires-pourquoi-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.partenaire-raison-card {
    min-height: 300px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.07);

    transition: 0.3s ease;
}

.partenaire-raison-card:nth-child(1),
.partenaire-raison-card:nth-child(2),
.partenaire-raison-card:nth-child(3) {
    grid-column: span 2;
}

.partenaire-raison-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.partenaire-raison-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.partenaire-raison-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.12);
}

.partenaire-raison-card > span {
    display: block;

    margin-bottom: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.partenaire-raison-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #2f403a;
}

.partenaire-raison-card p {
    color: #68736f;
    line-height: 1.75;
}


/* CITATION */

.partenaires-pourquoi-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: #edf3ef;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .partenaires-pourquoi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partenaire-raison-card:nth-child(1),
    .partenaire-raison-card:nth-child(2),
    .partenaire-raison-card:nth-child(3),
    .partenaire-raison-card:nth-child(4),
    .partenaire-raison-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {

    .partenaires-pourquoi {
        padding-left: 22px;
        padding-right: 22px;
    }

    .partenaires-pourquoi-grid {
        grid-template-columns: 1fr;
    }

    .partenaires-pourquoi-quote {
        padding: 28px 24px;
    }
}

/* =========================
   FORMES DE PARTENARIAT
========================= */

.partenaires-formes {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.partenaires-formes h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.partenaires-formes-intro {
    max-width: 820px;
    margin: 0 auto 65px;

    font-size: 1.12rem;
    line-height: 1.85;

    color: #68736f;
}

.partenaires-formes-grid {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.partenariat-card {
    min-height: 310px;
    padding: 38px 28px;

    background: rgba(255, 255, 255, 0.94);

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.partenariat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.partenariat-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.partenariat-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #2f403a;
}

.partenariat-card p {
    color: #68736f;
    line-height: 1.75;
}

.partenaires-autre {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 34px 40px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(95, 128, 117, 0.12);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.partenaires-autre strong {
    display: block;

    margin-bottom: 10px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: normal;

    color: #2f403a;
}

.partenaires-autre p {
    margin: 0;

    color: #68736f;
    line-height: 1.75;
}

@media (max-width: 950px) {

    .partenaires-formes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .partenaires-formes {
        padding-left: 22px;
        padding-right: 22px;
    }

    .partenaires-formes-grid {
        grid-template-columns: 1fr;
    }

    .partenaires-autre {
        padding: 28px 24px;
    }
}

/* =========================
   PROJETS À SOUTENIR
========================= */

.partenaires-projets {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.partenaires-projets h2 {
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.partenaires-projets-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.12rem;
    line-height: 1.85;

    color: #68736f;
}

.partenaires-projets-grid {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partenaire-projet-card {
    min-height: 420px;
    padding: 38px 30px;

    background: white;

    border-radius: 28px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.3s ease;
}

.partenaire-projet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.partenaire-projet-card img {
    width: 140px;
    height: 140px;

    object-fit: contain;

    margin-bottom: 20px;
}

.partenaire-projet-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #2f403a;

    margin-bottom: 16px;
}

.partenaire-projet-card p {
    color: #68736f;
    line-height: 1.75;

    margin-bottom: 25px;
}

.partenaire-projet-card a {
    margin-top: auto;

    text-decoration: none;
    font-weight: bold;

    color: #5f8075;

    padding: 10px 18px;

    border: 1px solid #a8bdb6;
    border-radius: 25px;

    transition: 0.3s ease;
}

.partenaire-projet-card a:hover {
    background: #5f8075;
    color: white;
}


/* ACTION ACTUELLE */

.partenaire-projet-actif {
    justify-content: center;

    background: #edf3ef;

    border: 1px solid rgba(95, 128, 117, 0.18);
}

.partenaire-projet-status {
    display: inline-block;

    margin-bottom: 25px;
    padding: 8px 15px;

    background: white;

    border-radius: 30px;

    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 0.15em;

    color: #5f8075;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .partenaires-projets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .partenaires-projets {
        padding-left: 22px;
        padding-right: 22px;
    }

    .partenaires-projets-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PROPOSER UN PARTENARIAT
========================= */

.partenaires-contact {
    padding: 120px 8% 130px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(95, 128, 117, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #edf3ef 0%,
            #f8f7f3 100%
        );

    text-align: center;
}

.partenaires-contact h2 {
    max-width: 950px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.partenaires-contact-lead {
    max-width: 820px;
    margin: 0 auto 22px;

    font-size: 1.3rem;
    line-height: 1.8;

    color: #465b54;
}

.partenaires-contact > p:not(.partenaires-contact-lead) {
    max-width: 850px;
    margin: 0 auto 55px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}


/* BLOC CONTACT */

.partenaires-contact-box {
    max-width: 900px;
    margin: 0 auto;

    padding: 48px 45px;

    background: white;

    border-radius: 28px;
    border: 1px solid rgba(95, 128, 117, 0.12);

    box-shadow: 0 18px 45px rgba(70, 90, 85, 0.08);
}

.partenaires-contact-box strong {
    display: block;

    margin-bottom: 16px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: normal;

    color: #2f403a;
}

.partenaires-contact-box p {
    max-width: 700px;
    margin: 0 auto 30px;

    color: #68736f;
    line-height: 1.8;
}

.partenaires-contact-button {
    display: inline-block;

    padding: 14px 27px;

    background: #5f8075;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.partenaires-contact-button:hover {
    background: #4d6d63;
    transform: translateY(-2px);
}


/* CITATION FINALE */

.partenaires-final-quote {
    max-width: 900px;

    margin: 65px auto 45px;
    padding: 38px 42px;

    background: rgba(255, 255, 255, 0.78);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RETOUR */

.partenaires-back-button {
    display: inline-block;

    padding: 13px 23px;

    border: 1px solid #9eb5ad;
    border-radius: 30px;

    color: #526b62;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.partenaires-back-button:hover {
    background: white;
    transform: translateY(-2px);
}


@media (max-width: 600px) {

    .partenaires-contact {
        padding-left: 22px;
        padding-right: 22px;
    }

    .partenaires-contact-box,
    .partenaires-final-quote {
        padding: 30px 24px;
    }
}

/* =========================
   PAGE CONTACT
========================= */

.contact-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO CONTACT */

.contact-hero {
    min-height: 78vh;
    padding: 120px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(95, 128, 117, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(187, 157, 112, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.contact-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.contact-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;

    margin-bottom: 24px;
}

.contact-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.08;

    color: #2f403a;

    margin-bottom: 30px;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.8;

    color: #68736f;
}


/* MOTIFS DE CONTACT */

.contact-motifs {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.contact-motifs h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.contact-motifs-intro {
    max-width: 820px;
    margin: 0 auto 65px;

    font-size: 1.12rem;
    line-height: 1.85;

    color: #68736f;
}

.contact-motifs-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-motif-card {
    min-height: 300px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.contact-motif-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.contact-motif-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.contact-motif-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;
    line-height: 1.3;

    color: #2f403a;
}

.contact-motif-card p {
    color: #68736f;
    line-height: 1.75;
}


@media (max-width: 950px) {

    .contact-motifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .contact-motifs {
        padding-left: 22px;
        padding-right: 22px;
    }

    .contact-motifs-grid {
        grid-template-columns: 1fr;
    }
}

.contact-don-button {
    display: inline-block;

    margin-top: 22px;
    padding: 11px 18px;

    background: #5f8075;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 26px;

    transition: 0.3s ease;
}

.contact-don-button:hover {
    background: #4d6d63;
    transform: translateY(-2px);
}

/* =========================
   FORMULAIRE DE CONTACT
========================= */

.contact-form-section {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.contact-form-section h2 {
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.contact-form-intro {
    max-width: 820px;
    margin: 0 auto 60px;

    font-size: 1.12rem;
    line-height: 1.85;

    color: #68736f;
}


/* FORMULAIRE */

.contact-form {
    width: min(950px, 100%);

    margin: 0 auto;

    padding: 50px;

    background: white;

    border-radius: 30px;
    border: 1px solid rgba(95, 128, 117, 0.12);

    box-shadow: 0 18px 45px rgba(70, 90, 85, 0.08);

    text-align: left;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 9px;

    font-weight: bold;
    font-size: 0.92rem;

    color: #42554e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #cedbd6;
    border-radius: 14px;

    background: #fafbf9;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;

    color: #37433f;

    outline: none;

    transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5f8075;

    box-shadow: 0 0 0 3px rgba(95, 128, 117, 0.10);
}

.form-group-full {
    margin-top: 25px;
}


/* CONSENTEMENT */

.contact-consent {
    margin: 28px 0;

    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.contact-consent input {
    margin-top: 5px;
}

.contact-consent label {
    color: #68736f;

    font-size: 0.9rem;
    line-height: 1.6;
}


/* BOUTON */

.contact-submit-button {
    display: block;

    margin: 35px auto 0;

    padding: 15px 30px;

    border: none;
    border-radius: 30px;

    background: #5f8075;
    color: white;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-submit-button:hover {
    background: #4d6d63;

    transform: translateY(-2px);
}


/* CITATION FINALE */

.contact-final-quote {
    max-width: 850px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: white;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    .contact-form-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE DOCUMENTS
========================= */

.documents-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO DOCUMENTS */

.documents-hero {
    min-height: 82vh;
    padding: 120px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(95, 128, 117, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(151, 135, 175, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.documents-hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.documents-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;

    margin-bottom: 24px;
}

.documents-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.08;

    color: #2f403a;

    margin-bottom: 30px;
}

.documents-hero p {
    max-width: 820px;
    margin: 0 auto 38px;

    font-size: 1.18rem;
    line-height: 1.8;

    color: #68736f;
}

.documents-hero-quote {
    max-width: 820px;

    margin: 55px auto 0;
    padding: 32px 38px;

    background: rgba(255, 255, 255, 0.72);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.65rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* INTRO DOCUMENTS */

.documents-intro {
    max-width: 1050px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.documents-intro h2 {
    max-width: 900px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.documents-intro p {
    max-width: 820px;
    margin: 0 auto;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}

/* =========================
   LIVRE FONDATEUR
========================= */

.documents-livre {
    padding: 110px 8%;
    background: #edf3ef;
}

.documents-livre-inner {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 180px 1fr;

    overflow: hidden;

    background: white;

    border-radius: 30px;

    box-shadow: 0 18px 45px rgba(70, 90, 85, 0.09);
}

.documents-livre-number {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 430px;

    background: #5f8075;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.8rem;

    color: white;
}

.documents-livre-content {
    padding: 65px 70px;
}

.documents-livre-content h2 {
    margin: 15px 0 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.documents-livre-lead {
    max-width: 750px;

    font-size: 1.25rem !important;
    color: #465b54 !important;
}

.documents-livre-content p {
    max-width: 750px;

    color: #68736f;
    font-size: 1.05rem;
    line-height: 1.8;

    margin-bottom: 20px;
}

.documents-main-button {
    display: inline-block;

    margin-top: 18px;
    padding: 14px 26px;

    background: #5f8075;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.documents-main-button:hover {
    background: #4d6d63;
    transform: translateY(-2px);
}


/* =========================
   DOCUMENTS DISPONIBLES
========================= */

.documents-disponibles {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.documents-disponibles h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.documents-disponibles-intro {
    max-width: 820px;
    margin: 0 auto 65px;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}


/* CARTES */

.documents-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.document-card {
    position: relative;

    min-height: 330px;
    padding: 38px 30px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.07);

    display: flex;
    flex-direction: column;
}

.document-number {
    display: block;

    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.document-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;

    color: #2f403a;
}

.document-card p {
    margin-bottom: 25px;

    color: #68736f;
    line-height: 1.75;
}


/* DOCUMENTS DISPONIBLES */

.document-card-active {
    transition: 0.3s ease;
}

.document-card-active:hover {
    transform: translateY(-6px);

    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.document-link {
    display: inline-block;

    margin-top: auto;
    align-self: flex-start;

    padding: 10px 18px;

    border: 1px solid #a8bdb6;
    border-radius: 25px;

    color: #5f8075;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.document-link:hover {
    background: #5f8075;
    color: white;
}


/* DOCUMENTS FUTURS */

.document-card-future {
    background: #f5f5f1;
}

.document-status {
    position: absolute;

    top: 30px;
    right: 25px;

    padding: 7px 11px;

    background: #e7ece8;

    border-radius: 20px;

    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.10em;

    color: #708279;
}


/* CITATION */

.documents-final-quote {
    max-width: 900px;

    margin: 70px auto 0;
    padding: 38px 42px;

    background: #edf3ef;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .documents-livre-inner {
        grid-template-columns: 1fr;
    }

    .documents-livre-number {
        min-height: 130px;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .documents-livre,
    .documents-disponibles {
        padding-left: 22px;
        padding-right: 22px;
    }

    .documents-livre-content {
        padding: 40px 28px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .documents-final-quote {
        padding: 28px 24px;
    }
}

/* =========================
   PAGE ASSOCIATION
========================= */

.association-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO ASSOCIATION */

.association-hero {
    min-height: 88vh;
    padding: 110px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(91, 158, 164, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(224, 177, 95, 0.11), transparent 28%),
        radial-gradient(circle at 50% 92%, rgba(142, 90, 139, 0.08), transparent 35%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.association-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.association-main-logo {
    width: 180px;
    height: 180px;

    object-fit: contain;

    margin-bottom: 22px;
}

.association-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;

    margin-bottom: 24px;
}

.association-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(2.9rem, 5.5vw, 5.2rem);
    line-height: 1.08;

    color: #2f403a;

    margin-bottom: 30px;
}

.association-hero-lead {
    max-width: 850px;
    margin: 0 auto 22px;

    font-size: 1.3rem !important;
    line-height: 1.8;

    color: #465b54 !important;
}

.association-hero-content > p:not(.association-hero-lead) {
    max-width: 850px;
    margin: 0 auto 35px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.association-hero-quote {
    max-width: 850px;

    margin: 55px auto 0;
    padding: 34px 40px;

    background: rgba(255, 255, 255, 0.74);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.7rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* INTRO ASSOCIATION */

.association-intro {
    max-width: 1050px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.association-intro h2 {
    max-width: 900px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-intro p {
    max-width: 820px;
    margin: 0 auto;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}


@media (max-width: 600px) {

    .association-hero {
        padding-top: 85px;
    }

    .association-main-logo {
        width: 145px;
        height: 145px;
    }
}

/* =========================
   ASSOCIATION - NOTRE ORIGINE
========================= */

.association-origine {
    padding: 120px 8%;
    background: #edf3ef;
}

.association-origine-inner {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;

    align-items: start;
}

.association-origine-heading {
    position: sticky;
    top: 130px;
}

.association-origine-heading h2 {
    margin-top: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    font-weight: normal;
    line-height: 1.12;

    color: #2f403a;
}

.association-origine-content {
    padding-top: 10px;
}

.association-origine-content p {
    margin-bottom: 25px;

    font-size: 1.08rem;
    line-height: 1.9;

    color: #68736f;
}

.association-origine-lead {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.45rem !important;
    line-height: 1.65 !important;

    color: #465b54 !important;
}

.association-question {
    margin: 38px 0;
    padding: 35px 38px;

    background: white;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    box-shadow: 0 12px 35px rgba(70, 90, 85, 0.07);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-style: italic;
    line-height: 1.65;

    color: #526b62;
}


@media (max-width: 800px) {

    .association-origine-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .association-origine-heading {
        position: static;
    }
}

/* =========================
   ASSOCIATION - NOTRE MISSION
========================= */

.association-mission {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.association-mission h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-mission-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}

.association-mission-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.association-mission-card {
    min-height: 315px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.association-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.association-mission-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.association-mission-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #2f403a;
}

.association-mission-card p {
    color: #68736f;
    line-height: 1.75;
}

.association-mission-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: #edf3ef;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}

@media (max-width: 950px) {
    .association-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .association-mission {
        padding-left: 22px;
        padding-right: 22px;
    }

    .association-mission-grid {
        grid-template-columns: 1fr;
    }

    .association-mission-quote {
        padding: 28px 24px;
    }
}

/* =========================
   ASSOCIATION - NOTRE METHODE
========================= */

.association-methode {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.association-methode h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-methode-intro {
    max-width: 850px;
    margin: 0 auto 70px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}


/* PARCOURS */

.association-methode-parcours {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.association-methode-parcours article {
    min-height: 285px;
    padding: 32px 25px;

    background: white;

    border-radius: 24px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 12px 35px rgba(70, 90, 85, 0.07);

    transition: 0.3s ease;
}

.association-methode-parcours article:hover {
    transform: translateY(-5px);
}

.association-methode-parcours article > span {
    display: block;
    margin-bottom: 30px;

    font-family: Georgia, "Times New Roman", serif;

    color: #809b92;
}

.association-methode-parcours h3 {
    margin-bottom: 15px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: normal;

    color: #2f403a;
}

.association-methode-parcours p {
    color: #68736f;
    line-height: 1.7;
}


/* PRINCIPE CENTRAL */

.association-methode-principe {
    max-width: 850px;

    margin: 70px auto 0;
    padding: 50px 45px;

    background: #2f403a;
    color: white;

    border-radius: 30px;

    box-shadow: 0 18px 45px rgba(47, 64, 58, 0.15);
}

.association-methode-principe > span {
    display: block;

    margin-bottom: 22px;

    text-transform: uppercase;
    letter-spacing: 0.18em;

    font-size: 0.72rem;
    font-weight: bold;

    color: #b8cbc4;
}

.association-methode-principe strong {
    display: block;

    margin-bottom: 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: normal;
    line-height: 1.2;
}

.association-methode-principe p {
    max-width: 680px;
    margin: 0 auto;

    line-height: 1.8;

    color: #dbe5e1;
}


@media (max-width: 1000px) {

    .association-methode-parcours {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .association-methode {
        padding-left: 22px;
        padding-right: 22px;
    }

    .association-methode-parcours {
        grid-template-columns: 1fr;
    }

    .association-methode-principe {
        padding: 40px 25px;
    }
}

/* =========================
   ASSOCIATION - NOS VALEURS
========================= */

.association-valeurs {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.association-valeurs h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-valeurs-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}

.association-valeurs-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.association-valeur-card {
    min-height: 300px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.association-valeur-card:nth-child(1),
.association-valeur-card:nth-child(2),
.association-valeur-card:nth-child(3) {
    grid-column: span 2;
}

.association-valeur-card:nth-child(4),
.association-valeur-card:nth-child(5),
.association-valeur-card:nth-child(6) {
    grid-column: span 2;
}

.association-valeur-espoir {
    grid-column: 3 / span 2;
}

.association-valeur-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.association-valeur-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.association-valeur-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;

    color: #2f403a;
}

.association-valeur-card p {
    color: #68736f;
    line-height: 1.75;
}


/* LIEN VERS LA CHARTE */

.association-charte-link {
    max-width: 900px;

    margin: 70px auto 0;
    padding: 45px 40px;

    background: #edf3ef;

    border-radius: 28px;
    border: 1px solid rgba(95, 128, 117, 0.12);

    box-shadow: 0 14px 35px rgba(70, 90, 85, 0.07);
}

.association-charte-link strong {
    display: block;

    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: normal;

    color: #2f403a;
}

.association-charte-link p {
    max-width: 700px;
    margin: 0 auto 26px;

    color: #68736f;
    line-height: 1.8;
}

.association-charte-button {
    display: inline-block;

    padding: 13px 24px;

    background: #5f8075;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 30px;

    transition: 0.3s ease;
}

.association-charte-button:hover {
    background: #4d6d63;
    transform: translateY(-2px);
}


@media (max-width: 950px) {

    .association-valeurs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .association-valeur-card:nth-child(1),
    .association-valeur-card:nth-child(2),
    .association-valeur-card:nth-child(3),
    .association-valeur-card:nth-child(4),
    .association-valeur-card:nth-child(5),
    .association-valeur-card:nth-child(6),
    .association-valeur-espoir {
        grid-column: auto;
    }
}

@media (max-width: 600px) {

    .association-valeurs {
        padding-left: 22px;
        padding-right: 22px;
    }

    .association-valeurs-grid {
        grid-template-columns: 1fr;
    }

    .association-charte-link {
        padding: 30px 24px;
    }
}

/* =========================
   ASSOCIATION - AUJOURD'HUI & DEMAIN
========================= */

.association-demain {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.association-demain h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-demain-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}


/* AUJOURD'HUI / DEMAIN */

.association-evolution {
    width: min(1100px, 100%);
    margin: 0 auto 55px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.association-evolution-card {
    min-height: 390px;
    padding: 45px 38px;

    background: white;

    border-radius: 28px;

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);
}

.association-evolution-now {
    background: #2f403a;
}

.association-evolution-status {
    display: inline-block;

    margin-bottom: 30px;
    padding: 8px 14px;

    background: #edf3ef;

    border-radius: 30px;

    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.15em;

    color: #5f8075;
}

.association-evolution-card h3 {
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;

    color: #2f403a;
}

.association-evolution-card p {
    margin-bottom: 18px;

    color: #68736f;
    line-height: 1.8;
}

.association-evolution-now h3 {
    color: white;
}

.association-evolution-now p {
    color: #dbe5e1;
}


/* MINI PÔLES */

.association-poles-mini {
    width: min(1100px, 100%);
    margin: 0 auto 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.association-poles-mini a {
    min-height: 125px;
    padding: 20px 24px;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 24px;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 22px;

    transition: 0.3s ease;
}

.association-poles-mini a:hover {
    background: white;
    transform: translateY(-4px);
}

.association-pole-mini-logo {
    width: 75px;
    height: 75px;

    object-fit: contain;

    flex-shrink: 0;
}

.association-pole-mini-logo-maisons {
    width: 130px;
    height: 130px;
}

.association-poles-mini strong {
    color: #42554e;
}


/* BLOC FINAL */

.association-final {
    max-width: 950px;
    margin: 0 auto;

    padding: 60px 50px;

    background: white;

    border-radius: 30px;

    box-shadow: 0 18px 45px rgba(70, 90, 85, 0.09);
}

.association-final h3 {
    max-width: 750px;
    margin: 15px auto 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.association-final p {
    max-width: 750px;
    margin: 0 auto 32px;

    color: #68736f;
    line-height: 1.8;
}

.association-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.association-final-primary,
.association-final-secondary {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 30px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.association-final-primary {
    background: #5f8075;
    color: white;
}

.association-final-secondary {
    border: 1px solid #a8bdb6;
    color: #526b62;
}

.association-final-primary:hover,
.association-final-secondary:hover {
    transform: translateY(-2px);
}

.association-final-primary:hover {
    background: #4d6d63;
}

.association-final-secondary:hover {
    background: #edf3ef;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .association-evolution {
        grid-template-columns: 1fr;
    }

    .association-poles-mini {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .association-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .association-poles-mini {
        grid-template-columns: 1fr;
    }

    .association-final {
        padding: 40px 25px;
    }
}

/* =========================
   PAGE NOS ACTIONS
========================= */

.actions-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO ACTIONS */

.actions-hero {
    min-height: 85vh;
    padding: 120px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at 15% 20%, rgba(95, 128, 117, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(224, 177, 95, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #eef3ef 100%);
}

.actions-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.actions-kicker {
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;

    margin-bottom: 24px;
}

.actions-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.08;

    color: #2f403a;

    margin-bottom: 30px;
}

.actions-hero-lead {
    max-width: 820px;
    margin: 0 auto 20px;

    font-size: 1.3rem !important;
    line-height: 1.8;

    color: #465b54 !important;
}

.actions-hero-content > p:not(.actions-hero-lead) {
    max-width: 820px;
    margin: 0 auto 35px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.actions-hero-quote {
    max-width: 850px;

    margin: 55px auto 0;
    padding: 34px 40px;

    background: rgba(255, 255, 255, 0.74);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.7rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* INTRO ACTION */

.actions-intro {
    max-width: 1050px;
    margin: 0 auto;

    padding: 115px 8%;

    text-align: center;
}

.actions-intro h2 {
    max-width: 900px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;

    color: #2f403a;
}

.actions-intro p {
    max-width: 820px;
    margin: 0 auto;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}

/* =========================
   ACTION EN COURS
========================= */

.actions-accompagnement {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.actions-accompagnement h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.actions-accompagnement-lead {
    max-width: 820px;
    margin: 0 auto 20px;

    font-size: 1.3rem;
    line-height: 1.8;

    color: #465b54;
}

.actions-accompagnement > p:not(.actions-accompagnement-lead) {
    max-width: 850px;
    margin: 0 auto 60px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.actions-accompagnement-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.actions-accompagnement-card {
    min-height: 300px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.actions-accompagnement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.actions-accompagnement-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.actions-accompagnement-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #2f403a;
}

.actions-accompagnement-card p {
    color: #68736f;
    line-height: 1.75;
}

.actions-accompagnement-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: white;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}

@media (max-width: 950px) {

    .actions-accompagnement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .actions-accompagnement {
        padding-left: 22px;
        padding-right: 22px;
    }

    .actions-accompagnement-grid {
        grid-template-columns: 1fr;
    }

    .actions-accompagnement-quote {
        padding: 28px 24px;
    }
}

/* =========================
   ACTIONS - PUBLIC ACCOMPAGNÉ
========================= */

.actions-public {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.actions-public h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.actions-public-intro {
    max-width: 850px;
    margin: 0 auto 65px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}

.actions-public-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.actions-public-card {
    min-height: 300px;
    padding: 38px 28px;

    background: white;

    border-radius: 26px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: left;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.actions-public-card:nth-child(1),
.actions-public-card:nth-child(2),
.actions-public-card:nth-child(3) {
    grid-column: span 2;
}

.actions-public-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.actions-public-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.actions-public-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.actions-public-card > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;

    color: #809b92;
}

.actions-public-card h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #2f403a;
}

.actions-public-card p {
    color: #68736f;
    line-height: 1.75;
}

.actions-public-quote {
    max-width: 900px;

    margin: 65px auto 0;
    padding: 38px 42px;

    background: #edf3ef;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}

@media (max-width: 950px) {

    .actions-public-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .actions-public-card:nth-child(1),
    .actions-public-card:nth-child(2),
    .actions-public-card:nth-child(3),
    .actions-public-card:nth-child(4),
    .actions-public-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {

    .actions-public {
        padding-left: 22px;
        padding-right: 22px;
    }

    .actions-public-grid {
        grid-template-columns: 1fr;
    }

    .actions-public-quote {
        padding: 28px 24px;
    }
}

/* =========================
   ACTIONS - PARCOURS
========================= */

.actions-parcours {
    padding: 120px 8% 130px;
    background: #edf3ef;
    text-align: center;
}

.actions-parcours h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.actions-parcours-intro {
    max-width: 850px;
    margin: 0 auto 70px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}


/* ÉTAPES */

.actions-parcours-list {
    width: min(1000px, 100%);
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.actions-parcours-step {
    padding: 32px 38px;

    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: center;

    background: white;

    border-radius: 24px;

    text-align: left;

    box-shadow: 0 12px 35px rgba(70, 90, 85, 0.07);

    transition: 0.3s ease;
}

.actions-parcours-step:hover {
    transform: translateX(6px);
}

.actions-parcours-number {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf3ef;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;

    color: #5f8075;
}

.actions-parcours-step h3 {
    margin: 0 0 10px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: normal;

    color: #2f403a;
}

.actions-parcours-step p {
    margin: 0;

    line-height: 1.75;

    color: #68736f;
}


/* BLOC FINAL */

.actions-parcours-final {
    max-width: 850px;

    margin: 70px auto 0;
    padding: 50px 45px;

    background: #2f403a;
    color: white;

    border-radius: 30px;

    box-shadow: 0 18px 45px rgba(47, 64, 58, 0.15);
}

.actions-parcours-final > span {
    display: block;

    margin-bottom: 22px;

    text-transform: uppercase;
    letter-spacing: 0.18em;

    font-size: 0.72rem;
    font-weight: bold;

    color: #b8cbc4;
}

.actions-parcours-final strong {
    display: block;

    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: normal;
    line-height: 1.2;
}

.actions-parcours-final p {
    max-width: 680px;
    margin: 0 auto;

    line-height: 1.8;

    color: #dbe5e1;
}


@media (max-width: 600px) {

    .actions-parcours {
        padding-left: 22px;
        padding-right: 22px;
    }

    .actions-parcours-step {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .actions-parcours-number {
        width: 58px;
        height: 58px;
    }

    .actions-parcours-step:hover {
        transform: translateY(-3px);
    }

    .actions-parcours-final {
        padding: 40px 25px;
    }
}

/* =========================
   ACTIONS - ET DEMAIN ?
========================= */

.actions-demain {
    padding: 120px 8% 130px;
    background: #f8f7f3;
    text-align: center;
}

.actions-demain h2 {
    max-width: 950px;
    margin: 15px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.actions-demain-intro {
    max-width: 850px;
    margin: 0 auto 40px;

    font-size: 1.15rem;
    line-height: 1.85;

    color: #68736f;
}


/* AVERTISSEMENT */

.actions-demain-notice {
    max-width: 850px;
    margin: 0 auto 65px;
    padding: 28px 35px;

    background: #edf3ef;
    border-radius: 22px;
}

.actions-demain-notice strong {
    display: block;
    margin-bottom: 8px;

    color: #42554e;
    font-size: 1.05rem;
}

.actions-demain-notice p {
    margin: 0;
    line-height: 1.7;
    color: #68736f;
}


/* PÔLES */

.actions-futurs-poles {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.actions-futur-card {
    min-height: 450px;
    padding: 30px 28px 34px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: white;

    border-radius: 28px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-decoration: none;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.actions-futur-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.actions-futur-status {
    align-self: flex-start;

    padding: 7px 12px;
    margin-bottom: 20px;

    border-radius: 20px;

    background: #edf3ef;

    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.1em;

    color: #5f8075;
}

.actions-futur-card img {
    width: 105px;
    height: 105px;

    margin: 5px auto 20px;

    object-fit: contain;
}

.actions-futur-card h3 {
    margin-bottom: 15px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: normal;

    color: #2f403a;
}

.actions-futur-card p {
    margin-bottom: 25px;

    line-height: 1.7;

    color: #68736f;
}

.actions-futur-card > strong {
    margin-top: auto;

    color: #5f8075;
    font-size: 0.9rem;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .actions-futurs-poles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .actions-demain {
        padding-left: 22px;
        padding-right: 22px;
    }

    .actions-futurs-poles {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PAGE NOS PROJETS
========================= */

.projets-page {
    background: #f8f7f3;
    color: #2f3a36;
}


/* HERO */

.projets-hero {
    min-height: 85vh;
    padding: 120px 20px 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(95, 128, 117, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(224, 177, 95, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fbfaf7 0%,
            #eef3ef 100%
        );
}

.projets-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.projets-kicker {
    display: block;

    margin-bottom: 24px;

    text-transform: uppercase;
    letter-spacing: 0.22em;

    font-size: 0.78rem;
    font-weight: bold;

    color: #5f8075;
}

.projets-hero h1 {
    margin-bottom: 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: normal;
    line-height: 1.08;

    color: #2f403a;
}

.projets-hero-lead {
    max-width: 830px;
    margin: 0 auto 20px;

    font-size: 1.3rem !important;
    line-height: 1.8;

    color: #465b54 !important;
}

.projets-hero-content > p:not(.projets-hero-lead) {
    max-width: 830px;
    margin: 0 auto 35px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.projets-hero-quote {
    max-width: 850px;

    margin: 55px auto 0;
    padding: 34px 40px;

    background: rgba(255, 255, 255, 0.74);

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.7rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* INTRO */

.projets-intro {
    padding: 115px 8%;

    text-align: center;
}

.projets-intro h2 {
    max-width: 900px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.projets-intro > p {
    max-width: 820px;
    margin: 0 auto 40px;

    font-size: 1.1rem;
    line-height: 1.85;

    color: #68736f;
}

.projets-status {
    max-width: 850px;

    margin: 0 auto;
    padding: 28px 35px;

    background: #edf3ef;

    border-radius: 24px;
}

.projets-status strong {
    display: block;
    margin-bottom: 10px;

    color: #42554e;
}

.projets-status p {
    margin: 0;

    line-height: 1.75;

    color: #68736f;
}


/* =========================
   CARTES DES PÔLES
========================= */

.projets-poles {
    padding: 110px 8% 125px;

    background: #edf3ef;
}

.projets-poles-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.projet-pole-card {
    min-height: 500px;
    padding: 32px 30px 38px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: white;

    border-radius: 28px;
    border: 1px solid rgba(95, 128, 117, 0.10);

    text-align: center;

    box-shadow: 0 15px 40px rgba(70, 90, 85, 0.08);

    transition: 0.3s ease;
}

.projet-pole-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 22px 48px rgba(70, 90, 85, 0.13);
}

.projet-pole-number {
    align-self: flex-start;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;

    color: #809b92;
}

.projet-pole-logo {
    width: 125px;
    height: 125px;

    margin: 15px auto 20px;

    object-fit: contain;
}

.projet-pole-logo-maisons {
    width: 145px;
    height: 145px;

    margin-top: 5px;
    margin-bottom: 10px;
}

.projet-pole-card h2 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: normal;

    color: #2f403a;
}

.projet-pole-card p {
    margin-bottom: 28px;

    line-height: 1.75;

    color: #68736f;
}

.projet-pole-card a {
    margin-top: auto;

    padding: 11px 18px;

    border: 1px solid #a8bdb6;
    border-radius: 25px;

    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;

    color: #5f8075;

    transition: 0.3s ease;
}

.projet-pole-card a:hover {
    background: #5f8075;
    color: white;
}


/* =========================
   FINAL
========================= */

.projets-final {
    padding: 120px 8% 130px;

    text-align: center;

    background: #f8f7f3;
}

.projets-final h2 {
    max-width: 900px;
    margin: 15px auto 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
    line-height: 1.2;

    color: #2f403a;
}

.projets-final p {
    max-width: 820px;
    margin: 0 auto 20px;

    font-size: 1.08rem;
    line-height: 1.85;

    color: #68736f;
}

.projets-final blockquote {
    max-width: 900px;

    margin: 60px auto 0;
    padding: 38px 42px;

    background: #edf3ef;

    border-left: 5px solid #5f8075;
    border-radius: 0 24px 24px 0;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;

    color: #526b62;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .projets-poles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .projets-intro,
    .projets-poles,
    .projets-final {
        padding-left: 22px;
        padding-right: 22px;
    }

    .projets-poles-grid {
        grid-template-columns: 1fr;
    }

    .projets-final blockquote {
        padding: 28px 24px;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 75px 8% 30px;

    background: #2f403a;
    color: white;
}

.footer-main {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 70px;
}


/* IDENTITÉ */

.footer-identity {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.footer-identity img {
    width: 90px;
    height: 90px;

    object-fit: contain;

    background: white;
    border-radius: 15px;
}

.footer-identity h3 {
    margin: 5px 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: normal;

    color: white;
}

.footer-identity p {
    margin: 0;

    line-height: 1.7;

    color: #c9d6d1;
}


/* COLONNES */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h4 {
    margin: 0 0 8px;

    text-transform: uppercase;
    letter-spacing: 0.15em;

    font-size: 0.75rem;

    color: #a9c0b8;
}

.footer-column a {
    text-decoration: none;

    color: #e3ebe8;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(3px);
}


/* DON */

.footer-column .footer-don {
    margin-top: 10px;
    padding: 11px 19px;

    border: 1px solid #9eb8af;
    border-radius: 25px;

    color: white;
}

.footer-column .footer-don:hover {
    background: white;
    color: #2f403a;

    transform: none;
}


/* BAS DU FOOTER */

.footer-separator {
    width: min(1200px, 100%);
    height: 1px;

    margin: 55px auto 25px;

    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;

    color: #a9b9b3;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    text-decoration: none;

    color: #a9b9b3;
}

.footer-legal a:hover {
    color: white;
}


/* MOBILE */

@media (max-width: 800px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================
   PAGES LÉGALES
========================= */

.legal-page {
    background: #f8f7f3;
    color: #2f3a36;
}

.legal-hero {
    padding: 150px 8% 85px;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(95, 128, 117, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfaf7 0%,
            #edf3ef 100%
        );

    text-align: center;
}

.legal-hero h1 {
    margin: 15px auto 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: normal;

    color: #2f403a;
}

.legal-hero p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 1.1rem;
    line-height: 1.8;

    color: #68736f;
}


/* CONTENU */

.legal-content {
    width: min(950px, 84%);
    margin: 0 auto;

    padding: 90px 0 120px;
}

.legal-block {
    padding: 38px 0;

    border-bottom: 1px solid rgba(95, 128, 117, 0.18);
}

.legal-block:first-child {
    padding-top: 0;
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: normal;

    color: #2f403a;
}

.legal-block p {
    margin: 0 0 16px;

    line-height: 1.85;

    color: #68736f;
}

.legal-block strong {
    color: #42554e;
}


/* INFORMATION À COMPLÉTER */

.legal-todo {
    margin-top: 20px;
    padding: 18px 22px;

    background: #edf3ef;

    border-left: 4px solid #809b92;
    border-radius: 0 15px 15px 0;

    color: #526b62;
}


/* BOUTON */

.legal-button {
    display: inline-block;

    margin-top: 10px;
    padding: 12px 20px;

    border: 1px solid #a8bdb6;
    border-radius: 25px;

    text-decoration: none;
    font-weight: bold;

    color: #5f8075;

    transition: 0.3s ease;
}

.legal-button:hover {
    background: #5f8075;
    color: white;
}


@media (max-width: 600px) {

    .legal-content {
        width: auto;
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* =========================
   NAVIGATION MOBILE
========================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;

    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;

    background: #2f403a;
    border-radius: 2px;

    transition: 0.3s ease;
}


/* TÉLÉPHONE / TABLETTE */

@media (max-width: 900px) {

    .navbar {
        position: relative;
        padding: 14px 22px;
    }

    .navbar-brand img {
        width: 65px;
        height: 65px;
    }

    .navbar-brand span {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 18px 22px 25px;

        background: #fbfaf7;

        border-top: 1px solid rgba(95, 128, 117, 0.12);
        box-shadow: 0 15px 25px rgba(47, 64, 58, 0.08);

        z-index: 1000;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        padding: 13px 5px;
        width: 100%;
    }

    .navbar-links .contact-link {
        width: auto;
        margin-top: 8px;
        padding: 12px 20px;

        text-align: center;
        align-self: flex-start;
    }


    /* Animation croix lorsque le menu est ouvert */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 900px) {

    .navbar-links {
        gap: 0;
        padding: 10px 22px 18px;
    }

    .navbar-links a {
        display: block;
        width: 100%;

        margin: 0;
        padding: 12px 8px;

        line-height: 1.4;
        min-height: 0;

        border-bottom: 1px solid rgba(95, 128, 117, 0.10);
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }

    .navbar-links .contact-link {
        width: 100%;
        margin: 10px 0 0;
        padding: 12px 18px;

        text-align: center;
        align-self: stretch;
    }
}