/* ═══════════════════════════════════════════════════════
   ELLES & NOUS — Stylesheet principal
   Mobile-first • BEM • Accessible
   ═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────── */
:root {
    /* Couleurs */
    --rose: #E83D7B;
    --rose-light: rgba(232, 61, 123, 0.08);
    --rose-mid: rgba(232, 61, 123, 0.15);
    --vert: #8FAE3B;
    --vert-light: rgba(143, 174, 59, 0.08);
    --vert-mid: rgba(143, 174, 59, 0.15);
    --marron: #3B2415;
    --marron-light: rgba(59, 36, 21, 0.06);
    --marron-mid: rgba(59, 36, 21, 0.12);
    --blanc: #FFFFFF;
    --gris: #F6F6F6;
    --gris-mid: #E8E8E8;
    --gris-dark: #999;
    --text: #3B2415;
    --text-light: rgba(59, 36, 21, 0.7);

    /* Typographie */
    --font: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
    --fs-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
    --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
    --fs-xl: clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
    --fs-2xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
    --fs-3xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.5rem);
    --fs-hero: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);

    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-section: clamp(4rem, 3rem + 5vw, 8rem);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50rem;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.4s;
    --duration-fast: 0.2s;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(59, 36, 21, 0.06);
    --shadow-md: 0 4px 16px rgba(59, 36, 21, 0.08);
    --shadow-lg: 0 8px 32px rgba(59, 36, 21, 0.1);
    --shadow-xl: 0 16px 48px rgba(59, 36, 21, 0.12);

    /* Nav */
    --nav-height: 4.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text);
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* ─── Skip Link ─────────────────────────────────────── */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--marron);
    color: var(--blanc);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    transition: top var(--duration-fast);
}

.skip-link:focus {
    top: 0;
}

/* ─── Container ─────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ─── Navigation ────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid transparent;
    transition: border-color var(--duration), box-shadow var(--duration), background var(--duration);
}

.nav--scrolled {
    border-bottom-color: var(--rose);
    box-shadow: 0 2px 20px rgba(232, 61, 123, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 700;
    font-size: var(--fs-xl);
    color: var(--marron);
    z-index: 1001;
    transition: transform var(--duration) var(--ease);
}

.nav__logo:hover {
    transform: scale(1.03);
}

.nav__logo em {
    color: var(--rose);
    font-style: normal;
}

.nav__logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.nav__logo-img {
    width: auto;
    height: 48px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform var(--duration) var(--ease);
}

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

.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 1001;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--marron);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease), opacity var(--duration-fast);
}

.nav__toggle--active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 24rem);
    height: 100dvh;
    background: var(--blanc);
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
    overflow-y: auto;
}

.nav__menu--open {
    transform: translateX(0);
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--duration-fast), color var(--duration-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
    background: var(--rose-light);
    color: var(--rose);
}

.nav__link--active {
    color: var(--rose);
    background: var(--rose-light);
}

.nav__link--cta {
    margin-top: var(--space-sm);
    background: var(--rose);
    color: var(--blanc);
    text-align: center;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
    background: #d1306b;
    color: var(--blanc);
}

/* Overlay mobile menu */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(59, 36, 21, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration);
}

.nav__overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 30%,
            rgba(255, 255, 255, 0.55) 60%,
            rgba(255, 255, 255, 0.25) 100%);
}

/* Accent décoratif hero */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--rose), var(--vert), var(--marron));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 61, 123, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero__content {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--marron);
    margin-bottom: var(--space-lg);
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--rose) 0%, #c42d63 50%, var(--vert) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: var(--text-light);
    max-width: 36rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gris-mid);
}

.hero__stat-number {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: var(--fs-xs);
    color: var(--text-light);
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: hero-bounce 2s ease-in-out infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Sections ──────────────────────────────────────── */
.section {
    padding: var(--space-section) 0;
}

.section--gray {
    background: var(--gris);
}

.section--dark {
    background: linear-gradient(135deg, var(--marron) 0%, #2a1a0e 50%, #4a2e1c 100%);
    color: var(--blanc);
    position: relative;
}

.section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--rose), var(--vert));
}

.section__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--space-2xl);
}

.section__tag {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.section__tag--light {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__title {
    font-size: var(--fs-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--rose), var(--vert));
    border-radius: 2px;
    margin: var(--space-sm) auto 0;
}

.section__header--light .section__title {
    color: var(--blanc);
}

.section__desc {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.7;
}

.section__header--light .section__desc {
    color: rgba(255, 255, 255, 0.75);
}

.section__closing {
    text-align: center;
    font-size: var(--fs-lg);
    font-weight: 500;
    font-style: italic;
    color: var(--text-light);
    max-width: 42rem;
    margin: var(--space-2xl) auto 0;
}

/* ─── Grids ─────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--rose), #d1306b);
    color: var(--blanc);
    border-color: var(--rose);
    box-shadow: 0 4px 15px rgba(232, 61, 123, 0.25);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #d1306b, var(--rose));
    border-color: #d1306b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 61, 123, 0.4);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--vert), #7d9a33);
    color: var(--blanc);
    border-color: var(--vert);
    box-shadow: 0 4px 15px rgba(143, 174, 59, 0.25);
}

.btn--secondary:hover {
    background: linear-gradient(135deg, #7d9a33, var(--vert));
    border-color: #7d9a33;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(143, 174, 59, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--marron);
    border-color: var(--marron);
}

.btn--outline:hover {
    background: var(--marron);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--marron);
    border-color: var(--marron);
}

.btn--outline-dark:hover {
    background: var(--marron);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-base);
}

/* ─── Cards ─────────────────────────────────────────── */
.card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 61, 123, 0.12);
}

.card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.card__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.card__icon--rose {
    background: var(--rose-light);
    color: var(--rose);
}

.card__icon--vert {
    background: var(--vert-light);
    color: var(--vert);
}

.card__icon--marron {
    background: var(--marron-light);
    color: var(--marron);
}

.card__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.card__text {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.card__number {
    display: inline-block;
    font-size: var(--fs-3xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

/* Card Mission */
.card--mission {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    border-top: 3px solid var(--rose);
    text-align: center;
}

.card--mission .card__icon {
    margin-left: auto;
    margin-right: auto;
}

.card--mission .card__title {
    text-align: center;
}

.card--mission .card__text {
    text-align: center;
}

.card--mission:nth-child(2) {
    border-top-color: var(--vert);
}

.card--mission:nth-child(3) {
    border-top-color: var(--marron);
}

/* Mission Objectifs */
.mission__objectifs {
    max-width: 42rem;
    margin: var(--space-2xl) auto 0;
    padding: var(--space-xl);
    background: var(--gris);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--rose);
}

.mission__objectifs-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--marron);
    margin-bottom: var(--space-md);
}

.mission__objectifs-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-left: var(--space-lg);
}

.mission__objectifs-list li {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

.mission__objectifs-list li::marker {
    color: var(--rose);
}

/* Card Context */
.card--context {
    background: var(--blanc);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
}

/* Card Value */
.card--value {
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
}

.card--value .card__icon {
    margin: 0 auto var(--space-lg);
    width: 4rem;
    height: 4rem;
}

.card--value .card__icon svg {
    width: 2rem;
    height: 2rem;
}

/* Card Support */
.card--support {
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card--support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.card--support-rose::before { background: var(--rose); }
.card--support-vert::before { background: var(--vert); }
.card--support-marron::before { background: var(--marron); }

.card--support .card__icon {
    margin: 0 auto var(--space-lg);
    width: 4rem;
    height: 4rem;
}

.card--support .card__icon svg {
    width: 2rem;
    height: 2rem;
}

.card--support .card__text {
    margin-bottom: var(--space-lg);
}

/* ─── Story ─────────────────────────────────────────── */
.story {
    display: grid;
    gap: var(--space-2xl);
    align-items: start;
}

.story__text {
    font-size: var(--fs-base);
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.story__text--lead {
    font-size: var(--fs-lg);
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
}

.story__quote {
    background: var(--blanc);
    border-left: 4px solid var(--rose);
    padding: var(--space-xl);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.story__quote p {
    font-size: var(--fs-lg);
    font-weight: 500;
    font-style: italic;
    color: var(--marron);
    line-height: 1.6;
}

.story__image {
    display: flex;
    justify-content: center;
}

.story__image-placeholder {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.story__photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ─── Section Illustrations ────────────────────────── */
.section__illustration {
    max-width: 48rem;
    margin: 0 auto var(--space-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section__photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ─── Section Background Image ─────────────────────── */
.section--bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section--bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 36, 21, 0.88) 0%, rgba(42, 26, 14, 0.92) 50%, rgba(74, 46, 28, 0.85) 100%);
    z-index: 0;
}

.section--bg-image > .container {
    position: relative;
    z-index: 1;
}

/* ─── Accordion Media ──────────────────────────────── */
.accordion__media {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accordion__photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ─── Badges ────────────────────────────────────────── */
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.badge--rose {
    background: var(--rose-light);
    color: var(--rose);
    border: 1.5px solid var(--rose-mid);
}

.badge--vert {
    background: var(--vert-light);
    color: #5d7226;
    border: 1.5px solid var(--vert-mid);
}

.badge--marron {
    background: var(--marron-light);
    color: var(--marron);
    border: 1.5px solid var(--marron-mid);
}

/* ─── Accordion ─────────────────────────────────────── */
.accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.accordion__item {
    background: var(--blanc);
    border: 1px solid var(--gris-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--duration);
}

.accordion__item--active {
    box-shadow: var(--shadow-md);
    border-color: var(--rose-mid);
}

.accordion__trigger {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    transition: background var(--duration-fast);
}

.accordion__trigger:hover {
    background: var(--gris);
}

.accordion__trigger:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: -3px;
    border-radius: var(--radius-lg);
}

.accordion__number {
    font-size: var(--fs-xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 2.5rem;
    transition: opacity 0.3s;
}

.accordion__item--active .accordion__number {
    opacity: 1;
}

.accordion__label {
    flex: 1;
    min-width: 0;
}

.accordion__title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.3;
    color: var(--marron);
}

.accordion__subtitle {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-light);
    margin-top: 2px;
}

.accordion__chevron {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform var(--duration) var(--ease);
}

.accordion__item--active .accordion__chevron {
    transform: rotate(180deg);
    color: var(--rose);
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease);
}

.accordion__content {
    padding: 0 var(--space-xl) var(--space-xl);
    padding-left: calc(var(--space-xl) + 2.5rem + var(--space-md));
}

.accordion__content p {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.accordion__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.accordion__list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--text-light);
}

.accordion__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
}

/* ─── Members ───────────────────────────────────────── */
.member {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}

.member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 61, 123, 0.12);
    border-color: var(--rose-mid);
}

.member__portrait {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member__portrait--rose { background: var(--rose-mid); }
.member__portrait--vert { background: var(--vert-mid); }
.member__portrait--marron { background: var(--marron-mid); }

.member__initials {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--marron);
    opacity: 0.6;
}

.member__portrait--rose .member__initials { color: var(--rose); opacity: 1; }
.member__portrait--vert .member__initials { color: var(--vert); opacity: 1; }
.member__portrait--marron .member__initials { color: var(--marron); opacity: 0.8; }

.member__name {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.member__role {
    font-size: var(--fs-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member__bio {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.member__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member__portrait--photo {
    overflow: hidden;
    border: 3px solid var(--gris-mid);
    transition: border-color var(--duration);
}

.member:hover .member__portrait--photo {
    border-color: var(--rose);
}

.member__bio-short {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.member__bio-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    opacity: 0;
}

.member__bio-full.is-expanded {
    opacity: 1;
}

.member__bio-full p {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.member__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--rose);
    transition: opacity var(--duration-fast);
    padding: 0;
}

.member__toggle:hover {
    opacity: 0.7;
}

.member__toggle svg {
    transition: transform var(--duration) var(--ease);
}

.member__toggle.is-expanded svg {
    transform: rotate(180deg);
}

/* ─── Partners ──────────────────────────────────────── */
.partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 48rem;
    margin: 0 auto;
}

.partner {
    background: var(--gris);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-fast), transform var(--duration) var(--ease);
    border: 1px solid var(--gris-mid);
}

.partner:hover {
    background: var(--blanc);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.partner__logo {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gris-dark);
}

/* ─── Impact ────────────────────────────────────────── */
.impact__flyer {
    max-width: 28rem;
    margin: 0 auto var(--space-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

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

.impact__details {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.impact__text {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.impact__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.impact__badge {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--blanc);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4em 1.2em;
    border-radius: var(--radius-full);
}

/* ─── Timeline ──────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: var(--space-xl);
    max-width: 40rem;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: calc(-1 * var(--space-xl) + 1px);
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose);
    border: 2px solid var(--marron);
}

.timeline__title {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--blanc);
    margin-bottom: var(--space-xs);
}

.timeline__text {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ─── Contact ───────────────────────────────────────── */
.contact {
    display: grid;
    gap: var(--space-2xl);
}

.contact__form {
    display: grid;
    gap: var(--space-md);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form__label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--marron);
}

.form__input {
    font-family: var(--font);
    font-size: var(--fs-base);
    padding: 0.75rem var(--space-md);
    background: var(--blanc);
    border: 2px solid var(--gris-mid);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form__input::placeholder {
    color: var(--gris-dark);
}

.form__input:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(232, 61, 123, 0.15);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233B2415' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact__block-title {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.contact__address p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
}

.contact__address a {
    color: var(--rose);
    font-weight: 500;
    transition: opacity var(--duration-fast);
}

.contact__address a:hover {
    opacity: 0.8;
}

.contact__socials {
    display: flex;
    gap: var(--space-md);
}

.contact__social {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blanc);
    border: 1.5px solid var(--gris-mid);
    color: var(--marron);
    transition: all var(--duration-fast);
}

.contact__social:hover {
    background: var(--rose);
    color: var(--blanc);
    border-color: var(--rose);
    transform: translateY(-2px);
}

.contact__social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
    background: linear-gradient(180deg, var(--marron) 0%, #1f1109 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rose), var(--vert), var(--rose));
}

.footer__grid {
    display: grid;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--blanc);
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    font-size: var(--fs-sm);
    opacity: 0.7;
}

.footer__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(232, 61, 123, 0.3);
}

.footer__heading {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--blanc);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links a {
    font-size: var(--fs-sm);
    opacity: 0.7;
    transition: opacity var(--duration-fast);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--rose);
}

.footer__bottom {
    text-align: center;
    font-size: var(--fs-xs);
    opacity: 0.5;
}

.footer__credits {
    margin-top: var(--space-xs);
}

/* ─── Conseil d'Administration ──────────────────────── */
.member--ca {
    padding: var(--space-lg);
    overflow: hidden;
}

.member--ca .member__role {
    font-size: var(--fs-xs);
}

/* ─── Member Badges ────────────────────────────────── */
.member__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: var(--space-md);
}

.member__badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15em 0.55em;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.member__badge--rose {
    background: var(--rose-light);
    color: var(--rose);
}

.member__badge--vert {
    background: var(--vert-light);
    color: var(--vert);
}

.member__badge--marron {
    background: var(--marron-light);
    color: var(--marron);
}

/* ─── Member Bio Timeline ──────────────────────────── */
.member__timeline {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
}

.member__timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose), var(--vert));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-md);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rose);
    border: 2px solid var(--blanc);
    box-shadow: 0 0 0 2px var(--rose-mid);
    z-index: 1;
}

.timeline-item:nth-child(even)::before {
    background: var(--vert);
    box-shadow: 0 0 0 2px var(--vert-mid);
}

.timeline-item__date {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
}

.timeline-item:nth-child(even) .timeline-item__date {
    color: var(--vert);
}

.timeline-item__content {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Member Hover Quote ───────────────────────────── */
.member--ca .member__portrait {
    position: relative;
    overflow: hidden;
}

.member--ca .member__photo {
    transition: transform 0.5s var(--ease);
}

.member--ca:hover .member__photo {
    transform: scale(1.08);
}

.member--ca .member__portrait[data-quote]::after {
    content: attr(data-quote);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(59, 36, 21, 0.8));
    color: var(--blanc);
    font-size: 0.7rem;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    pointer-events: none;
}

.member--ca:hover .member__portrait[data-quote]::after {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Event Cards ──────────────────────────────────── */
.event-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration);
    position: relative;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 61, 123, 0.12);
    border-color: var(--rose-mid);
}

.event-card__date {
    margin-bottom: var(--space-md);
}

.event-card__badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 0.2em 0.8em;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card__badge--rose {
    background: var(--rose-light);
    color: var(--rose);
    border: 1px solid var(--rose-mid);
}

.event-card__badge--vert {
    background: var(--vert-light);
    color: #5d7226;
    border: 1px solid var(--vert-mid);
}

.event-card__badge--marron {
    background: var(--marron-light);
    color: var(--marron);
    border: 1px solid var(--marron-mid);
}

.event-card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--rose);
}

.event-card__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.event-card__desc {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Blog Cards ───────────────────────────────────── */
.blog-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 61, 123, 0.12);
    border-color: var(--rose-mid);
}

.blog-card__image {
    height: 180px;
    overflow: hidden;
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--vert-light) 100%);
    color: var(--gris-dark);
}

.blog-card__body {
    padding: var(--space-lg);
}

.blog-card__date {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--rose);
    margin-bottom: var(--space-xs);
}

.blog-card__title {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card__link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--rose);
    transition: opacity var(--duration-fast);
}

.blog-card__link:hover {
    opacity: 0.7;
}

.blog-card__share {
    display: flex;
    gap: var(--space-xs);
}

.blog-card__share-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gris);
    color: var(--marron);
    transition: all var(--duration-fast);
}

.blog-card__share-btn:hover {
    background: var(--rose);
    color: var(--blanc);
}

/* ─── Testimonials ─────────────────────────────────── */
.testimonials {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.testimonial {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    border-left: 4px solid var(--rose);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial__stars {
    margin-bottom: var(--space-sm);
}

.testimonial__star {
    font-size: 1.25rem;
    color: var(--gris-mid);
}

.testimonial__star--filled {
    color: #f5a623;
}

.testimonial__text {
    font-size: var(--fs-base);
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.testimonial__author {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--rose);
}

.testimonial-form-wrapper {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gris-mid);
    max-width: 36rem;
    margin: 0 auto;
}

.testimonial-form__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.testimonial-form {
    display: grid;
    gap: var(--space-md);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating__btn {
    font-size: 1.5rem;
    color: var(--gris-mid);
    transition: color var(--duration-fast);
    padding: 0;
    line-height: 1;
}

.star-rating__btn.is-active,
.star-rating__btn:hover {
    color: #f5a623;
}

.testimonial-form__success {
    text-align: center;
    padding: var(--space-xl);
}

.testimonial-form__success p {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--vert);
    margin-top: var(--space-md);
}

/* ─── Contact Success ──────────────────────────────── */
.contact__success {
    text-align: center;
    padding: var(--space-2xl);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.contact__success.is-visible {
    display: flex;
}

.contact__success-text {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--vert);
}

.contact__success-sub {
    font-size: var(--fs-sm);
    color: var(--text-light);
}

/* ─── Back to Top ──────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--rose);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 61, 123, 0.35);
    z-index: 900;
    transition: opacity var(--duration-fast), transform var(--duration-fast) var(--ease);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 61, 123, 0.5);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ─── Footer Enhancements ──────────────────────────── */
.footer__grid--4 {
    grid-template-columns: 1fr;
}

.footer__heading--mt {
    margin-top: var(--space-lg);
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer__social {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--duration-fast);
}

.footer__social:hover {
    background: var(--rose);
    color: var(--blanc);
    transform: translateY(-2px);
}

.footer__address {
    margin-top: var(--space-lg);
    font-size: var(--fs-xs);
    opacity: 0.7;
    line-height: 1.6;
}

.footer__address-title {
    font-weight: 600;
    color: var(--blanc);
    opacity: 1;
    margin-top: var(--space-sm);
}

.footer__address-title:first-child {
    margin-top: 0;
}

.footer__legal-info {
    margin-top: var(--space-xs);
    font-size: var(--fs-xs);
    opacity: 0.6;
}

/* ─── Scroll Reveal Animations ──────────────────────── */
/* Tout est visible par défaut.
   JS ajoute .will-reveal, IntersectionObserver ajoute .is-revealed */
.will-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.will-reveal--left {
    transform: translateX(-32px);
}

.will-reveal--right {
    transform: translateX(32px);
}

.will-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.will-reveal-children > * {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.will-reveal-children.is-revealed > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.will-reveal-children.is-revealed > *:nth-child(1) { transition-delay: 0s; }
.will-reveal-children.is-revealed > *:nth-child(2) { transition-delay: 0.08s; }
.will-reveal-children.is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
.will-reveal-children.is-revealed > *:nth-child(4) { transition-delay: 0.24s; }
.will-reveal-children.is-revealed > *:nth-child(5) { transition-delay: 0.32s; }
.will-reveal-children.is-revealed > *:nth-child(6) { transition-delay: 0.4s; }

/* ─── Responsive: Tablet (640px+) ───────────────────── */
@media (min-width: 40rem) {
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .partners {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact__stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .form__group--full {
        grid-column: 1 / -1;
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer__grid--4 {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .story {
        grid-template-columns: 1.2fr 1fr;
    }

    .story__photo {
        height: 300px;
    }

    .accordion__content {
        padding-left: calc(var(--space-xl) + 2.5rem + var(--space-md));
    }

    .accordion__media {
        float: right;
        width: 45%;
        margin-left: var(--space-lg);
        margin-bottom: var(--space-md);
    }

    .accordion__photo {
        height: 180px;
    }

    .section__photo {
        height: 360px;
    }
}

/* ─── Responsive: Desktop (960px+) ──────────────────── */
@media (min-width: 60rem) {
    :root {
        --nav-height: 4.5rem;
    }

    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transform: none;
        overflow: visible;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .nav__link {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--fs-sm);
    }

    .nav__link--cta {
        margin-top: 0;
        margin-left: var(--space-sm);
        padding: 0.5rem 1.25rem;
    }

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

    .contact {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    .hero__content {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero__stats {
        max-width: 36rem;
    }

    .story__photo {
        height: 350px;
    }

    .section__photo {
        height: 400px;
    }

    .accordion__media {
        width: 40%;
    }

    .accordion__photo {
        height: 220px;
    }
}

/* ─── Responsive: Large (1200px+) ───────────────────── */
@media (min-width: 75rem) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ─── Modales légales ──────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal[hidden] {
    display: none;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 36, 21, 0.6);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--blanc);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 42rem;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.modal__content h2 {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--marron);
    margin-bottom: var(--space-lg);
}

.modal__content h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--rose);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.modal__content p,
.modal__content li {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.modal__content ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color var(--duration-fast);
}

.modal__close:hover {
    color: var(--rose);
}

/* ─── Elles nous inspirent ─────────────────────────── */
.spotlight {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.spotlight__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    border: 4px solid var(--rose);
    box-shadow: 0 8px 30px rgba(232, 61, 123, 0.2);
}

.spotlight__name {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--marron);
    margin-bottom: var(--space-xs);
}

.spotlight__label {
    font-size: var(--fs-sm);
    font-weight: 600;
    background: linear-gradient(135deg, var(--rose), var(--vert));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.spotlight__quote {
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    padding: 0 var(--space-lg);
}

.spotlight__quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--rose);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    line-height: 1;
}

.spotlight__text {
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
}

.spotlight__placeholder {
    padding: var(--space-2xl);
    background: var(--rose-light);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--rose-mid);
}

.spotlight__placeholder-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--rose-mid);
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight__placeholder-icon svg {
    width: 48px;
    height: 48px;
    color: var(--rose);
}

/* ─── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-animate],
    [data-animate="stagger"] > * {
        opacity: 1;
        transform: none;
    }

    .hero__scroll {
        animation: none;
    }
}

/* ─── Focus Visible ─────────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
}

/* ─── Selection ─────────────────────────────────────── */
::selection {
    background: rgba(232, 61, 123, 0.15);
    color: var(--marron);
}

/* ─── Print ─────────────────────────────────────────── */
@media print {
    .nav,
    .hero__scroll,
    .hero__actions,
    .nav__toggle,
    .back-to-top {
        display: none !important;
    }

    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
