@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══════════ VARIABLES ═══════════ */
:root {
    --marine:     #1d3557;
    --marine-dark:#14263f;
    --rouge:      #e63946;
    --rouge-dark: #c0303a;
    --creme:      #fdf6ee;
    --or:         #f4a261;
    --text:       #1a1a2e;
    --text-muted: #6b7280;
    --white:      #ffffff;
    --border:     #e8e8e8;
    --navbar-h:   72px;
    --radius:     14px;
    --shadow:     0 4px 24px rgba(29,53,87,.10);
    --shadow-lg:  0 12px 48px rgba(29,53,87,.16);
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
em { font-style: italic; color: var(--rouge); }
strong { font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--navbar-h);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    box-shadow: 0 1px 0 var(--border);
    z-index: 1000;
    transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex !important; align-items: center; gap: .5rem; }
.nlt-icon { font-size: 1.4rem; }
.nlt-name { display: flex; flex-direction: column; line-height: 1.15; }
.nlt-name strong { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--marine); }
.nlt-name small { font-size: .72rem; font-weight: 400; color: var(--text-muted); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: .02em;
    position: relative;
    padding-bottom: 2px;
    transition: color .2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--rouge);
    transition: width .25s ease;
}
.nav-links a:hover { color: var(--rouge); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: .8rem; }

/* Bouton "Faire un don" dans la navbar */
.btn-don {
    background: rgba(230,57,70,.1);
    color: var(--rouge);
    padding: .42rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-don:hover { background: var(--rouge); color: #fff; }

/* Bouton "Mon espace" — inchangé */
.nav-cta {
    background: var(--rouge);
    color: var(--white) !important;
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--rouge-dark); transform: translateY(-1px); }
.nav-cta-account {
    background: var(--marine) !important;
    border: 2px solid var(--marine);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--marine);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, width .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .2s;
}
.mobile-link:hover { color: var(--rouge); padding-left: .5rem; }
.mobile-btns { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.mobile-btns .btn { text-align: center; }

/* ═══════════ BOUTONS ═══════════ */
.btn {
    display: inline-block;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform .18s, box-shadow .18s, background .18s, color .18s;
    letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--rouge);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(230,57,70,.3);
}
.btn-primary:hover {
    background: var(--rouge-dark);
    box-shadow: 0 8px 24px rgba(230,57,70,.38);
}

.btn-warm {
    background: var(--or);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244,162,97,.35);
}
.btn-warm:hover {
    background: #e08e52;
    box-shadow: 0 8px 24px rgba(244,162,97,.42);
}

.btn-ghost {
    background: transparent;
    color: var(--marine);
    border: 2px solid var(--marine);
}
.btn-ghost:hover { background: var(--marine); color: var(--white); }

.btn-full { width: 100%; text-align: center; }

/* ═══════════ SECTIONS — UTILITAIRES ═══════════ */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: .8rem;
}
.section-tag.light { color: rgba(255,255,255,.65); }
.section-tag-light {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .8rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { color: var(--marine); margin: .4rem 0 .8rem; }
.section-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.75;
}
.section-header.center .section-lead { margin: 0 auto; }

/* ═══════════ HERO ═══════════ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--navbar-h);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff8f0 0%, var(--creme) 45%, #f0f5ff 100%);
    z-index: 0;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
}
.hs1 {
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(244,162,97,.18), transparent 65%);
}
.hs2 {
    width: 420px; height: 420px;
    bottom: -120px; left: -120px;
    background: radial-gradient(circle, rgba(29,53,87,.07), transparent 65%);
}
.hs3 {
    width: 280px; height: 280px;
    top: 35%; left: 32%;
    background: radial-gradient(circle, rgba(230,57,70,.06), transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem clamp(1.5rem, 5vw, 4rem) 6rem;
    text-align: center;
}
.hero-content .hero-badge { display: inline-flex; }
.hero-content .hero-lead { margin-left: auto; margin-right: auto; }
.hero-content .hero-actions { justify-content: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(29,53,87,.08);
    color: var(--marine);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .06em;
    padding: .42rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--rouge);
    border-radius: 50%;
    animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .7; }
}

.hero h1 { color: var(--marine); margin-bottom: 1.4rem; }

.hero-lead {
    font-size: 1.06rem;
    color: var(--text-muted);
    max-width: 530px;
    line-height: 1.82;
    font-weight: 300;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.hero-metrics {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.1rem 1.6rem;
    background: rgba(255,255,255,.88);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(29,53,87,.08);
    box-shadow: var(--shadow);
}
.hm-item { text-align: center; }
.hm-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--marine);
    line-height: 1;
    margin-bottom: .15rem;
}
.hm-item strong sup { font-size: .85rem; }
.hm-item span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    font-weight: 400;
}
.hm-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
    position: relative;
    height: 420px;
}
.hv-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.r1 {
    width: 340px; height: 340px;
    border: 1px dashed rgba(29,53,87,.12);
    animation: spinRing 22s linear infinite;
}
.r2 {
    width: 220px; height: 220px;
    border: 1px dashed rgba(230,57,70,.15);
    animation: spinRing 16s linear infinite reverse;
}
@keyframes spinRing {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hv-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hvc-main {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 255px;
    z-index: 3;
}
.hvc-emoji-lg { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.hvc-body strong {
    display: block;
    font-size: .92rem;
    color: var(--marine);
    font-weight: 700;
    margin-bottom: .25rem;
}
.hvc-body p { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; line-height: 1.4; }
.hvc-badge {
    display: inline-block;
    background: var(--rouge);
    color: #fff;
    font-size: .66rem;
    font-weight: 600;
    padding: .22rem .7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hvc-sm {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    font-size: .83rem;
    font-weight: 600;
    color: var(--marine);
    white-space: nowrap;
    z-index: 2;
}
.hvc-emoji { font-size: 1.1rem; }

.hvc-tl { top: 32px; left: 8%; animation: floatCard 3.2s ease-in-out infinite; }
.hvc-br { bottom: 44px; right: 2%; animation: floatCard 3.2s ease-in-out infinite 1.6s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.hv-pill {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: var(--marine);
    color: rgba(255,255,255,.85);
    font-size: .73rem;
    font-weight: 500;
    padding: .42rem 1rem;
    border-radius: 50px;
    z-index: 3;
    white-space: nowrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    z-index: 2;
}
.hero-scroll-indicator span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(29,53,87,.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
}
.scroll-dot {
    width: 4px; height: 8px;
    background: var(--rouge);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
    0% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; }
}

/* ═══════════ STATS BAR ═══════════ */
.stats-bar {
    background: var(--marine);
    padding: 2.8rem clamp(1.5rem, 5vw, 4rem);
}
.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item { text-align: center; padding: .8rem 3rem; }
.stat-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--or);
    line-height: 1;
    margin-bottom: .3rem;
}
.stat-item span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.65);
    font-weight: 300;
}
.stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.stat-item strong .counter {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--or);
    line-height: 1;
}

/* ═══════════ QUI SOMMES-NOUS ═══════════ */
.about-section {
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    background: var(--white);
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .95fr;
    align-items: center;
    gap: 6rem;
}
.about-text .section-tag { margin-bottom: .8rem; }
.about-text h2 { color: var(--marine); margin: .4rem 0 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.82; }
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}
.about-badge {
    background: rgba(29,53,87,.07);
    color: var(--marine);
    font-size: .78rem;
    font-weight: 500;
    padding: .3rem .85rem;
    border-radius: 50px;
    border: 1px solid rgba(29,53,87,.12);
}

/* About visual */
.about-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.av-circle { position: absolute; border-radius: 50%; }
.c1 {
    width: 370px; height: 370px;
    top: -30px; right: -30px;
    background: radial-gradient(circle, rgba(244,162,97,.13), rgba(244,162,97,.03));
    border: 1px solid rgba(244,162,97,.22);
}
.c2 {
    width: 210px; height: 210px;
    bottom: -10px; left: 0;
    background: rgba(29,53,87,.04);
    border: 1px solid rgba(29,53,87,.08);
}
.av-quote-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 2.4rem;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--rouge);
    max-width: 340px;
}
.avq-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    color: var(--rouge);
    line-height: 1;
    opacity: .25;
    margin-bottom: .3rem;
}
.av-quote-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.06rem;
    color: var(--marine);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: .9rem;
}
.av-quote-card cite { font-size: .8rem; color: var(--rouge); font-weight: 500; font-style: normal; }
.av-mini-card {
    position: absolute;
    bottom: -24px; right: -32px;
    background: var(--marine);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    display: flex;
    gap: 1.5rem;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}
.avm-item strong { display: block; color: #fff; font-size: .85rem; margin-bottom: .18rem; }
.avm-item span { color: rgba(255,255,255,.6); font-size: .74rem; }
.avm-sep { width: 1px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ═══════════ NOS ACTIONS ═══════════ */
.actions-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--creme);
}
.actions-section .section-wrap { padding-top: 0; padding-bottom: 0; }

/* Carte vedette */
.action-featured {
    background: var(--marine);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    overflow: hidden;
}
.action-featured::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
.af-deco { font-size: 4.5rem; line-height: 1; margin-top: .2rem; }
.af-badge {
    display: inline-block;
    background: var(--rouge);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: .26rem .85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .8rem;
}
.af-content h3 { color: #fff; font-size: 1.8rem; margin-bottom: 1rem; }
.af-content > p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.78; margin-bottom: 1.4rem; }
.af-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .6rem; }
.af-list li { color: rgba(255,255,255,.8); font-size: .88rem; }

/* Grille des 4 autres actions */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.action-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    position: relative;
}
.action-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ac-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}
.action-card h3 { color: var(--marine); font-size: 1.05rem; margin-bottom: .7rem; }
.action-card > p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; }
.ac-tag {
    font-size: .71rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(29,53,87,.06);
    padding: .24rem .75rem;
    border-radius: 50px;
}

/* ═══════════ LE BUREAU ═══════════ */
.bureau-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--white);
}
.bureau-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}
.bureau-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.4rem 2rem;
    border: 1.5px solid var(--border);
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
    overflow: hidden;
}
.bureau-card:hover { border-color: rgba(29,53,87,.25); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bureau-card-featured { border-color: var(--marine); box-shadow: var(--shadow); }
.bc-deco {
    position: absolute;
    top: 1rem; right: 1.2rem;
    font-size: 1.8rem;
    opacity: .2;
}
.bc-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 auto 1.3rem;
}
.bureau-card h3 { color: var(--marine); font-size: 1.12rem; margin-bottom: .4rem; }
.bc-role {
    display: inline-block;
    background: rgba(29,53,87,.07);
    color: var(--marine);
    font-size: .75rem;
    font-weight: 600;
    padding: .26rem .85rem;
    border-radius: 50px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.bureau-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.65; }

/* ═══════════ IMPACT ═══════════ */
.impact-section {
    background: linear-gradient(135deg, var(--marine-dark) 0%, #1a3a6e 100%);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}
.impact-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(244,162,97,.12) 0%, transparent 70%);
    pointer-events: none;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.impact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    transition: background .25s, transform .25s;
}
.impact-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.impact-icon { font-size: 2.4rem; line-height: 1; margin-bottom: .9rem; }
.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    font-weight: 900;
    color: var(--or);
    line-height: 1;
    margin-bottom: .5rem;
}
.impact-suffix { font-size: .65em; vertical-align: super; }
.impact-label {
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.68);
    font-weight: 500;
    line-height: 1.4;
}

/* ═══════════ NOS VALEURS ═══════════ */
.valeurs-section {
    background: var(--marine);
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.valeurs-section .section-wrap { padding-top: 0; padding-bottom: 0; }
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}
.valeur-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background .25s, border-color .25s, transform .25s;
}
.valeur-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-4px);
}
.vl-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.valeur-card h3 { color: #fff; font-size: 1rem; margin-bottom: .6rem; }
.valeur-card p { color: rgba(255,255,255,.6); font-size: .83rem; line-height: 1.6; }

/* ═══════════ DEVENIR BÉNÉVOLE ═══════════ */
.benv-section {
    background: var(--creme);
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.benv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.benv-content .section-tag { margin-bottom: .8rem; }
.benv-content h2 { color: var(--marine); margin: .4rem 0 1.2rem; }
.benv-content > p { color: var(--text-muted); font-size: 1rem; line-height: 1.82; margin-bottom: 1.8rem; }
.benv-avantages { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.benv-av {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    box-shadow: 0 2px 8px rgba(29,53,87,.06);
}
.bav-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .05rem; }
.benv-av strong { display: block; color: var(--marine); font-size: .9rem; font-weight: 600; margin-bottom: .15rem; }
.benv-av p { color: var(--text-muted); font-size: .82rem; margin: 0; }
.benv-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.benv-form-wrap h3 { color: var(--marine); font-size: 1.35rem; margin-bottom: .4rem; }
.benv-form-wrap > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.8rem; }
.benv-form { display: grid; gap: 1rem; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bf-group { display: flex; flex-direction: column; gap: .35rem; }
.bf-group label { font-size: .82rem; font-weight: 500; color: var(--marine); }
.bf-group input,
.bf-group textarea {
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    color: var(--text);
    background: #fafafa;
    transition: border-color .2s, background .2s;
    resize: vertical;
}
.bf-group input:focus,
.bf-group textarea:focus { outline: none; border-color: var(--marine); background: var(--white); }
.bf-group input::placeholder,
.bf-group textarea::placeholder { color: #b0b8c4; }

/* ═══════════ GALERIE ═══════════ */
.galerie-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: #f8fafc;
}
.galerie-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 1rem;
}
.gal-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}
.gal-card:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.gal-icon { font-size: 3rem; }
.gal-card strong { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--marine); }
.gal-card p { font-size: .8rem; color: var(--text-muted); max-width: 180px; }
.gal-lg { grid-row: span 2; }
.gal-noel { background: #d5e3f7; border: 2px solid #afc7ee; }
.gal-loto { background: #fde8e8; border: 2px solid #f5b8b8; }
.gal-cabaret { background: #ede9fe; border: 2px solid #c4b5fd; }
.gal-ptits { background: #d1fae5; border: 2px solid #86efac; }
.gal-coming { background: var(--white); border: 2px dashed #d1d5db; }

/* ═══════════ GALERIE MARQUEE (flyers) ═══════════ */
.gal-track-wrap {
    overflow: hidden;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.gal-track-wrap:hover .gal-track { animation-play-state: paused; }
.gal-track {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    width: max-content;
    will-change: transform;
    animation: marquee-rtl linear infinite;
}
@keyframes marquee-rtl {
    0%   { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}
.gal-flyer-card {
    width: 160px;
    height: 224px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    padding: 0;
    background: var(--marine);
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 18px rgba(0,0,0,.14);
}
.gal-flyer-card:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.24); }
.gal-flyer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gal-flyer-card:hover img { transform: scale(1.06); }
.gal-flyer-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(20,38,63,.88));
    padding: 2rem .85rem .7rem;
}
.gal-flyer-overlay strong {
    display: block;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .15rem;
}
.gal-flyer-overlay span { color: rgba(255,255,255,.62); font-size: .7rem; }
.gal-flyer-date {
    position: absolute;
    top: 8px; left: 8px;
    background: rgba(20,38,63,.72);
    color: #fff;
    font-size: .68rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .18rem .52rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* ═══════════ LIGHTBOX ALBUM ═══════════ */
.gal-lb-close {
    position: fixed;
    top: 1rem; right: 1.5rem;
    z-index: 10002;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    width: 44px; height: 44px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.gal-lb-close:hover { background: rgba(255,255,255,.25); }
.gal-lb-meta {
    position: fixed;
    top: 1.2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: .4rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}
.gal-lb-meta strong { color: #fff; font-size: .84rem; font-weight: 600; }
.gal-lb-meta span { color: rgba(255,255,255,.6); font-size: .8rem; }
#galLbCount { font-variant-numeric: tabular-nums; }
.gal-lb-imgwrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
#galLbImg {
    max-width: 85vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 64px rgba(0,0,0,.55);
}
.gal-lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 50%;
    width: 48px; height: 48px;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
    z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.gal-lb-nav:hover { background: rgba(255,255,255,.22); }
.gal-lb-prev { left: -64px; }
.gal-lb-next { right: -64px; }
@media (max-width: 700px) {
    .gal-lb-prev { left: .3rem; }
    .gal-lb-next { right: .3rem; }
    #galLbImg { max-width: 92vw; max-height: 72vh; border-radius: 8px; }
    .gal-flyer-card { width: 130px; height: 182px; }
    .gal-lb-meta {
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 78vw;
        text-align: center;
        gap: .3rem .6rem;
        padding: .35rem .8rem;
    }
    .gal-lb-nav { width: 42px; height: 42px; font-size: 1.5rem; opacity: .9; }
    /* Largeur suffisante pour que les boutons ne cachent pas le centre */
    .gal-lb-imgwrap { gap: 0; }
}

/* Placeholder galerie (aucune photo) */
.galerie-placeholder {
    display: flex;
    justify-content: center;
}
.gal-placeholder-inner {
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed #d1d5db;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
}
.gal-ph-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.gal-placeholder-inner strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--marine); margin-bottom: .6rem; }
.gal-placeholder-inner p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ═══════════ ACTUALITÉS ═══════════ */
.actu-section {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: #f8fafc;
}
.actu-section .section-wrap { padding-top: 0; padding-bottom: 0; }
.actu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.actu-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 4px solid var(--marine);
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.actu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.actu-img-wrap { position: relative; height: 180px; overflow: hidden; flex-shrink: 0; }
.actu-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.actu-card:hover .actu-img { transform: scale(1.04); }
.actu-tag {
    position: absolute;
    bottom: 10px; left: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    padding: .22rem .65rem;
    border-radius: 20px;
    letter-spacing: .04em;
}
.actu-body-wrap { padding: 1.3rem 1.5rem; flex: 1; }
.actu-date {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: .55rem;
}
.actu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--marine);
    margin: 0 0 .7rem;
    line-height: 1.35;
}
.actu-body { font-size: .87rem; line-height: 1.65; color: #374151; }
.actu-more { color: var(--text-muted); }

/* Boutons partage actualités */
.actu-share {
    display: flex;
    gap: .35rem;
    margin-top: .75rem;
    padding-top: .65rem;
    border-top: 1px solid #f0f0f0;
}
.actu-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e4e8f0;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.actu-share-btn:hover { background: var(--marine); color: #fff; border-color: var(--marine); }
.actu-share-btn.copied { background: #059669; color: #fff; border-color: #059669; }

/* Newsletter */
.newsletter-wrap {
    background: linear-gradient(135deg, var(--marine) 0%, #1a3a6e 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.nl-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}
.nl-icon { font-size: 2rem; flex-shrink: 0; }
.nl-text strong { display: block; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.nl-text p { color: rgba(255,255,255,.65); font-family: 'DM Sans', sans-serif; font-size: .85rem; margin: 0; }
.nl-form { display: flex; gap: .5rem; flex-wrap: wrap; flex: 1; min-width: 240px; }
.nl-input {
    flex: 1;
    min-width: 180px;
    padding: .65rem 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.45); }
.nl-input:focus { border-color: var(--or); }
.nl-btn {
    padding: .65rem 1.4rem;
    background: var(--or);
    color: var(--marine);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.nl-btn:hover { background: #e8922a; transform: translateY(-1px); }
.nl-success {
    flex: 1;
    background: rgba(34,197,94,.15);
    color: #bbf7d0;
    border-radius: 10px;
    padding: .75rem 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
}

/* ═══════════ TÉMOIGNAGES ═══════════ */
.temoignages-section {
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: var(--creme);
}
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.temoignage-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(29,53,87,.07);
    border: 1.5px solid rgba(29,53,87,.07);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform .25s, box-shadow .25s;
}
.temoignage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(29,53,87,.13); }
.temoignage-card-featured {
    background: var(--marine);
    border-color: var(--marine);
}
.temoignage-card-featured .tm-text { color: rgba(255,255,255,.85); }
.temoignage-card-featured .tm-quote { color: var(--or); }
.temoignage-card-featured strong { color: #fff !important; }
.temoignage-card-featured span { color: rgba(255,255,255,.55) !important; }
.tm-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: .6;
    color: var(--rouge);
    opacity: .6;
}
.tm-text {
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    line-height: 1.75;
    color: #374151;
    flex: 1;
    font-style: italic;
}
.tm-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 1rem;
}
.tm-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    flex-shrink: 0;
}
.tm-author strong { display: block; font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--marine); }
.tm-author span   { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--text-muted); }

/* ═══════════ CONTACT ═══════════ */
.contact-section {
    background: var(--marine);
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 { color: var(--white); margin: .4rem 0 1.2rem; }
.contact-info > p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; }
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.cl-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: -.05rem; }
.contact-list li strong { display: block; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500; margin-bottom: .12rem; }
.contact-list li span { color: rgba(255,255,255,.6); font-size: .84rem; }
.contact-social > span {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.45);
    margin-bottom: .8rem;
    font-weight: 500;
}
.social-links { display: flex; flex-direction: column; gap: .55rem; }
.social-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.65);
    font-size: .86rem;
    transition: color .2s;
}
.social-link:hover { color: #fff; }
.contact-form-wrap {
    background: var(--white);
    border-radius: calc(var(--radius) + 4px);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 500; color: var(--marine); letter-spacing: .02em; }
.form-group input,
.form-group textarea {
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    color: var(--text);
    background: #fafafa;
    transition: border-color .2s, background .2s;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--marine); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c4; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--marine-dark); }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 5vw, 4rem) 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--white);
    display: block;
    margin-bottom: .3rem;
}
.footer-brand span {
    font-size: .76rem;
    color: rgba(255,255,255,.38);
    display: block;
    margin-bottom: .08rem;
}
.footer-brand p {
    font-size: .82rem;
    color: rgba(255,255,255,.48);
    line-height: 1.65;
    margin-top: .9rem;
}
.footer-col strong {
    display: block;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.38);
    margin-bottom: 1rem;
    font-weight: 500;
}
.footer-col a {
    display: block;
    font-size: .84rem;
    color: rgba(255,255,255,.58);
    padding: .22rem 0;
    transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-social-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .84rem;
    color: rgba(255,255,255,.58);
    padding: .22rem 0;
    transition: color .2s;
}
.footer-social-link:hover { color: rgba(255,255,255,.9); }
.footer-space-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.4rem;
    background: transparent;
    color: rgba(255,255,255,.75) !important;
    border: 1.5px solid rgba(255,255,255,.25);
    padding: .55rem 1.2rem;
    border-radius: 50px;
    font-size: .81rem;
    font-weight: 500;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.footer-space-btn:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.55);
    color: #fff !important;
    transform: translateY(-1px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.32); }
.footer-bottom strong { color: rgba(255,255,255,.48); font-weight: 500; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}
.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════ PARTENAIRES ═══════════ */
.partners-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 0;
    overflow: hidden;
}
.partners-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.partners-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.partners-track-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    will-change: transform;
    animation: marquee linear infinite;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    flex-shrink: 0;
    opacity: .75;
    transition: opacity .3s, filter .3s;
    filter: grayscale(1) sepia(1) hue-rotate(185deg) saturate(3);
}
.partner-logo:hover { opacity: 1; filter: none; }
.partner-logo img { height: 100%; width: auto; max-width: 130px; object-fit: contain; }
.partner-name-fallback {
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--marine);
    white-space: nowrap;
    padding: .35rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
    .valeurs-grid { grid-template-columns: repeat(3, 1fr); }
    .actions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .btn-don { display: none; }
    .hamburger { display: flex; }

    .hero h1 { font-size: clamp(2.2rem, 6vw, 3rem); }

    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }

    .action-featured { grid-template-columns: 1fr; gap: 1.5rem; }
    .af-list { grid-template-columns: 1fr; }

    .bureau-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

    .benv-inner { grid-template-columns: 1fr; gap: 3rem; }

    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gal-lg { grid-row: auto; grid-column: span 2; height: 180px; }

    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    .stats-inner { flex-wrap: wrap; gap: 1rem; }
    .stat-sep { display: none; }
    .stat-item { padding: .6rem 1.5rem; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-metrics { flex-wrap: wrap; gap: .8rem; }
    .hm-sep { display: none; }

    .actions-grid { grid-template-columns: 1fr; }
    .valeurs-grid { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: 1fr; }
    .gal-lg { grid-column: auto; }

    .bf-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   ESPACE BÉNÉVOLE
═══════════════════════════════════════════════════════ */

/* ── Auth pages ── */
.auth-page { background: var(--marine); min-height: 100vh; }
.account-page { background: #f4f6fb; min-height: 100vh; }

.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.auth-brand {
    background: var(--marine); color: #fff;
    padding: 2.5rem 3rem;
    display: flex; flex-direction: column; justify-content: space-between;
}
.auth-back { color: rgba(255,255,255,.6); font-size: .85rem; transition: color .2s; }
.auth-back:hover { color: #fff; }
.auth-brand-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.auth-logo { font-size: 3rem; display: block; margin-bottom: 1.5rem; }
.auth-brand h1 { font-size: 2.2rem; color: #fff; line-height: 1.2; margin-bottom: 1.2rem; }
.auth-brand p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.75; max-width: 340px; }
.auth-brand-footer { color: rgba(255,255,255,.35); font-size: .78rem; }

.auth-form-side {
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-wrap h2 { font-size: 1.8rem; color: var(--marine); margin-bottom: .4rem; }
.auth-sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; }
.auth-sub a { color: var(--rouge); font-weight: 500; }

/* ── Formulaires bénévole ── */
.benv .form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.benv .form-group label { font-size: .82rem; font-weight: 500; color: var(--marine); }
.benv .form-group small { font-size: .75rem; color: var(--text-muted); }
.benv .form-group input,
.benv .form-group textarea,
.benv .form-control-select {
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem; color: var(--text); background: #fafafa;
    transition: border-color .2s; width: 100%;
}
.benv .form-group input:focus,
.benv .form-group textarea:focus,
.benv .form-control-select:focus { outline: none; border-color: var(--marine); background: #fff; }
.benv .form-group textarea { resize: vertical; }
.benv .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-auth {
    width: 100%; padding: .85rem;
    background: var(--rouge); color: #fff; border: none;
    border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-size: .95rem; font-weight: 500; cursor: pointer;
    transition: background .2s, transform .15s; margin-top: .5rem;
}
.btn-auth:hover { background: var(--rouge-dark); transform: translateY(-1px); }

.alert { padding: .8rem 1.1rem; border-radius: var(--radius); font-size: .88rem; margin-bottom: 1.2rem; }
.alert-danger  { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-success a { color: #2e7d32; font-weight: 600; text-decoration: underline; }

/* ── Tabs connexion/inscription ── */
.auth-tabs {
    position: relative; display: grid; grid-template-columns: 1fr 1fr;
    background: #f0f4ff; border-radius: 50px; padding: 4px;
    margin-bottom: 2rem; overflow: hidden;
}
.auth-tab {
    position: relative; z-index: 1; background: none; border: none;
    padding: .6rem 1rem; font-family: 'DM Sans', sans-serif;
    font-size: .88rem; font-weight: 500; color: var(--text-muted);
    cursor: pointer; border-radius: 50px; transition: color .25s;
}
.auth-tab.active { color: var(--marine); }
.auth-tab-slider {
    position: absolute; top: 4px; left: 4px;
    width: calc(50% - 4px); height: calc(100% - 8px);
    background: #fff; border-radius: 50px;
    box-shadow: 0 2px 8px rgba(29,53,87,.12);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.auth-panel { display: none; animation: panelIn .22s ease; }
.auth-panel.visible { display: block; }
@keyframes panelIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.auth-switch { text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: 1.2rem; }
.link-btn {
    background: none; border: none; color: var(--rouge);
    font-family: 'DM Sans', sans-serif; font-size: .85rem;
    font-weight: 500; cursor: pointer; padding: 0;
}
.link-btn:hover { text-decoration: underline; }
.input-eye { position: relative; }
.input-eye input { padding-right: 3rem; width: 100%; }
.eye-btn {
    position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0;
}

/* ── Espace bénévole connecté ── */
.account-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    position: fixed;
    inset: 0;
    overflow: hidden;
}
.account-sidebar {
    background: var(--marine); color: #fff;
    padding: 2rem 1.5rem; display: flex; flex-direction: column;
    overflow-y: auto; height: 100%;
}
.account-main {
    background: #f4f6fb; padding: 2.5rem 3rem;
    overflow-y: auto; height: 100%;
}
.account-hero { margin-bottom: 2rem; }
.account-hero h1 { font-size: 2rem; color: var(--marine); margin-bottom: .3rem; }
.account-hero p { color: var(--text-muted); }

.acc-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.acc-card-head {
    font-weight: 600; font-size: .88rem; color: var(--marine);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--border);
}
.acc-empty { font-size: .88rem; color: var(--text-muted); padding: .5rem 0 .8rem; }

/* ── Événements ── */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.ev-card {
    background: #fff; border-radius: var(--radius); padding: 1.6rem;
    box-shadow: var(--shadow); border-top: 4px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ev-card.ev-inscrit { border-top-color: #2a9d8f; }
.ev-date { font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--rouge); margin-bottom: .6rem; }
.ev-card h3 { font-size: 1.1rem; color: var(--marine); margin-bottom: .5rem; }
.ev-lieu, .ev-places { font-size: .83rem; color: var(--text-muted); margin-top: .3rem; }
.ev-desc { font-size: .88rem; color: var(--text-muted); margin-top: .6rem; line-height: 1.6; }
.btn-ev { padding: .5rem 1.1rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500; cursor: pointer; border: none; transition: background .2s; }
.btn-ev-in  { background: var(--rouge); color: #fff; }
.btn-ev-in:hover  { background: var(--rouge-dark); }
.btn-ev-out { background: #f0f4ff; color: var(--marine); }
.btn-ev-out:hover { background: #e0e8ff; }
.badge-inscrit { display: inline-block; margin-left: .7rem; background: #e8f5e9; color: #2e7d32; font-size: .78rem; font-weight: 500; padding: .25rem .7rem; border-radius: 50px; }

/* ── Disponibilités ── */
.two-col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.5rem; align-items: start; }
.dispo-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.dispo-table th { text-align: left; padding: .5rem .7rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.dispo-table td { padding: .6rem .7rem; border-top: 1px solid var(--border); }
.del-link { color: var(--rouge); font-size: .9rem; opacity: .7; transition: opacity .2s; }
.del-link:hover { opacity: 1; }

/* ── Documents ── */
.doc-grid { display: grid; gap: 1rem; }
.doc-card { background: #fff; border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 1.2rem; }
.doc-icon { font-size: 2rem; }
.doc-info { flex: 1; }
.doc-info strong { display: block; color: var(--marine); font-size: .95rem; }
.doc-info p { color: var(--text-muted); font-size: .83rem; margin-top: .2rem; }
.doc-info small { color: var(--text-muted); font-size: .78rem; }
.btn-dl { padding: .45rem 1.1rem; background: var(--marine); color: #fff; border-radius: 50px; font-size: .82rem; font-weight: 500; white-space: nowrap; transition: background .2s; }
.btn-dl:hover { background: var(--marine-dark); }

/* ── Écran d'accueil ── */
.welcome-wrap { max-width: 700px; }
.welcome-hero { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.welcome-hero h1 { font-size: 1.9rem; color: var(--marine); margin-bottom: .25rem; }
.welcome-hero p { color: var(--text-muted); font-size: .95rem; }
.welcome-hero .account-avatar { width: 56px; height: 56px; font-size: 1.2rem; flex-shrink: 0; margin: 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.welcome-card {
    display: flex; align-items: center; gap: 1rem;
    background: #fff; border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 1.1rem 1.3rem;
    text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .15s;
}
.welcome-card:hover { border-color: var(--marine); box-shadow: var(--shadow); transform: translateY(-2px); }
.welcome-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.welcome-card strong { display: block; font-size: .9rem; font-weight: 600; color: var(--marine); margin-bottom: .15rem; }
.welcome-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }
.welcome-arrow { margin-left: auto; color: var(--text-muted); font-size: 1rem; transition: transform .2s, color .2s; }
.welcome-card:hover .welcome-arrow { transform: translateX(3px); color: var(--marine); }
.welcome-section { background: #fff; border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow); }
.welcome-section-title { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 1rem; }
.welcome-ev-item { display: flex; align-items: center; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid #f0f0f0; }
.welcome-ev-item:last-child { border-bottom: none; }
.welcome-ev-date { font-size: .78rem; font-weight: 600; color: var(--rouge); min-width: 70px; }
.welcome-ev-name { font-size: .9rem; color: var(--text); flex: 1; }
.welcome-ev-lieu { font-size: .78rem; color: var(--text-muted); }

/* ── Responsive bénévole ── */
@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-brand { display: none; }
    .account-wrap { grid-template-columns: 1fr; }
    .account-sidebar { display: none; }
    .account-main { padding: 1.5rem 1rem; }
    .two-col { grid-template-columns: 1fr; }
    .welcome-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .benv .form-row { grid-template-columns: 1fr; }
    .ev-grid { grid-template-columns: 1fr; }
}
