/* ==========================================================================
   PORTÉE — feuille de styles commune
   Le savoir à portée de chacun.

   Palette (chaque couleur a un rôle) :
   - bleu nuit  #183153 : confiance, sérieux, cadre pédagogique (titres, fonds forts)
   - vert-bleu  #2A8178 : dimension sociale, proximité, mouvement (tracés, surfaces)
   - vert-bleu foncé #1F6B63 : même teinte assombrie pour les petits textes et liens
     (le #2A8178 n’atteint que 4,3:1 sur l’ivoire, insuffisant pour du texte courant)
   - jaune      #F2C14E : progression, réussite — accent uniquement, jamais en texte long
   - ivoire     #F8F6F0 : accueil, humanité (fond principal)
   - anthracite #263238 : lisibilité du texte courant

   Motif graphique unique : le « tracé » — une ligne en pointillés qui relie des
   étapes, comme le trajet qui rapproche le savoir de l’élève. Il apparaît dans
   le logo, l’illustration d’accueil, les niveaux et les étapes.
   ========================================================================== */

:root {
  --navy: #183153;
  --navy-deep: #10233d;
  --teal: #2A8178;
  --teal-text: #1F6B63;
  --teal-soft: #DCEEEB;
  --yellow: #F2C14E;
  --yellow-soft: #FBEFD0;
  --ivory: #F8F6F0;
  --ivory-deep: #EFEBE0;
  --ink: #263238;
  --muted: #4A5A62;
  --line: #DDD7C8;
  --white: #FFFFFF;

  /* Texte courant : police système, rapide et très lisible partout.
     Titres : variante arrondie quand le système la fournit (macOS, iOS),
     en écho aux tracés arrondis du logo ; sinon police système. */
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  --font-head: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;

  --step--1: 0.9375rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.35rem + 1.8vw, 2.5rem);
  --step-4: clamp(2.15rem, 1.45rem + 3.2vw, 3.6rem);

  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: clamp(3rem, 2rem + 5vw, 5.5rem);

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;
  --measure: 66ch;
}

/* ---------- Base ---------- */

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

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); font-weight: 750; }
h3 { font-size: var(--step-1); font-weight: 700; line-height: 1.3; }

p, ul, ol, dl { margin: 0 0 1em; }
p { max-width: var(--measure); }

a {
  color: var(--teal-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { color: var(--navy); text-decoration-thickness: 2px; }

strong { font-weight: 700; color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible { outline-color: var(--yellow); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-s);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; color: var(--white); }

.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

/* Marqueur des informations à compléter avant la mise en ligne */
.todo {
  background: var(--yellow-soft);
  color: var(--ink);
  border: 1px dashed #B8860B;
  border-radius: 4px;
  padding: 0 0.3em;
  font-weight: 600;
}

/* ---------- En-tête et navigation ---------- */

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-block: 0.9rem;
}

.brand { display: inline-flex; align-items: center; padding: 0.25rem 0; }
.brand img { display: block; width: auto; height: 38px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open,
.nav-toggle[aria-expanded="false"] .nav-toggle__close { display: none; }

.site-nav { width: 100%; }
.js .site-nav { display: none; }
.js .site-nav.is-open { display: block; }

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  display: flex;
  flex-direction: column;
}

.site-nav__list a {
  display: block;
  padding: 0.7rem 0.25rem;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.site-nav__list a:hover { color: var(--teal-text); }
.site-nav__list a[aria-current="page"] {
  color: var(--teal-text);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 0.45em;
}

.site-nav__cta { margin: 0.5rem 0 0.25rem; }

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .site-nav, .js .site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: auto;
  }
  .site-nav__list { flex-direction: row; gap: 0.25rem; padding: 0; }
  .site-nav__list a { border: 0; padding: 0.5rem 0.6rem; }
  .site-nav__cta { margin: 0; }
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); color: var(--white); }

.btn--accent { background: var(--yellow); color: var(--navy); }
.btn--accent:hover { background: #E8B23A; color: var(--navy); }

.btn--ghost { background: transparent; color: var(--navy); border-color: currentColor; }
.btn--ghost:hover { background: var(--white); color: var(--navy); }
.on-dark .btn--ghost { color: var(--ivory); }
.on-dark .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.btn--small { min-height: 44px; padding: 0.55rem 1.1rem; font-size: var(--step--1); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-l); }

@media (prefers-reduced-motion: no-preference) {
  .btn, .site-nav__list a { transition: background-color 0.15s ease, color 0.15s ease; }
}

/* ---------- Sections ---------- */

.section { padding-block: var(--space-xl); }
.section--white { background: var(--white); border-block: 1px solid var(--line); }
.section--tint { background: var(--ivory-deep); }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--navy h2, .section--navy h3, .section--navy strong { color: var(--white); }
.section--navy a:not(.btn) { color: var(--yellow); }
.section--navy a:not(.btn):hover { color: var(--white); }

.section__intro { max-width: 46rem; margin-bottom: var(--space-l); }
.section__intro p { font-size: var(--step-1); color: var(--muted); }
.section--navy .section__intro p { color: #D9E1EA; }

.section__more { margin-top: var(--space-l); font-weight: 700; }

.page-head { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) var(--space-l); }
.page-head .lead { font-size: var(--step-2); line-height: 1.45; color: var(--ink); max-width: 40ch; }

.lead { font-size: var(--step-1); line-height: 1.55; }

.split {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 56em) {
  .split { grid-template-columns: 1fr 1fr; align-items: start; }
  .split--wide-left { grid-template-columns: 1.25fr 0.75fr; }
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
}
.panel > :last-child { margin-bottom: 0; }

/* ---------- Accueil : hero ---------- */

.hero { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) var(--space-xl); }

.hero__grid { display: grid; gap: var(--space-l); align-items: center; }
@media (min-width: 60em) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero__signature {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-text);
  font-size: var(--step-1);
  margin-bottom: 0.75rem;
}

.hero h1 { max-width: 17ch; }
.hero .lead { max-width: 52ch; }

.hero__art { max-width: 30rem; justify-self: center; width: 100%; }

/* Les trois idées clés, reliées par le tracé */
.keypoints {
  list-style: none;
  margin: var(--space-xl) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  position: relative;
}
@media (min-width: 48em) {
  .keypoints { grid-template-columns: repeat(3, 1fr); gap: var(--space-l); }
  .keypoints::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 28px;
    right: calc((100% - 2 * var(--space-l)) / 3 - 28px);
    border-top: 3px dotted var(--teal);
    z-index: 0;
  }
}
.keypoints li { position: relative; z-index: 1; }
.keypoints h2, .keypoints h3 { font-size: var(--step-1); margin: 0.9rem 0 0.35rem; }
.keypoints p { margin: 0; color: var(--muted); }

.icon-stop {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: 3px solid var(--navy);
  color: var(--navy);
}
.icon-stop svg { width: 26px; height: 26px; }
.icon-stop--end { background: var(--yellow); border-color: var(--yellow); }

/* ---------- Niveaux (tracé vertical ascendant) ---------- */

.levels {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2.75rem;
  position: relative;
}
.levels::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.6rem;
  bottom: 1.4rem;
  border-left: 3px dotted var(--teal);
}
.levels > li { position: relative; padding-bottom: var(--space-l); }
.levels > li:last-child { padding-bottom: 0; }
.levels > li::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--ivory);
  border: 3px solid var(--navy);
}
.section--white .levels > li::before { background: var(--white); }
.levels > li:last-child::before { background: var(--yellow); border-color: var(--yellow); }
.levels h3 { margin-bottom: 0.25rem; }
.levels p { margin: 0; }

.also {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
}
.also li {
  border-left: 4px solid var(--teal);
  padding: 0.25rem 0 0.25rem 1rem;
}
.also h3 { margin-bottom: 0.2rem; }
.also p { margin: 0; }

.note { color: var(--muted); font-size: var(--step--1); }

/* ---------- Engagement ---------- */

.pledge {
  font-family: var(--font-head);
  font-size: var(--step-3);
  font-weight: 750;
  line-height: 1.2;
  color: var(--white);
  max-width: 24ch;
  margin-bottom: var(--space-l);
}
.pledge__mark {
  display: block;
  width: 3.5rem;
  height: 6px;
  border-radius: 3px;
  background: var(--yellow);
  margin-bottom: 1.25rem;
}

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m) var(--space-l);
}
@media (min-width: 48em) { .facts { grid-template-columns: repeat(3, 1fr); } }
.facts li { border-top: 1px solid rgba(248, 246, 240, 0.3); padding-top: 0.9rem; }
.facts h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.facts p { margin: 0; color: #D9E1EA; }

/* ---------- Étapes numérotées (vraie séquence) ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-l);
  position: relative;
}
.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3.75rem;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}
.steps > li:last-child::before { background: var(--yellow); color: var(--navy); }
.steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.375rem - 1.5px);
  top: 3.1rem;
  bottom: calc(-1 * var(--space-l) + 0.35rem);
  border-left: 3px dotted var(--teal);
}
.steps h3 { margin: 0.35rem 0 0.3rem; }
.steps p { margin: 0; color: var(--muted); }

@media (min-width: 60em) {
  .steps--row { grid-template-columns: repeat(4, 1fr); }
  .steps--row > li { padding-left: 0; padding-top: 3.9rem; }
  .steps--row > li:not(:last-child)::after {
    left: 3.3rem;
    right: calc(-1 * var(--space-l) + 0.4rem);
    top: calc(1.375rem - 1.5px);
    bottom: auto;
    border-left: 0;
    border-top: 3px dotted var(--teal);
  }
}

/* ---------- Statistiques d’impact ---------- */

.notice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--yellow-soft);
  border: 1px solid #E6CD86;
  border-radius: var(--radius-m);
  padding: 1rem 1.25rem;
  margin-bottom: var(--space-l);
  color: var(--ink);
}
.notice svg { width: 24px; height: 24px; flex: none; margin-top: 0.1rem; color: var(--navy); }
.notice p { margin: 0; }
.notice strong { display: block; color: var(--navy); }

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius-m);
  padding: 1.1rem 1.25rem 1.25rem;
}
.stat__label { margin: 0 0 0.35rem; color: var(--muted); font-size: var(--step--1); font-weight: 600; }
.stat__value {
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--step-3);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.stat__value--text { font-size: var(--step-1); line-height: 1.35; font-weight: 700; }
.stat__unit { font-size: 0.55em; font-weight: 700; margin-left: 0.15em; }
[data-impact]:not(.has-data) .stat__value { font-size: var(--step-1); line-height: 1.35; }

.table-wrap { overflow-x: auto; margin-top: var(--space-l); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  font-size: var(--step--1);
}
.data-table caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: var(--step-1);
  padding-bottom: 0.6rem;
}
.data-table th, .data-table td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { background: var(--ivory-deep); color: var(--navy); }
.data-table td.num, .data-table th.num { text-align: right; white-space: nowrap; }

/* ---------- Valeurs ---------- */

.values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0 var(--space-xl);
}
@media (min-width: 52em) { .values { grid-template-columns: 1fr 1fr; } }
.values > li { border-top: 1px solid var(--line); padding: 1.35rem 0 1.1rem; }
.values h3 { margin-bottom: 0.35rem; }
.values p { margin: 0; }

.values--short { gap: 0 var(--space-l); }
@media (min-width: 52em) { .values--short { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Personne ---------- */

.person { display: grid; gap: var(--space-l); align-items: start; }
@media (min-width: 48em) { .person { grid-template-columns: auto 1fr; } }

.monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.monogram::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ivory);
}

.cv-list { margin: 0; display: grid; gap: 0; }
.cv-list > div {
  display: grid;
  gap: 0.15rem 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 44em) { .cv-list > div { grid-template-columns: 13rem 1fr; } }
.cv-list dt { font-weight: 700; color: var(--navy); }
.cv-list dd { margin: 0; }

/* ---------- Listes de conditions et engagements ---------- */

.checklist { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2.1rem;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.95rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 3px solid var(--teal);
}

.commitments { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.75rem; }
.commitments li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 0.9rem 1.1rem;
}
.commitments .commitment__name { font-weight: 600; flex: 1 1 16rem; }

.status {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.status--todo { background: var(--yellow-soft); color: #5B4300; border: 1px solid #E6CD86; }
.status--done { background: var(--teal-soft); color: var(--teal-text); border: 1px solid #A9D3CD; }

/* ---------- Contact par courriel ---------- */

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: var(--radius-l);
  padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
}
.contact-box h2, .contact-box h3 { margin-top: 0; }
.contact-box .btn-row { margin-top: 1rem; }

.email-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin: 1.25rem 0 0;
  font-weight: 600;
}
.email-line a { word-break: break-all; }

.copy-status { min-height: 1.6em; margin: 0.4rem 0 0; color: var(--teal-text); font-weight: 600; }

details {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--ivory);
}
details > summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--navy);
  min-height: 44px;
}
details[open] > summary { border-bottom: 1px solid var(--line); }
details > .details__body { padding: 1rem; }

.template {
  margin: 0 0 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: var(--step--1);
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* ---------- FAQ ---------- */

.faq details { background: var(--white); }
.faq details + details { margin-top: 0.75rem; }
.faq .details__body p:last-child { margin-bottom: 0; }

/* ---------- Partenaires ---------- */

.partner-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.partner-card__logo {
  display: grid;
  place-items: center;
  height: 88px;
}
.partner-card__logo img { max-height: 88px; max-width: 100%; width: auto; object-fit: contain; }
.partner-card h3 { margin: 0; font-size: var(--step-1); }
.partner-card p { margin: 0; }
.partner-card blockquote { margin: 0; color: var(--muted); }

.partner-grid--compact { grid-template-columns: repeat(auto-fill, minmax(min(100%, 10rem), 1fr)); }
.partner-grid--compact .partner-card { align-items: center; justify-content: center; }

.partner-placeholder {
  display: grid;
  gap: 1rem;
  justify-items: start;
  border: 3px dotted var(--teal);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--white);
}
.partner-placeholder img { width: 56px; height: 56px; }
.partner-placeholder p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 750;
  font-size: var(--step-2);
  line-height: 1.3;
  color: var(--navy);
  max-width: 30ch;
}

.offer { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-m); }
@media (min-width: 48em) { .offer { grid-template-columns: 1fr 1fr; } }
.offer li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.25rem; }
.offer h3 { display: flex; align-items: center; gap: 0.6rem; }
.offer h3 svg { width: 24px; height: 24px; color: var(--teal-text); flex: none; }
.offer p { margin: 0; }

/* ---------- Pied de page ---------- */

.site-footer {
  background: var(--navy);
  color: #D9E1EA;
  padding-block: var(--space-xl) var(--space-l);
  font-size: var(--step--1);
}
.site-footer a { color: var(--ivory); }
.site-footer a:hover { color: var(--yellow); }

.site-footer__grid { display: grid; gap: var(--space-l); }
@media (min-width: 52em) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer__brand img { height: 36px; width: auto; display: block; margin-bottom: 0.9rem; }
.site-footer__signature { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: var(--step-1); margin-bottom: 0.5rem; }
.site-footer h2 { color: var(--white); font-size: var(--step-0); margin-bottom: 0.6rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.25rem 0; }
.site-footer li a { display: inline-block; padding: 0.2rem 0; }
.site-footer__bottom {
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid rgba(248, 246, 240, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
.site-footer__bottom p { margin: 0; }

/* ---------- Divers ---------- */

.mt-l { margin-top: var(--space-l); }
.partner-grid + .partner-placeholder { margin-top: var(--space-m); }

.center-page { min-height: 55vh; display: grid; align-content: center; }

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  .btn { border-color: ButtonText; }
  .levels > li::before, .steps > li::before, .icon-stop { forced-color-adjust: none; }
}

/* ---------- Impression (notamment la page Impact) ---------- */

@media print {
  @page { margin: 1.6cm; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .skip-link, .nav-toggle, .site-nav, .btn, .btn-row, .no-print, .site-footer nav,
  .hero__art, .copy-status, details { display: none !important; }
  .site-header { border: 0; }
  .brand img { height: 28px; }
  .section, .page-head { padding-block: 0.8cm 0.4cm; }
  .section--navy, .section--white, .section--tint, .site-footer { background: #fff !important; color: #000 !important; }
  .section--navy h2, .section--navy h3, .site-footer h2, .site-footer__signature { color: #000 !important; }
  .stat, .notice, .data-table { break-inside: avoid; }
  .stat { border: 1px solid #999; border-top: 4px solid #555; }
  .site-footer { padding: 0.5cm 0 0; border-top: 1px solid #999; }
  .site-footer__brand img { display: none; }
  .site-footer a { color: #000; }
  a { color: #000; text-decoration: none; }
}
