/* =============================================================
   AMINATA FATY — style.css
   Feuille de styles principale (référence : desktop 1440px)
   -------------------------------------------------------------
   SOMMAIRE
   01. Variables & reset
   02. Typographie de base
   03. Utilitaires (container, section, boutons, animations)
   04. Header / Navigation
   05. Hero + transition papier déchiré
   06. Section "Quel est votre projet au Sénégal ?"
   07. Section "Notre Histoire"
   08. Footer
   09. Pages intérieures
   10. Page Séjourner (Aminata House + Reset & Rise)
   ============================================================= */


/* =============================================================
   01. VARIABLES & RESET
   ============================================================= */
:root{

    /* ---- Palette extraite de la maquette ---- */
    --primary:          #D9531E;   /* orange principal : réservé au header + footer */
    --secondary:        #E4671F;   /* orange clair : réservé au header + footer */
    --text:             #2C211A;   /* brun très foncé : titres            */
    --background:       #FDF5EC;   /* crème : header + hero               */
    --orange:           #E2551C;   /* orange manuscrit : réservé au header + footer */
    --white:            #FFFFFF;   /* blanc : transition papier           */

    /* ---- Couleur principale des pages (hors header/footer) ---- */
    --accent:            #FF585A;   /* rouge principal du site             */
    --accent-dark:        #E9484A;   /* rouge foncé : survols               */

    /* ---- Déclinaisons ---- */
    --background-alt:   #FDF8F1;   /* fond section projet                 */
    --background-soft:  #FEFBF7;   /* fond section notre histoire         */
    --card-bg:          #FBF2E7;   /* fond des cartes                     */
    --text-soft:        #574A41;   /* texte courant                       */
    --text-mute:        #6E6057;   /* légendes                            */
    --primary-dark:     #C6491A;   /* barre basse du footer               */
    --heart:            #F0834E;   /* cœur central                        */
    --line:             rgba(44, 33, 26, .10);

    /* ---- Polices ---- */
    --font-display: 'Playfair Display', 'Times New Roman', serif;
    --font-script:  'Dancing Script', 'Segoe Script', cursive;
    --font-body:    'Poppins', 'Helvetica Neue', Arial, sans-serif;

    /* ---- Rythme & effets ---- */
    --container: 1340px;
    --gutter: 40px;
    --radius: 14px;
    --radius-sm: 5px;
    --shadow-card: 0 14px 34px rgba(44, 33, 26, .07);
    --shadow-btn: 0 8px 18px rgba(255, 88, 90, .30);
    --ease: cubic-bezier(.22, .68, .27, 1);
}

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

html{
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body{
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-soft);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg{
    display: block;
    max-width: 100%;
}

img{
    height: auto;
}

a{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
}

button{
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

/* Réglage global des icônes SVG : tracé fin, couleur héritée */
svg{
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Éléments SVG destinés à être pleins (point Instagram, triangle YouTube…) */
svg .fill{
    fill: currentColor;
    stroke: none;
}

/* ---- Accessibilité : lien d'évitement ---- */
.skip-link{
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--accent);
}

.skip-link:focus{
    left: 12px;
    top: 12px;
}

/* ---- Focus clavier visible partout ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---- Sélection ---- */
::selection{
    color: var(--white);
    background: var(--accent);
}


/* =============================================================
   02. TYPOGRAPHIE DE BASE
   ============================================================= */
h1, h2, h3, h4{
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}

strong{
    font-weight: 600;
    color: var(--text);
}


/* =============================================================
   03. UTILITAIRES
   ============================================================= */

/* ---- Conteneur central ---- */
.container{
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---- Boutons ---- */
.btn{
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    line-height: 1;
    border-radius: var(--radius-sm);
    transition: background-color .35s var(--ease),
                color .35s var(--ease),
                border-color .35s var(--ease),
                box-shadow .35s var(--ease),
                transform .35s var(--ease);
}

.btn-arrow{
    display: inline-flex;
    transition: transform .35s var(--ease);
}

.btn-arrow svg{
    width: 17px;
    height: 17px;
    stroke-width: 1.7;
}

.btn:hover .btn-arrow{
    transform: translateX(5px);
}

/* Bouton plein orange */
.btn--solid{
    padding: 17px 28px;
    color: var(--white);
    background-color: var(--accent);
    box-shadow: var(--shadow-btn);
}

.btn--solid:hover{
    background-color: var(--accent-dark);
    box-shadow: 0 12px 24px rgba(255, 88, 90, .34);
    transform: translateY(-2px);
}

/* Bouton contour rouge */
.btn--outline{
    padding: 14px 24px;
    color: var(--accent);
    background-color: transparent;
    border: 1px solid var(--accent);
    box-shadow: 0 4px 12px rgba(255, 88, 90, .08);
}

.btn--outline:hover{
    color: var(--white);
    background-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 88, 90, .24);
    transform: translateY(-2px);
}

/* Bouton contour blanc (footer) */
.btn--ghost{
    padding: 13px 26px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .8);
}

.btn--ghost:hover{
    color: var(--primary);
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(120, 40, 12, .2);
    transform: translateY(-2px);
}

/* ---- Animations discrètes au scroll ---- */
[data-animate]{
    opacity: 0;
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    will-change: opacity, transform;
}

[data-animate="fade-up"]{
    transform: translateY(26px);
}

[data-animate="fade-right"]{
    transform: translateX(-26px);
}

[data-animate="fade"]{
    transform: none;
}

[data-animate].is-visible{
    opacity: 1;
    transform: none;
}

/* Respect du réglage système « animations réduites » */
@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after{
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    [data-animate]{
        opacity: 1;
        transform: none;
    }
}


/* =============================================================
   04. HEADER / NAVIGATION
   ============================================================= */
.site-header{
    position: sticky;
    top: 0;
    z-index: 150;
    background-color: var(--background);
    padding: 20px 0 14px;
    transition: padding .4s var(--ease),
                box-shadow .4s var(--ease),
                background-color .4s var(--ease);
}

/* État « collé » ajouté par script.js après défilement */
.site-header.is-stuck{
    padding: 11px 0;
    background-color: rgba(253, 245, 236, .95);
    box-shadow: 0 6px 26px rgba(44, 33, 26, .08);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
}

.header-inner{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---- Logo ---- */
.logo{
    display: block;
    margin-right: auto;
}

.logo-name{
    display: block;
    font-family: var(--font-script);
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    color: var(--orange);
}

.logo-baseline{
    display: block;
    margin-top: 7px;
    padding-left: 3px;
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    color: var(--text-soft);
}

.logo-baseline-line{
    display: block;
}

.logo-baseline-line:last-child{
    text-align: center;
}

/* ---- Menu ---- */
.main-nav{
    margin-right: 54px;
}

.nav-list{
    display: flex;
    align-items: center;
    gap: 52px;
}

.nav-link{
    position: relative;
    display: inline-block;
    padding: 4px 0;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text);
    transition: color .3s var(--ease);
}

/* Soulignement animé */
.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s var(--ease);
}

.nav-link:hover,
.nav-link.is-active{
    color: var(--orange);
}

.nav-link:hover::after,
.nav-link.is-active::after{
    transform: scaleX(1);
}

/* ---- Réseaux sociaux ---- */
.header-social{
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link{
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--text);
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.social-link svg{
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.social-link:hover{
    color: var(--orange);
    transform: translateY(-2px);
}

/* ---- Bouton burger (masqué en desktop) ---- */
.nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    margin-left: 18px;
}

.nav-toggle-bar{
    display: block;
    width: 24px;
    height: 1.6px;
    background-color: var(--text);
    transition: transform .35s var(--ease), opacity .25s var(--ease);
}


/* =============================================================
   05. HERO + TRANSITION PAPIER DÉCHIRÉ
   ============================================================= */
.hero{
    position: relative;
    overflow: hidden;
    padding: 60px 0 132px;
    background-color: var(--background);
}

.hero-inner{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---- Grille 2 colonnes : texte à gauche, image à droite ---- */
.hero-grid{
    display: flex;
    align-items: center;
    gap: 64px;
}

/* ---- Colonne gauche : contenu ---- */
.hero-content{
    flex: 0 1 460px;
    max-width: 490px;
}

.hero-overline{
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title{
    margin-top: 22px;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.11;
    letter-spacing: -.2px;
    color: var(--text);
}

.hero-title-script{
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-script);
    font-size: 62px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--accent);
}

.hero-text{
    max-width: 320px;
    margin-top: 26px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

.hero-text-accent{
    color: var(--accent);
}

.hero-rule{
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 26px;
    background-color: var(--accent);
}

/* ---- Colonne droite : photo, intégration créative ---- */
.hero-media{
    position: relative;
    flex: 1 1 0%;
    min-width: 0;
}

/* Carte décalée en arrière-plan (profondeur, motif "papier" du site) */
.hero-media-shape{
    position: absolute;
    top: 24px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    z-index: 0;
    background-color: var(--card-bg);
    border-radius: var(--radius);
}

.hero-media-frame{
    position: relative;
    z-index: 1;
    aspect-ratio: 1040 / 746;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-media-frame picture,
.hero-media-frame img{
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media-frame img{
    object-fit: cover;
    object-position: 50% 28%;
}

/* Étiquette manuscrite, signature chaleureuse */
.hero-media-tag{
    position: absolute;
    left: 30px;
    bottom: -20px;
    z-index: 2;
    padding: 10px 24px;
    font-family: var(--font-script);
    font-size: 21px;
    font-weight: 500;
    color: var(--accent);
    background-color: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-card);
}

/* ---- Transition « papier déchiré » ---- */
.torn-paper{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.torn-paper svg{
    display: block;
    width: 100%;
    height: 92px;
    stroke: none;
}


/* =============================================================
   06. SECTION "QUEL EST VOTRE PROJET AU SÉNÉGAL ?"
   ============================================================= */
.section{
    position: relative;
}

.section--project{
    padding: 6px 0 32px;
    background-color: var(--background-alt);
}

/* ---- En-tête de section ---- */
.section-head{
    text-align: center;
}

.section-script{
    font-family: var(--font-script);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--accent);
}

.section-title{
    margin-top: 10px;
    font-size: 33px;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 1.2;
    color: var(--text);
}

.section-rule{
    display: block;
    width: 74px;
    height: 2px;
    margin: 15px auto 0;
    background-color: var(--accent);
}

/* ---- Grille des deux cartes ---- */
.project-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card{
    display: grid;
    align-items: stretch;
    min-height: 496px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}

.card:hover{
    box-shadow: 0 20px 44px rgba(44, 33, 26, .11);
    transform: translateY(-3px);
}

/* Colonnes strictement symétriques : 44 % image / 56 % contenu */
.card--left{
    grid-template-columns: 44% minmax(0, 1fr);
}

.card--right{
    grid-template-columns: minmax(0, 1fr) 44%;
}

/* ---- Média de carte + bord déchiré ---- */
.card-media{
    position: relative;
    overflow: hidden;
}

.card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.card:hover .card-media img{
    transform: scale(1.045);
}

/* Bord déchiré à droite (carte de gauche) */
.card--left .card-media{
    -webkit-clip-path: polygon(
        0 0, 97.5% 0,
        93.5% 4%, 98% 8%, 93% 13%, 97.5% 17%,
        92.5% 22%, 97% 27%, 92% 32%, 96.5% 37%,
        92.5% 42%, 98% 47%, 93% 52%, 97.5% 57%,
        92% 62%, 96.5% 67%, 92.5% 72%, 97% 77%,
        92% 82%, 96.5% 87%, 93% 92%, 97.5% 96%,
        94% 100%, 0 100%
    );
    clip-path: polygon(
        0 0, 97.5% 0,
        93.5% 4%, 98% 8%, 93% 13%, 97.5% 17%,
        92.5% 22%, 97% 27%, 92% 32%, 96.5% 37%,
        92.5% 42%, 98% 47%, 93% 52%, 97.5% 57%,
        92% 62%, 96.5% 67%, 92.5% 72%, 97% 77%,
        92% 82%, 96.5% 87%, 93% 92%, 97.5% 96%,
        94% 100%, 0 100%
    );
}

/* Bord déchiré à gauche (carte de droite) — miroir exact */
.card--right .card-media{
    -webkit-clip-path: polygon(
        100% 0, 2.5% 0,
        6.5% 4%, 2% 8%, 7% 13%, 2.5% 17%,
        7.5% 22%, 3% 27%, 8% 32%, 3.5% 37%,
        7.5% 42%, 2% 47%, 7% 52%, 2.5% 57%,
        8% 62%, 3.5% 67%, 7.5% 72%, 3% 77%,
        8% 82%, 3.5% 87%, 7% 92%, 2.5% 96%,
        6% 100%, 100% 100%
    );
    clip-path: polygon(
        100% 0, 2.5% 0,
        6.5% 4%, 2% 8%, 7% 13%, 2.5% 17%,
        7.5% 22%, 3% 27%, 8% 32%, 3.5% 37%,
        7.5% 42%, 2% 47%, 7% 52%, 2.5% 57%,
        8% 62%, 3.5% 67%, 7.5% 72%, 3% 77%,
        8% 82%, 3.5% 87%, 7% 92%, 2.5% 96%,
        6% 100%, 100% 100%
    );
}

/* ---- Corps de carte ---- */
.card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 36px 40px;
    text-align: center;
}

.card-icon{
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--accent);
}

.card-icon svg{
    width: 46px;
    height: 46px;
    stroke-width: 1.7;
}

.card-title{
    margin-top: 16px;
    font-family: var(--font-script);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--accent);
}

.card-text{
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.95;
    text-align: left;
    color: var(--text-soft);
}

/* ---- Badge statistique (ex. "+500 investisseurs...") ---- */
.card-stat{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    color: var(--accent-dark);
    background-color: rgba(255, 88, 90, .08);
    border: 1px solid rgba(255, 88, 90, .2);
    border-radius: 999px;
}

.card-stat strong{
    font-weight: 700;
    color: var(--accent);
}

.card-body .btn{
    margin-top: 28px;
}

/* ---- Cœur central entre les deux cartes ---- */
.project-heart{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    display: block;
    width: 40px;
    height: 40px;
    color: var(--accent);
    transform: translate(-50%, -50%);
}

.project-heart svg{
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}


/* =============================================================
   07. SECTION "NOTRE HISTOIRE"
   ============================================================= */
.section--story{
    padding: 42px 0 36px;
    background-color: var(--background-soft);
}

.story-grid{
    display: grid;
    grid-template-columns: minmax(0, 41%) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

/* ---- Colonne gauche ---- */
.story-overline{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent);
}

.story-rule{
    display: block;
    width: 34px;
    height: 2px;
    margin: 9px 0 22px;
    background-color: var(--accent);
}

.story-title{
    font-size: 26px;
    font-weight: 500;
    line-height: 1.42;
    color: var(--text);
}

.story-text{
    margin-top: 20px;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.story-script{
    margin-top: 20px;
    font-family: var(--font-script);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--accent);
}

.story-content .btn{
    margin-top: 24px;
}

/* ---- Colonne droite : 2 photos côte à côte ---- */
.story-photos{
    display: flex;
    align-items: stretch;
}

.story-photo{
    position: relative;
    flex: 1 1 0%;
    min-width: 0;
    height: 460px;
    overflow: hidden;
    background-color: var(--card-bg);
    background-size: cover;
    background-position: 50% 20%;
    background-repeat: no-repeat;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    transition: transform 1.1s var(--ease);
}

.story-photo:hover{
    transform: scale(1.03);
}

/* Petit trait de séparation entre les 2 photos */
.story-photos-divider{
    flex: 0 0 auto;
    width: 1px;
    margin: 16px 22px;
    background-color: var(--line);
}


/* =============================================================
   08. FOOTER
   ============================================================= */
.site-footer{
    position: relative;
    color: var(--white);
    background-color: var(--primary);
}

/* ---- Bord supérieur déchiré ---- */
.footer-torn{
    line-height: 0;
    background-color: var(--background-soft);
}

.footer-torn svg{
    display: block;
    width: 100%;
    height: 34px;
    stroke: none;
}

/* ---- Corps du footer ---- */
.footer-main{
    padding: 42px 0 40px;
    background: linear-gradient(100deg, #DC5722 0%, #D75020 52%, #CE4A19 100%);
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.18fr .82fr 1fr;
    align-items: center;
}

.footer-col{
    position: relative;
}

/* Filets verticaux de séparation */
.footer-col--social,
.footer-col--news{
    padding-left: 46px;
}

.footer-col--social::before,
.footer-col--news::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 96px;
    background-color: rgba(255, 255, 255, .32);
    transform: translateY(-50%);
}

/* Colonne 1 : signature manuscrite */
.footer-script{
    font-family: var(--font-script);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.65;
    color: #FFF4EB;
}

.footer-heart{
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 10px;
    margin-left: 24px;
    color: rgba(255, 255, 255, .9);
}

.footer-heart svg{
    width: 100%;
    height: 100%;
    stroke-width: 1.4;
}

/* Colonnes 2 & 3 : titres */
.footer-col--social,
.footer-col--news{
    text-align: center;
}

.footer-title{
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
}

/* Colonne 2 : réseaux */
.footer-social{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link{
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--primary);
    background-color: #FDF5EC;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.footer-social-link svg{
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.footer-social-link:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(120, 40, 12, .25);
}

/* Colonne 3 : newsletter */
.footer-text{
    margin-top: 13px;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .95);
}

.footer-col--news .btn{
    margin-top: 16px;
}

/* ---- Barre inférieure ---- */
.footer-bottom{
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 15px 0;
}

.footer-bottom-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 11.5px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
}

.footer-links{
    display: flex;
    gap: 38px;
}

.footer-links a{
    transition: color .3s var(--ease);
}

.footer-links a:hover{
    color: #FFE2D2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-made{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-made-heart{
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: #FFD3BE;
}

.footer-made-heart svg{
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

.footer-made-link{
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, .5);
    transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
}

.footer-made-link:hover{
    color: #FFE2D2;
    text-decoration-color: currentColor;
}


/* =============================================================
   09. PAGES INTÉRIEURES
   ============================================================= */
.page-hero{
    padding: 74px 0 60px;
    text-align: center;
    background-color: var(--background);
}

.page-hero .section-script{
    margin-bottom: 6px;
}

.page-title{
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

.page-hero .section-rule{
    margin-top: 18px;
}

.page-body{
    padding: 56px 0 72px;
    background-color: var(--background-alt);
}

.page-content{
    max-width: 760px;
    margin: 0 auto;
}

.page-content h2{
    margin: 34px 0 12px;
    font-size: 24px;
}

.page-content h3{
    margin: 26px 0 10px;
    font-size: 19px;
}

.page-content p{
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.95;
}

.page-content .btn{
    margin-top: 12px;
}

/* ---- Formulaire (page contact) ---- */
.form{
    max-width: 620px;
    margin: 0 auto;
}

.form-row{
    margin-bottom: 18px;
}

.form-label{
    display: block;
    margin-bottom: 7px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text);
}

.form-input,
.form-textarea{
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.form-textarea{
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus{
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 88, 90, .12);
    outline: none;
}

.form-feedback{
    margin-bottom: 18px;
    padding: 13px 16px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.form-feedback--ok{
    color: #1E6B3C;
    background-color: #E7F5EC;
    border: 1px solid #BFE2CC;
}

.form-feedback--error{
    color: #9A2B12;
    background-color: #FBEAE4;
    border: 1px solid #F0C6B7;
}

/* ---- Grille d'articles (page blog) ---- */
.post-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.post{
    overflow: hidden;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.post:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(44, 33, 26, .11);
}

.post-media{
    height: 200px;
    overflow: hidden;
}

.post-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.post:hover .post-media img{
    transform: scale(1.05);
}

.post-body{
    padding: 22px 24px 26px;
}

.post-date{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--accent);
}

.post-title{
    margin: 9px 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

.post-excerpt{
    font-size: 13px;
    line-height: 1.9;
}


/* =============================================================
   10. PAGE SÉJOURNER (AMINATA HOUSE + RESET & RISE)
   ============================================================= */

/* ---- Séjours Aminata House : réutilise le motif .card ---- */
.section--stay{
    /* Espace généreux avant la section suivante (Reset & Rise) */
    padding: 10px 0 84px;
    background-color: var(--background-soft);
}

.card--stay{
    min-height: 0;
    margin-top: 34px;
}

/* Variante « contain » : pour les visuels contenant du texte graphique
   intégré (affiches Aminata House) — le recadrage habituel en object-fit:
   cover couperait ce texte, donc l'image entière reste visible, centrée
   sur un fond neutre qui reprend la couleur des cartes du site. */
.card-media--contain img{
    object-fit: contain;
    background-color: var(--card-bg);
}

.card--stay .card-body{
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 46px 46px;
    text-align: left;
}

.stay-text{
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.stay-subtitle{
    margin-top: 26px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--text);
}

.amenity-block{
    margin-top: 16px;
}

.amenity-title{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--accent);
}

.amenity-list{
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 11px;
    padding: 0;
    list-style: none;
}

.amenity-list li{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-soft);
}

/* Liste sans émoji (studio & appartement) : puce ronde discrète */
.amenity-list--plain li{
    gap: 0;
}

.amenity-list--plain li::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 9px;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.amenity-icon{
    font-size: 15px;
    line-height: 1;
}

.stay-info{
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.stay-info p{
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-soft);
}

.stay-info p + p{
    margin-top: 5px;
}

.stay-info strong{
    font-weight: 600;
    color: var(--text);
}

/* ---- Reset & Rise : contenu encadré dans un panneau "carte" ----
   Espace généreux en haut (recul net avec la section précédente)
   et en bas (respiration avant le footer). */
.section--reset{
    padding: 78px 0 116px;
    background-color: var(--background-alt);
}

.reset-panel{
    max-width: 720px;
    margin: 38px auto 0;
    padding: 48px 56px 52px;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.reset-lead{
    font-family: var(--font-script);
    font-size: 30px;
    font-weight: 500;
    color: var(--accent);
}

.reset-text{
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

/* Citation mise en avant : encadré distinct dans le panneau */
.reset-highlight{
    margin-top: 28px;
    padding: 24px 28px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    text-align: left;
    background-color: var(--white);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
}

.reset-panel .btn{
    margin-top: 30px;
}

/* ---- Pourquoi prendre ce temps ---- */
.section--why{
    padding: 20px 0 66px;
    background-color: var(--background);
}

.why-content{
    max-width: 640px;
    margin: 32px auto 0;
    text-align: center;
}

.why-lead{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
}

.why-content p{
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

/* ---- Comment se déroule votre séjour ---- */
.section--steps{
    padding: 20px 0 84px;
    background-color: var(--background-soft);
}

.steps-intro{
    max-width: 560px;
    margin: 30px auto 0;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.85;
    text-align: center;
    color: var(--text-soft);
}

.steps-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-top: 46px;
}

.step{
    text-align: center;
    transition: transform .4s var(--ease);
}

.step:hover{
    transform: translateY(-4px);
}

.step-number{
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    font-family: var(--font-script);
    font-size: 20px;
    color: var(--white);
    background-color: var(--accent);
    border-radius: 50%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.step:hover .step-number{
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 88, 90, .28);
}

.step-title{
    margin-top: 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.step-text{
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-soft);
}


/* =============================================================
   11. PAGES ARTICLE DE BLOG
   ============================================================= */

.article-meta{
    margin-top: 14px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .3px;
    color: var(--text-mute);
}

.article-cover{
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.article-cover img{
    display: block;
    width: 100%;
    height: auto;
}

.article-content h2{
    margin-top: 40px;
    font-size: 19px;
}

.article-content h2:first-child{
    margin-top: 0;
}

.article-content p strong{
    color: var(--text);
    font-weight: 600;
}

.article-content .btn{
    margin-top: 12px;
}

.article-nav{
    max-width: 760px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-back{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color .3s var(--ease), gap .3s var(--ease);
}

.article-back:hover{
    gap: 12px;
    color: var(--accent);
}


/* =============================================================
   12. SECTION "PUBLICATIONS RÉCENTES" (ACCUEIL)
   ============================================================= */

.section--posts{
    padding: 20px 0 92px;
    background-color: var(--background);
}

.post-grid--home{
    margin-top: 40px;
}

.posts-cta{
    margin-top: 44px;
    text-align: center;
}


/* =============================================================
   10. COMPOSANTS DE LA REFONTE 2026
   -------------------------------------------------------------
   Ajoutés pour les pages « Les Diattara », « Séjourner » et
   « Malicounda Diaspora ». Réutilisent strictement les tokens
   existants (couleurs, polices, rayons, ombres, easing) afin que
   l'ensemble paraisse conçu d'un seul tenant.
   ============================================================= */


/* ---- Filet aligné à gauche (variante du .section-rule centré) ---- */
.section-rule--left{
    margin-left: 0;
    margin-right: 0;
}

/* =============================================================
   10.1 ACCROCHE AVEC GRANDE PHOTO (page Les Diattara)
   ============================================================= */
.intro-hero{
    padding: 66px 0 74px;
    background-color: var(--background);
}

.intro-hero-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: center;
}

.intro-hero-title{
    margin-top: 10px;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--text);
}

.intro-hero-text{
    max-width: 460px;
    margin-top: 22px;
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.intro-hero-media{
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.intro-hero-media img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: 50% 32%;
}


/* =============================================================
   10.2 BLOC DE TEXTE NARRATIF
   ============================================================= */
.section--prose{
    padding: 20px 0 74px;
    background-color: var(--background-soft);
}

.prose-block{
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.prose-block p{
    font-size: 14.5px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-soft);
}

.prose-block p + p{
    margin-top: 17px;
}

.prose-lead{
    font-family: var(--font-display);
    font-size: 22px !important;
    font-weight: 500;
    line-height: 1.55 !important;
    color: var(--text) !important;
}

.prose-close{
    font-family: var(--font-script);
    font-size: 25px !important;
    line-height: 1.45 !important;
    color: var(--accent) !important;
}


/* =============================================================
   10.3 GALERIE PHOTOS
   ============================================================= */
.section--gallery{
    padding: 20px 0 84px;
    background-color: var(--background);
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.gallery-cell{
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--card-bg);
    box-shadow: 0 8px 22px rgba(44, 33, 26, .06);
}

.gallery-cell--wide{
    grid-column: span 2;
}

.gallery-cell img{
    width: 100%;
    height: 236px;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.gallery-cell:hover img{
    transform: scale(1.05);
}

/* Légende en surimpression, apparaît au survol */
.gallery-cell figcaption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 18px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .4px;
    line-height: 1.4;
    color: var(--white);
    background: linear-gradient(to top, rgba(28, 20, 15, .82) 0%, rgba(28, 20, 15, 0) 100%);
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}


/* =============================================================
   10.4 NOS UNIVERS (3 cartes)
   ============================================================= */
.section--universe{
    padding: 20px 0 88px;
    background-color: var(--background-soft);
}

.universe-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.universe-card{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.universe-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(44, 33, 26, .11);
}

.universe-media{
    height: 210px;
    overflow: hidden;
}

.universe-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.universe-card:hover .universe-media img{
    transform: scale(1.05);
}

.universe-body{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 30px;
}

/* Rond d'icône réduit pour les cartes secondaires */
.card-icon--sm{
    width: 58px;
    height: 58px;
}

.card-icon--sm svg{
    width: 30px;
    height: 30px;
}

.universe-title{
    margin-top: 15px;
    font-family: var(--font-script);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--accent);
}

.universe-text{
    flex: 1;
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

.universe-body .btn{
    margin-top: 22px;
}


/* =============================================================
   10.5 TÉMOIGNAGES
   ============================================================= */
.section--testimonials{
    padding: 20px 0 88px;
    background-color: var(--background);
}

.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.testimonial{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 30px 30px 28px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.testimonial:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(44, 33, 26, .1);
}

.testimonial-stars{
    display: inline-flex;
    gap: 3px;
    color: var(--accent);
}

.testimonial-stars svg{
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

.testimonial-text{
    flex: 1;
    margin-top: 15px;
    font-size: 13.5px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.95;
    color: var(--text-soft);
}

.testimonial-author{
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.testimonial-name{
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--text);
}

.testimonial-meta{
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    font-weight: 300;
    color: var(--text-mute);
}


/* =============================================================
   10.6 BANDEAU D'APPEL À L'ACTION (fin de page)
   ============================================================= */
.cta-band{
    padding: 74px 0 82px;
    background-color: var(--background-alt);
    border-top: 1px solid var(--line);
}

.cta-band-inner{
    max-width: 780px;
    text-align: center;
}

.cta-band-script{
    font-family: var(--font-script);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--accent);
}

.cta-band-title{
    margin-top: 8px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.24;
    color: var(--text);
}

.cta-band-text{
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.cta-band-text strong{
    font-weight: 600;
    color: var(--text);
}

.cta-band-actions{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* Variante utilisée dans le bloc d'introduction de la page Séjourner */
.cta-band-actions--hero{
    margin-top: 32px;
}


/* =============================================================
   10.7 EN-TÊTES DE PAGE ENRICHIS
   ============================================================= */
.page-hero-text{
    max-width: 620px;
    margin: 22px auto 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.page-hero-lead{
    max-width: 700px;
    margin: 26px auto 0;
}

.page-hero-lead p{
    font-size: 14.5px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-soft);
}

.page-hero-lead p + p{
    margin-top: 15px;
}


/* =============================================================
   10.8 CHIFFRES CLÉS (page Malicounda Diaspora)
   ============================================================= */
.stat-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 42px auto 0;
}

.stat{
    padding: 26px 20px 24px;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.stat-figure{
    display: block;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    color: var(--accent);
}

.stat-label{
    display: block;
    margin-top: 9px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-soft);
}


/* =============================================================
   10.9 BLOC D'INFORMATION SECONDAIRE (parcelles disponibles)
   ============================================================= */
.section--note{
    padding: 6px 0 72px;
    background-color: var(--background-soft);
}

.note-panel{
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 36px 34px;
    text-align: center;
    background-color: var(--background-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.note-panel-title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text);
}

.note-panel-text{
    margin-top: 12px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

.note-panel .btn{
    margin-top: 22px;
}


/* =============================================================
   10.10 BLOCS D'EXPÉRIENCE (page Séjourner)
   ============================================================= */

/* Respiration entre deux blocs d'expérience consécutifs */
.card--stay + .card--stay{
    margin-top: 46px;
}

.stay-eyebrow{
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--accent);
}

.stay-title{
    margin-top: 11px;
    font-family: var(--font-script);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--text);
}

.card--stay .stay-title + .stay-text{
    margin-top: 15px;
}

.card--stay .stay-text + .stay-text{
    margin-top: 13px;
}

/* Liste empilée (une ligne par élément) */
.amenity-list--stack{
    flex-direction: column;
    gap: 8px;
}


/* =============================================================
   10.11 PROGRAMMES BIEN-ÊTRE
   ============================================================= */
.section--programs{
    padding: 20px 0 84px;
    background-color: var(--background-alt);
}

.program-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

/* Variante 2 colonnes (page Malicounda Diaspora : nos solutions d'investissement) */
.program-grid--two{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.program{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 30px;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.program:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(44, 33, 26, .11);
}

.program-icon{
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--accent);
}

.program-icon svg{
    width: 34px;
    height: 34px;
    stroke-width: 1.7;
}

.program-title{
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

.program-target{
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--accent);
}

.program-text{
    margin-top: 12px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-soft);
}

/* Lien optionnel sous une carte .program (ex. « Découvrir les parcelles
   disponibles » sur la page Malicounda Diaspora) */
.program-link{
    display: inline-block;
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease), color .2s var(--ease);
}

.program-link:hover{
    color: var(--accent-dark);
    border-bottom-color: currentColor;
}


/* =============================================================
   10.12 LISTE À PUCES COCHÉES
   ============================================================= */
.check-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
    max-width: 880px;
    margin: 30px auto 0;
    padding: 0;
    list-style: none;
}

.check-list li{
    position: relative;
    padding-left: 30px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-soft);
}

/* Coche dessinée en CSS : aucune image, aucune police d'icônes */
.check-list li::before{
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}


/* =============================================================
   10.13 LE COUPLE : DEUX EXPERTISES
   ============================================================= */
.section--duo{
    padding: 20px 0 84px;
    background-color: var(--background-soft);
}

.duo-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 940px;
    margin: 34px auto 0;
}

.duo-card{
    overflow: hidden;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.duo-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(44, 33, 26, .1);
}

.duo-media{
    margin: 0;
    height: 300px;
    overflow: hidden;
}

.duo-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    transition: transform 1.1s var(--ease);
}

.duo-card:hover .duo-media img{
    transform: scale(1.04);
}

.duo-body{
    padding: 26px 30px 30px;
}

.duo-name{
    font-family: var(--font-script);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--accent);
}

.duo-role{
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--text-mute);
}

.duo-text{
    margin-top: 13px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-soft);
}

/* Paragraphe de conclusion sous la grille du couple */
.why-content--after{
    margin-top: 34px;
}


/* =============================================================
   10.14 AIGUILLAGE « QUELLE EXPÉRIENCE EST FAITE POUR VOUS ? »
   ============================================================= */
.section--match{
    padding: 20px 0 88px;
    background-color: var(--background);
}

.match-list{
    max-width: 900px;
    margin: 34px auto 0;
    overflow: hidden;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.match-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 22px 28px;
    transition: background-color .35s var(--ease);
}

.match-row + .match-row{
    border-top: 1px solid var(--line);
}

.match-row:hover{
    background-color: var(--background-alt);
}

.match-question{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-soft);
}

.match-answer{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .4px;
    color: var(--accent);
    transition: transform .35s var(--ease);
}

.match-answer .btn-arrow svg{
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.match-row:hover .match-answer{
    transform: translateX(4px);
}


/* =============================================================
   10.15 TITRE DE CARTE LONG (ex. « Malicounda Diaspora »)
   ============================================================= */
.card-title--long{
    font-size: 38px;
    line-height: 1.12;
}
