/* ============================================================
   LIBOTA - home.css
   Styles propres à la page d'accueil (index.html).
   ============================================================ */


/* ------------------------------------------------------------
   1. Hero (vidéo plein écran)
   ------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--vert-fonce);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 22s ease-out forwards;
}

.hero-voile {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(13, 37, 27, 0.55) 0%,
                rgba(13, 37, 27, 0.32) 38%,
                rgba(13, 37, 27, 0.84) 100%);
}

/* Halos lumineux flottants */
.hero-halo {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(20px);
}

.hero-halo.ambre {
    top: 14%;
    right: 8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(189, 122, 46, 0.4), transparent 70%);
    animation: floatY 9s ease-in-out infinite;
}

.hero-halo.vert {
    bottom: 24%;
    left: 4%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(47, 107, 82, 0.45), transparent 70%);
    animation: floatY2 11s ease-in-out infinite;
}

.hero-contenu {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px clamp(20px, 5vw, 64px) clamp(40px, 7vh, 72px);
}

.hero-pastille {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(244, 241, 233, 0.35);
    border-radius: 999px;
    color: var(--ivoire);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-pastille span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ambre-clair);
}

.hero h1 {
    max-width: 15ch;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 6.4vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: #fdfbf4;
}

.hero h1 em {
    font-style: italic;
    color: var(--ambre-clair);
}

.hero-intro {
    max-width: 50ch;
    margin-top: 26px;
    color: rgba(244, 241, 233, 0.86);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.7;
}

.hero-boutons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}


/* ------------------------------------------------------------
   2. Bande de statistiques (bas du hero)
   ------------------------------------------------------------ */
.stats-bande {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
    border-top: 1px solid rgba(244, 241, 233, 0.18);
    background: rgba(13, 37, 27, 0.35);
    backdrop-filter: blur(6px);
}

.stat {
    padding: 30px 0;
}

.stat:not(:first-child) {
    padding-left: 30px;
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(244, 241, 233, 0.14);
}

.stat-chiffre {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1;
    color: #fdfbf4;
}

.stat-label {
    margin-top: 6px;
    color: rgba(244, 241, 233, 0.7);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}


/* ------------------------------------------------------------
   3. Mission
   ------------------------------------------------------------ */
.grille-mission {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.mission-texte {
    position: relative;
    max-width: 30ch;
    padding-left: 26px;
    border-left: 2px solid var(--ambre);
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.32;
    letter-spacing: -0.01em;
    color: var(--encre-titre);
}

.mission-texte em {
    font-style: italic;
    color: var(--ambre);
}

.mission-visuel {
    position: relative;
}

.mission-image {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(13, 37, 27, 0.22);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-carte {
    position: absolute;
    bottom: -26px;
    left: -26px;
    max-width: 230px;
    padding: 22px 26px;
    background: var(--vert-profond);
    color: var(--ivoire);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(13, 37, 27, 0.3);
}

.mission-carte-annee {
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    color: var(--ambre-clair);
}

.mission-carte p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(244, 241, 233, 0.85);
}


/* ------------------------------------------------------------
   4. Impact (bande verte)
   ------------------------------------------------------------ */
.impact {
    background: var(--vert-profond);
    color: var(--ivoire);
}

.impact .etiquette,
.impact .etiquette .trait {
    color: var(--ambre-clair);
    background: transparent;
}

.impact .etiquette .trait {
    background: var(--ambre-clair);
}

.impact h2 {
    color: var(--ivoire);
}

.impact-intro {
    max-width: 640px;
    margin-bottom: 64px;
}

.impact-intro p {
    margin-top: 18px;
    color: rgba(244, 241, 233, 0.74);
    font-size: 1.05rem;
    line-height: 1.7;
}

.impact-grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(244, 241, 233, 0.18);
}

.impact-bloc {
    padding: 44px 36px;
}

.impact-bloc:first-child {
    padding-left: 0;
}

.impact-bloc:not(:last-child) {
    border-right: 1px solid rgba(244, 241, 233, 0.18);
}

.impact-chiffre {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    line-height: 1;
    color: #fdfbf4;
}

.impact-titre {
    margin-top: 14px;
    font-size: 1.05rem;
    font-weight: 600;
}

.impact-bloc p {
    margin-top: 6px;
    color: rgba(244, 241, 233, 0.65);
    font-size: 0.92rem;
}


/* ------------------------------------------------------------
   5. Programmes (cartes)
   ------------------------------------------------------------ */
.entete-double {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}

.entete-double p {
    max-width: 42ch;
    color: var(--gris-texte);
    font-size: 1.02rem;
    line-height: 1.7;
}

.grille-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.carte {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 38px 34px;
    background: var(--ivoire-carte);
    border: 1px solid rgba(23, 61, 45, 0.1);
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carte:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-carte);
}

.carte.sombre {
    background: var(--vert-profond);
    border-color: var(--vert-profond);
    color: var(--ivoire);
}

.carte-num {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ambre);
}

.carte.sombre .carte-num {
    color: var(--ambre-clair);
}

.carte h3 {
    margin-top: 18px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.55rem;
    color: var(--encre-titre);
}

.carte.sombre h3 {
    color: var(--ivoire);
}

.carte p {
    flex: 1;
    margin-top: 14px;
    color: var(--gris-texte);
    font-size: 0.98rem;
    line-height: 1.7;
}

.carte.sombre p {
    color: rgba(244, 241, 233, 0.78);
}

.carte-lien {
    margin-top: 24px;
    color: var(--vert-profond);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
}


/* ------------------------------------------------------------
   6. Parcours (timeline)
   ------------------------------------------------------------ */
.parcours {
    background: var(--ivoire-fonce);
}

.parcours-entete {
    text-align: center;
    margin-bottom: 64px;
}

.parcours-entete .etiquette {
    justify-content: center;
}

.parcours-grille {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 84px);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.frise {
    position: relative;
}

/* Collage d'images, côté droit */
.parcours-photos {
    position: sticky;
    top: 110px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 16px;
}

.parcours-photo {
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(13, 37, 27, 0.16);
}

.parcours-photo.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.parcours-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parcours-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 18px 20px;
    background: var(--vert-profond);
    color: var(--ivoire);
    border-radius: 6px;
}

.parcours-badge-chiffre {
    font-family: var(--serif);
    font-size: 2.6rem;
    line-height: 1;
    color: var(--ambre-clair);
}

.parcours-badge-texte {
    font-size: 0.84rem;
    line-height: 1.4;
    color: rgba(244, 241, 233, 0.85);
}

.frise-ligne {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(23, 61, 45, 0.25);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.3s var(--ease-doux);
}

.frise-ligne.visible {
    transform: scaleY(1);
}

.frise-etape {
    position: relative;
    padding: 0 0 48px 44px;
}

.frise-etape:last-child {
    padding-bottom: 0;
}

.frise-point {
    position: absolute;
    left: -6.5px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ambre);
    box-shadow: 0 0 0 5px var(--ivoire-fonce);
}

.frise-etape:last-child .frise-point {
    background: var(--vert-profond);
}

.frise-annee {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--vert-moyen);
}

.frise-etape h3 {
    margin-top: 6px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--encre-titre);
}

.frise-etape p {
    max-width: 60ch;
    margin-top: 8px;
    color: var(--gris-texte);
    font-size: 0.98rem;
    line-height: 1.7;
}


/* ------------------------------------------------------------
   7. Actualités
   ------------------------------------------------------------ */
.carte-actu {
    overflow: hidden;
    background: var(--ivoire-carte);
    border: 1px solid rgba(23, 61, 45, 0.1);
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carte-actu:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-carte);
}

.carte-actu-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.carte-actu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carte-actu:hover .carte-actu-image img {
    transform: scale(1.06);
}

.carte-actu-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--ambre);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
}

.carte-actu-corps {
    padding: 26px;
}

.carte-actu-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--gris-doux);
}

.carte-actu-meta .cat {
    color: var(--vert-moyen);
    font-weight: 600;
}

.carte-actu h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.28rem;
    line-height: 1.3;
    color: var(--encre-titre);
}

.carte-actu p {
    margin-top: 12px;
    color: var(--gris-texte);
    font-size: 0.94rem;
    line-height: 1.65;
}


/* ------------------------------------------------------------
   8. Témoignages
   ------------------------------------------------------------ */
.temoignages {
    background: var(--vert-profond);
    color: var(--ivoire);
    text-align: center;
}

.temoignages-inner {
    max-width: 980px;
    margin: 0 auto;
}

.temoignage-guillemet {
    font-family: var(--serif);
    font-style: italic;
    font-size: 4rem;
    line-height: 0.6;
    height: 36px;
    color: var(--ambre-clair);
}

.temoignage-piste {
    position: relative;
    min-height: 200px;
    margin-top: 18px;
}

.temoignage {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.temoignage:first-child {
    position: relative;
}

.temoignage:not(:first-child) {
    position: absolute;
    inset: 0;
}

.temoignage.actif {
    opacity: 1;
}

.temoignage p.citation {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.temoignage p.auteur {
    margin-top: 26px;
    color: var(--ambre-clair);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.temoignage-puces {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}

.puce {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(244, 241, 233, 0.35);
    cursor: pointer;
    transition: background 0.3s ease;
}

.puce.actif {
    background: var(--ambre-clair);
}


/* ------------------------------------------------------------
   9. Partenaires (défilement continu)
   ------------------------------------------------------------ */
.partenaires {
    padding: clamp(56px, 7vw, 90px) 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(23, 61, 45, 0.1);
}

.partenaires-titre {
    margin-bottom: 40px;
    text-align: center;
    color: var(--gris-doux);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marquee {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-piste {
    display: flex;
    align-items: center;
    gap: 68px;
    width: max-content;
    padding-left: 68px;
    animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-piste {
    animation-play-state: paused;
}

.marquee-piste span {
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--encre-titre);
    opacity: 0.5;
}


/* ------------------------------------------------------------
   10. Bande de don
   ------------------------------------------------------------ */
.don-cta {
    position: relative;
    overflow: hidden;
    background: var(--vert-fonce);
    color: var(--ivoire);
    text-align: center;
}

.don-cta-halo {
    position: absolute;
    top: -80px;
    right: -40px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 122, 46, 0.25), transparent 70%);
    filter: blur(30px);
    animation: floatY 10s ease-in-out infinite;
}

.don-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.don-cta h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ivoire);
}

.don-cta p {
    max-width: 56ch;
    margin: 20px auto 0;
    color: rgba(244, 241, 233, 0.78);
    font-size: 1.1rem;
    line-height: 1.7;
}


/* ------------------------------------------------------------
   11. Contact + newsletter
   ------------------------------------------------------------ */
.contact {
    background: var(--ivoire-fonce);
}

.grille-contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(36px, 5vw, 72px);
}

.contact h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--encre-titre);
}

.contact-intro {
    max-width: 48ch;
    margin-top: 16px;
    color: var(--gris-texte);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-infos {
    margin-top: 34px;
    display: grid;
    gap: 18px;
}

.contact-ligne {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding-top: 16px;
    border-top: 1px solid rgba(23, 61, 45, 0.14);
}

.contact-ligne .cle {
    min-width: 130px;
    color: var(--gris-doux);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.contact-ligne .valeur {
    color: var(--encre-titre);
    font-weight: 500;
}

.newsletter {
    align-self: start;
    padding: clamp(32px, 4vw, 48px);
    background: var(--vert-profond);
    color: var(--ivoire);
    border-radius: 6px;
}

.newsletter h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.7rem;
}

.newsletter p {
    margin-top: 12px;
    color: rgba(244, 241, 233, 0.75);
    font-size: 0.98rem;
    line-height: 1.65;
}

.newsletter form {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(244, 241, 233, 0.06);
    border: 1px solid rgba(244, 241, 233, 0.25);
    border-radius: 6px;
    color: var(--ivoire);
    font-family: var(--sans);
    font-size: 0.98rem;
    outline: none;
}

.newsletter button {
    cursor: pointer;
    border: none;
    background: var(--ambre);
    color: #fff;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 15px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.newsletter button:hover {
    transform: translateY(-2px);
}

.newsletter-message {
    min-height: 18px;
    margin-top: 2px;
    color: var(--ambre-clair);
    font-size: 0.86rem;
}

.reseaux {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(244, 241, 233, 0.16);
}

.reseaux a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(244, 241, 233, 0.28);
    border-radius: 50%;
    color: var(--ivoire);
    transition: background 0.3s ease, color 0.3s ease;
}

.reseaux a:hover {
    background: var(--ambre-clair);
    color: var(--vert-profond);
}


/* ------------------------------------------------------------
   12. Améliorations d'animation (accueil)
   ------------------------------------------------------------ */

/* Titre du hero : mot accentué qui scintille doucement */
@keyframes scintille {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero h1 em {
    background: linear-gradient(90deg,
                var(--ambre-clair),
                #f3d9a8,
                var(--ambre),
                var(--ambre-clair));
    background-size: 220% auto;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scintille 5s ease-in-out infinite;
}

/* Grain léger pour donner de la matière au hero */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Indicateur de défilement */
@keyframes molette {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(10px); opacity: 0.2; }
    100% { transform: translateY(10px); opacity: 0; }
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 188px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(244, 241, 233, 0.75);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll-souris {
    display: flex;
    justify-content: center;
    width: 24px;
    height: 38px;
    padding-top: 7px;
    border: 1.5px solid rgba(244, 241, 233, 0.5);
    border-radius: 999px;
}

.hero-scroll-souris span {
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--ambre-clair);
    animation: molette 1.8s ease-in-out infinite;
}

/* Révélation d'image par balayage (clip-path) */
.clip-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.1s var(--ease-doux);
}

.clip-reveal.visible {
    clip-path: inset(0 0 0 0);
}

/* Léger relief 3D sur les cartes au survol (piloté en JS) */
.carte,
.carte-actu {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Soulignement qui se trace sous les titres de section */
.titre-anim {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.titre-anim::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--ambre);
    transition: width 0.9s var(--ease-doux) 0.2s;
}

.titre-anim.visible::after {
    width: 64px;
}

/* Boutons magnétiques : transition douce du déplacement */
[data-magnetic] {
    transition: transform 0.25s var(--ease-doux), box-shadow 0.3s ease;
}

/* Halos du hero : suivent légèrement la souris */
.hero-halo {
    transition: transform 0.5s ease-out;
}


/* ------------------------------------------------------------
   13. Section « Nos domaines d'action »
   ------------------------------------------------------------ */
.domaines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(23, 61, 45, 0.1);
    border: 1px solid rgba(23, 61, 45, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.domaine {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 34px 30px;
    background: var(--ivoire-carte);
    text-decoration: none;
    transition: background 0.35s ease;
}

.domaine:hover {
    background: #fff;
}

.domaine-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(189, 122, 46, 0.12);
    color: var(--ambre);
    transition: transform 0.35s var(--ease-doux);
}

.domaine:hover .domaine-icone {
    transform: translateY(-4px) rotate(-6deg);
}

.domaine h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--encre-titre);
}

.domaine p {
    color: var(--gris-texte);
    font-size: 0.94rem;
    line-height: 1.6;
}

.domaine-fleche {
    margin-top: auto;
    color: var(--vert-moyen);
    font-weight: 600;
    font-size: 0.88rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.domaine:hover .domaine-fleche {
    opacity: 1;
    transform: translateX(0);
}


/* ------------------------------------------------------------
   14. Section « Où va votre don ? » (transparence)
   ------------------------------------------------------------ */
.transparence {
    background: var(--ivoire-fonce);
}

.transparence-grille {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.transparence-chiffre {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 28px;
}

.transparence-chiffre .grand {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 4.4rem);
    line-height: 1;
    color: var(--vert-profond);
}

.transparence-chiffre .legende {
    max-width: 22ch;
    color: var(--gris-texte);
    font-size: 0.96rem;
    line-height: 1.5;
}

.repartition {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.repartition-ligne .haut {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.repartition-ligne .nom {
    color: var(--encre-titre);
    font-weight: 600;
    font-size: 1rem;
}

.repartition-ligne .pct {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--ambre);
}

.repartition-piste {
    height: 10px;
    border-radius: 999px;
    background: rgba(23, 61, 45, 0.1);
    overflow: hidden;
}

.repartition-jauge {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vert-moyen), var(--ambre));
    transition: width 1.3s var(--ease-doux);
}

.repartition-ligne .desc {
    margin-top: 8px;
    color: var(--gris-texte);
    font-size: 0.88rem;
    line-height: 1.5;
}


/* ------------------------------------------------------------
   15. Section « Questions fréquentes » (accordéon)
   ------------------------------------------------------------ */
.faq {
    max-width: 880px;
    margin: 48px auto 0;
}

.faq-item {
    border-top: 1px solid rgba(23, 61, 45, 0.14);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(23, 61, 45, 0.14);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 26px 4px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--encre-titre);
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--vert-moyen);
}

.faq-signe {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(23, 61, 45, 0.25);
    border-radius: 50%;
    color: var(--vert-profond);
    transition: transform 0.4s var(--ease-doux), background 0.3s ease, color 0.3s ease;
}

.faq-item.ouvert .faq-signe {
    transform: rotate(135deg);
    background: var(--vert-profond);
    color: var(--ivoire);
}

.faq-reponse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-doux);
}

.faq-reponse p {
    padding: 0 4px 26px;
    max-width: 64ch;
    color: var(--gris-texte);
    font-size: 1rem;
    line-height: 1.75;
}
