/* ==========================================================================
   ACRO - feuille de style principale
   Charte : navy #050F47 / bleu #273275 / orange #f07e03 / gris #f1f1f1 / rouge #e30614
   Typographies : Accessible DfA (Orange, SIL OFL) + Roboto
   ========================================================================== */

@font-face {
    font-family: 'Accessible DfA';
    src: url('fonts/AccessibleDfA-VF.woff2') format('woff2-variations'),
         url('fonts/AccessibleDfA-VF.woff') format('woff-variations');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #050f47;
    --navy-2: #0b1a5e;
    --blue: #273275;
    --orange: #f07e03;
    --orange-deep: #a35400;
    --rouge: #e30614;
    --gris: #f1f1f1;
    --gris-2: #e2e4ec;
    --texte: #1b1f33;
    --blanc: #fff;

    --font-title: 'Accessible DfA', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Roboto', 'Segoe UI', system-ui, sans-serif;

    --wrap: 1240px;
    --r: 6px;
    --shadow: 0 18px 40px -24px rgba(5, 15, 71, .45);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--texte);
    background: var(--blanc);
    overflow-x: hidden;
}

/* Options de confort de lecture */
body.a11y-dfa { font-family: var(--font-title); }
body.a11y-big { font-size: 19.5px; }
body.a11y-space { line-height: 1.95; letter-spacing: .012em; word-spacing: .08em; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--navy);
    line-height: 1.16;
    margin: 0 0 .5em;
    font-weight: 700;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--orange); color: var(--navy); font-weight: 700;
    padding: 12px 20px; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------- boutons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 700; font-size: 15px;
    letter-spacing: .02em; text-decoration: none;
    padding: 12px 24px; border-radius: 40px; border: 2px solid transparent;
    cursor: pointer; transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn--orange { background: var(--orange); color: var(--navy); }
.btn--orange:hover { background: #ffa22e; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--blanc); border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--blue); transform: translateY(-2px); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn::after { content: '›'; font-size: 1.25em; line-height: 0; transform: translateY(-1px); }

.link-arrow {
    font-weight: 700; color: var(--navy); text-decoration: none;
    border-bottom: 2px solid var(--orange); padding-bottom: 3px;
}
.link-arrow:hover { color: var(--orange-deep); }
.link-arrow::after { content: ' ›'; }

/* ---------------------------------------------------------- barre a11y */
.a11ybar { background: var(--navy-2); color: #dfe3f5; font-size: 13.5px; }
.a11ybar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; flex-wrap: wrap; }
.a11ybar-txt { margin: 0; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; opacity: .8; }
.a11ybar-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.a11y-btn {
    font: inherit; color: #dfe3f5; background: transparent;
    border: 1px solid rgba(255, 255, 255, .28); border-radius: 30px;
    padding: 4px 14px; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.a11y-btn:hover { background: rgba(255, 255, 255, .12); }
.a11y-btn[aria-pressed="true"] { background: var(--orange); color: var(--navy); border-color: var(--orange); font-weight: 700; }
.a11y-link { color: #dfe3f5; text-decoration: underline; padding: 4px 6px; }

/* ------------------------------------------------------------- header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    box-shadow: 0 2px 0 rgba(255, 255, 255, .06);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; padding: 8px 0; }
.brand-logo { width: 54px; height: 54px; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand-sigle { font-family: var(--font-title); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: .06em; }
.brand-sub { font-size: 11.5px; color: #b9c0e0; max-width: 230px; }

.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; gap: 7px;
    color: #fff; text-decoration: none; font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .06em;
    padding: 12px 14px; border-radius: 4px;
}
.nav-link span, .nav-chev { pointer-events: none; }
.nav-chev { width: 11px; transition: transform .25s var(--ease); }
.nav-link::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px;
    height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left;
    transition: transform .28s var(--ease);
}
.nav-item:hover .nav-link::after, .nav-link:focus-visible::after { transform: scaleX(1); }
.nav-item:hover .nav-chev { transform: rotate(180deg); }

.nav-sub {
    position: absolute; top: calc(100% - 2px); left: 0; min-width: 250px;
    list-style: none; margin: 0; padding: 8px;
    background: var(--navy-2); border-top: 3px solid var(--orange);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .6);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-sub a {
    display: block; padding: 10px 14px; color: #e7eafb; text-decoration: none;
    font-size: 13px; text-transform: uppercase; letter-spacing: .05em;
}
.nav-sub a:hover { background: rgba(240, 126, 3, .18); color: #fff; }
.nav-item--cta { margin-left: 10px; }

.burger { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; }
.burger-bars { display: block; width: 26px; }
.burger-bars i { display: block; height: 2px; background: #fff; margin: 6px 0; transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------- hero */
.hero {
    position: relative; color: #fff;
    background: var(--navy);
    padding: clamp(72px, 12vw, 132px) 0 clamp(64px, 10vw, 110px);
    isolation: isolate;
}
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: -2;
    background-image: var(--hero-img); background-size: cover; background-position: center 38%;
}
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(105deg, rgba(5, 15, 71, .96) 0%, rgba(5, 15, 71, .88) 42%, rgba(5, 15, 71, .58) 100%);
}
.hero-in { max-width: 780px; }
.hero-title { font-size: clamp(34px, 5.6vw, 62px); color: #fff; margin-bottom: .35em; }
.hero-text { font-size: clamp(16px, 1.6vw, 18.5px); color: #dfe3f5; max-width: 62ch; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.eyebrow {
    font-family: var(--font-body); font-weight: 700; font-size: 13px;
    letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep);
    margin: 0 0 12px;
}
.eyebrow--light { color: var(--orange); }
.eyebrow--center { text-align: center; }

.section-title { font-size: clamp(26px, 3.4vw, 40px); }
.section-title--center { text-align: center; }
.section-title--light { color: #fff; }
.section-lead { max-width: 74ch; margin: 0 auto 48px; text-align: center; color: #4a5068; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }

/* ------------------------------------------------------------ valeurs */
.valeurs { background: var(--navy-2); color: #fff; padding: clamp(54px, 7vw, 84px) 0; }
.valeurs .eyebrow { color: var(--orange); }
.valeurs .section-title { color: #fff; margin-bottom: 44px; }
.valeurs-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.valeur { border-top: 3px solid var(--orange); padding-top: 22px; }
.valeur-num { font-family: var(--font-title); font-size: 15px; color: var(--orange); letter-spacing: .18em; }
.valeur h3 { color: #fff; font-size: 23px; margin: 10px 0 10px; }
.valeur p { color: #c7cdea; margin: 0; font-size: 16px; }

/* -------------------------------------------------------------- actus */
.actus { padding: clamp(60px, 8vw, 100px) 0; background: var(--blanc); }
.slider { position: relative; }
.slide { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.slide[hidden] { display: none; }
.slide-img { position: relative; }
.slide-img img { width: 100%; aspect-ratio: 25 / 16; object-fit: cover; border-radius: var(--r); }
.slide-tag {
    position: absolute; left: 0; bottom: 22px;
    background: var(--orange); color: var(--navy); font-weight: 700; font-size: 13px;
    letter-spacing: .05em; text-transform: uppercase; padding: 9px 20px;
}
.slide-txt h3 { font-size: clamp(24px, 2.8vw, 33px); }
.slide-txt p { color: #4a5068; }
.slide-txt .btn { margin-top: 18px; }

.slider-nav { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.slider-arrow {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gris-2);
    background: #fff; color: var(--navy); cursor: pointer; display: grid; place-items: center;
    transition: border-color .2s, background-color .2s, color .2s;
}
.slider-arrow svg { width: 20px; }
.slider-arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.slider-dots { display: flex; gap: 9px; }
.dot {
    width: 11px; height: 11px; padding: 0; border-radius: 50%; border: 0;
    background: var(--gris-2); cursor: pointer; transition: background-color .2s, transform .2s;
}
.dot.is-on { background: var(--orange); transform: scale(1.25); }

/* -------------------------------------------------------- cartes x 4 */
.engagements { background: var(--gris); padding: clamp(60px, 8vw, 100px) 0; }
.com { padding: clamp(60px, 8vw, 100px) 0; }
.cards-4 { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: flex; }
.card > a { display: flex; flex-direction: column; width: 100%; padding-bottom: 26px; text-decoration: none; color: inherit; }
.card > a > .card-more, .card > a > .btn { margin-top: auto; align-self: flex-start; }
.card-img { display: block; overflow: hidden; }
.card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.card > a:hover .card-img img { transform: scale(1.06); }
.card h3 { font-size: 20px; margin: 22px 24px 10px; }
.card p { margin: 0 24px 18px; font-size: 15.5px; color: #4a5068; }
.card-more, .card .btn { margin: 0 24px; }
.card-more { font-weight: 700; font-size: 14px; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 2px; display: inline-block; }
.card > a:hover .card-more { color: var(--orange-deep); }
.card--com { background: #fff; }

/* ------------------------------------------------------ qui sommes-nous */
.qsn { padding: clamp(60px, 8vw, 100px) 0; }
.qsn-in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.qsn-txt p { color: #4a5068; }
.qsn-txt .btn { margin-top: 12px; }
.team-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { position: relative; overflow: hidden; border-radius: var(--r); background: var(--gris); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-over {
    position: absolute; inset: auto 0 0 0; padding: 16px 16px 14px;
    background: linear-gradient(0deg, rgba(240, 126, 3, .96), rgba(240, 126, 3, .82));
    color: var(--navy); display: flex; flex-direction: column; gap: 2px;
    transform: translateY(101%); transition: transform .32s var(--ease);
}
.team-card:hover .team-over, .team-card:focus-within .team-over { transform: none; }
.team-over strong { font-family: var(--font-title); font-size: 15.5px; }
.team-over em { font-style: normal; font-size: 13px; }

/* ---------------------------------------------------------- association */
.asso { background: var(--gris); padding: clamp(60px, 8vw, 100px) 0; }
.asso-in { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.frise { list-style: none; margin: 0; padding: 0; position: relative; }
.frise::before { content: ''; position: absolute; left: 96px; top: 12px; bottom: 12px; width: 2px; background: var(--gris-2); }
.frise-item { position: relative; display: grid; grid-template-columns: 96px 1fr; align-items: center; margin-bottom: 14px; }
.frise-date {
    position: relative; z-index: 1; background: var(--orange); color: var(--navy);
    font-weight: 700; font-size: 11.5px; letter-spacing: .04em; text-align: center;
    padding: 8px 6px; align-self: center;
}
.frise-body {
    display: grid; grid-template-columns: 116px 1fr; align-items: center; gap: 16px;
    background: var(--navy); color: #fff; padding: 10px 18px 10px 10px;
}
.frise-body img { width: 116px; height: 66px; object-fit: cover; }
.frise-txt { display: flex; flex-direction: column; gap: 2px; }
.frise-txt strong { font-family: var(--font-title); font-size: 15px; }
.frise-txt span { font-size: 13px; color: #c7cdea; line-height: 1.45; }
.asso-txt p { color: #4a5068; }

/* ------------------------------------------------------------ adhesion */
.adhesion-home { padding: clamp(60px, 8vw, 100px) 0; }
.adh-in { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.adh-txt p { color: #4a5068; }
.principes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.principe {
    display: grid; grid-template-columns: 150px 1fr; align-items: stretch;
    border: 1.5px solid var(--blue); border-radius: 3px;
}
.principe-mot {
    display: grid; place-items: center; background: var(--blue); color: #fff;
    font-weight: 700; font-size: 14px; letter-spacing: .08em; padding: 16px 10px;
}
.principe--rouge { border-color: var(--rouge); }
.principe--rouge .principe-mot { background: var(--rouge); }
.principe-txt { padding: 16px 22px; font-size: 15.5px; color: #333a55; display: flex; align-items: center; }

/* ------------------------------------------------------- bloc DfA */
.dfa { background: var(--navy); color: #fff; padding: clamp(60px, 8vw, 104px) 0; }
.dfa-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.dfa-txt p { color: #c7cdea; }
.dfa-txt strong { color: #fff; }
.dfa-note { border-left: 3px solid var(--orange); padding-left: 16px; font-size: 15px; }
.dfa-demo { background: #fff; color: var(--texte); border-radius: var(--r); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.dfa-demo-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.dfa-demo-label { margin: 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; }
.dfa-switch { display: inline-flex; border: 2px solid var(--gris-2); border-radius: 30px; padding: 3px; gap: 3px; }
.dfa-sw { font: inherit; font-size: 13.5px; font-weight: 700; border: 0; background: transparent; color: #4a5068; padding: 7px 16px; border-radius: 24px; cursor: pointer; }
.dfa-sw.is-on { background: var(--navy); color: #fff; }
.dfa-sample { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.55; margin: 0 0 22px; color: var(--navy); }
.dfa-pairs { list-style: none; margin: 0 0 14px; padding: 0; display: flex; gap: 14px; flex-wrap: wrap; }
.dfa-pairs li { display: flex; gap: 6px; background: var(--gris); border-radius: 4px; padding: 10px 14px; }
.dfa-pairs span { font-size: 30px; line-height: 1; color: var(--navy); }
.dfa-pairs span:nth-child(2) { color: var(--orange-deep); }
.dfa-caption { margin: 0; font-size: 14px; color: #4a5068; }
.font-dfa { font-family: var(--font-title); }
.font-std { font-family: Georgia, 'Times New Roman', serif; }

/* ------------------------------------------------------- bandeau CTA */
.cta-band { background: var(--orange); color: var(--navy); padding: clamp(40px, 6vw, 64px) 0; }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--navy); margin-bottom: .3em; }
.cta-band p { margin: 0; max-width: 62ch; }
.cta-band .eyebrow--light { color: var(--navy); }
.cta-band .btn--orange { background: var(--navy); color: #fff; }
.cta-band .btn--orange:hover { background: var(--blue); }

/* -------------------------------------------------- pages interieures */
.phero {
    position: relative; color: #fff; background: var(--navy);
    padding: clamp(48px, 7vw, 86px) 0 clamp(40px, 6vw, 70px); isolation: isolate;
}
.phero::before {
    content: ''; position: absolute; inset: 0; z-index: -2;
    background-image: var(--phero-img); background-size: cover; background-position: center 40%;
}
.phero::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(100deg, rgba(5, 15, 71, .95), rgba(5, 15, 71, .78));
}
.phero .eyebrow, .sec--navy .eyebrow, .valeurs .eyebrow, .dfa .eyebrow { color: var(--orange); }
.phero h1 { color: #fff; font-size: clamp(29px, 4.4vw, 48px); max-width: 20ch; }
.phero-lead { max-width: 70ch; color: #dfe3f5; font-size: 17.5px; margin: 0; }
.crumb { font-size: 13px; color: #b9c0e0; margin-bottom: 22px; display: flex; gap: 10px; }
.crumb a { color: #dfe3f5; }
.crumb span[aria-hidden] { opacity: .5; }

.sec { padding: clamp(50px, 7vw, 88px) 0; }
.sec--gris { background: var(--gris); }
.sec--navy { background: var(--navy); color: #fff; }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec--navy p { color: #c7cdea; }
.prose { max-width: 74ch; }
.prose p { color: #4a5068; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 21px; }
.prose ul { padding-left: 22px; color: #4a5068; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--blue); }
.prose a.btn--orange { color: var(--navy); }
.prose a.btn--navy, .prose a.btn--ghost { color: #fff; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--rev .split-media { order: -1; }
.split-media img { border-radius: var(--r); width: 100%; object-fit: cover; }

.tiles { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.tile { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tile-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile-date { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); }
.tile h3 { margin: 0; font-size: 20px; }
.tile p { margin: 0; font-size: 15.5px; color: #4a5068; }

.agenda { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.agenda li { display: grid; grid-template-columns: 210px 1fr; gap: 20px; align-items: baseline; background: #fff; border-left: 4px solid var(--orange); padding: 20px 24px; box-shadow: var(--shadow); }
.agenda .ag-date { font-family: var(--font-title); font-weight: 700; color: var(--navy); }
.agenda h3 { margin: 0 0 4px; font-size: 19px; }
.agenda p { margin: 0; color: #4a5068; font-size: 15.5px; }

.people { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.person { text-align: center; }
.person-photo { display: block; position: relative; overflow: hidden; border-radius: 50%; aspect-ratio: 1; background: var(--gris); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-photo::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: inset 0 0 0 3px var(--orange); opacity: 0; transition: opacity .25s;
}
.person:hover .person-photo::after { opacity: 1; }
.person h3 { margin: 16px 0 2px; font-size: 18px; }
.person .person-role { margin: 0; font-weight: 700; color: var(--orange-deep); font-size: 14px; }
.person .person-com { margin: 4px 0 0; font-size: 14px; color: #4a5068; }

.facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facts li { background: var(--navy); color: #fff; padding: 26px; border-radius: var(--r); }
.facts strong { display: block; font-family: var(--font-title); font-size: 34px; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.facts span { color: #c7cdea; font-size: 15px; }

.docs { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.docs li { display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #fff; padding: 16px 22px; box-shadow: var(--shadow); border-radius: var(--r); flex-wrap: wrap; }
.docs .doc-name { font-weight: 700; color: var(--navy); }
.docs .doc-meta { font-size: 14px; color: #4a5068; }

.mini-nav { list-style: none; margin: 0 0 40px; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.mini-nav a { display: inline-block; padding: 9px 18px; border: 2px solid var(--gris-2); border-radius: 30px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 14px; }
.mini-nav a:hover { border-color: var(--orange); color: var(--orange-deep); }

/* ------------------------------------------------------------- footer */
.site-footer { background: var(--navy); color: #dfe3f5; padding: clamp(46px, 6vw, 70px) 0 34px; }
.foot-top { display: grid; grid-template-columns: 112px 1fr auto; gap: 32px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.foot-logo { width: 112px; height: 112px; }
.foot-quote { margin: 0; }
.foot-quote p { margin: 0 0 8px; font-size: 15.5px; line-height: 1.6; font-style: italic; }
.foot-quote cite { font-style: normal; font-size: 13px; color: #b9c0e0; }
.foot-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot-social-label { margin: 0 4px 0 0; font-size: 14px; }
.foot-nav { display: flex; gap: 34px; flex-wrap: wrap; padding: 26px 0 18px; }
.foot-nav a { color: var(--orange); text-decoration: none; font-size: 13.5px; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.foot-nav a:hover { text-decoration: underline; }
.foot-legal { margin: 0; font-size: 13px; color: #98a0c8; }
.foot-legal a { color: #c7cdea; }

/* ------------------------------------------------------------ reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- responsive */
@media (max-width: 1100px) {
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .people { grid-template-columns: repeat(3, 1fr); }
    .tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .burger { display: block; position: relative; z-index: 95; }
    body.nav-open::after {
        content: ''; position: fixed; inset: 0; background: rgba(5, 15, 71, .55);
        z-index: 85; backdrop-filter: blur(2px);
    }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
        background: var(--navy-2); padding: 96px 22px 34px; overflow-y: auto;
        transform: translateX(100%); transition: transform .32s var(--ease); z-index: 90;
    }
    body.nav-open .nav { transform: none; }
    body.nav-open { overflow: hidden; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-link { padding: 14px 12px; font-size: 15px; justify-content: space-between; }
    .nav-link::after { display: none; }
    .nav-sub {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: rgba(0, 0, 0, .22); border-top: 0; border-left: 3px solid var(--orange);
        display: none; padding: 4px 0 8px;
    }
    .nav-item.is-open .nav-sub { display: block; }
    .nav-item.is-open .nav-chev { transform: rotate(180deg); }
    .nav-item--cta { margin: 16px 0 0; }
    .nav-item--cta .btn { width: 100%; justify-content: center; }

    .slide { grid-template-columns: 1fr; }
    .qsn-in, .asso-in, .adh-in, .dfa-in, .split { grid-template-columns: 1fr; }
    .split--rev .split-media { order: 0; }
    .valeurs-grid { grid-template-columns: 1fr; gap: 20px; }
    .foot-top { grid-template-columns: 1fr; text-align: left; }
    .agenda li { grid-template-columns: 1fr; gap: 6px; }
    .facts { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .cards-4, .tiles { grid-template-columns: 1fr; }
    .people { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-sub { display: none; }
    .principe { grid-template-columns: 1fr; }
    .principe-mot { padding: 10px; }
    .frise::before { left: 62px; }
    .frise-item { grid-template-columns: 64px 1fr; }
    .frise-body { grid-template-columns: 1fr; }
    .frise-body img { width: 100%; height: 120px; }
    .a11ybar-txt { display: none; }
}
