/* ==========================================================================
   Système de design — jetons, base typographique et composants partagés.
   Chargé par le site public ET par l'administration.
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Direction visuelle v2 : marine profond, sable et or (docs/DESIGN-V2.md) */
  /* Surfaces */
  --fond: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f4ef;
  --surface-3: #efeae1;
  /* Encre (marine) */
  --encre: #1b2433;
  --encre-2: #4a5364;
  --encre-3: #667080; /* légèrement plus foncé que la maquette (#7C8595) pour tenir 4,5:1 sur blanc */
  --encre-inverse: #ffffff;
  /* Lignes */
  --ligne: #e6e1d8;
  --ligne-2: #d6cfc3;
  /* Accent : le marine est la couleur d'action */
  --accent: #1b2433;
  --accent-fonce: #101722;
  --accent-clair: #e9edf3;
  --accent-encre: #1b2433;
  /* Sable et or : filets, badges ronds, icônes, fonds de section */
  --sable: #c9a87c;
  --sable-fonce: #846540; /* plus foncé que la maquette (#A8865A) pour tenir 4,5:1 sur sable clair */
  --sable-clair: #f3eadf;
  --or: #d8b98a;
  /* États : couleur, fond clair, texte sur fond clair (contraste 4,5:1), bordure */
  --succes: #2e7d5b;
  --succes-clair: #e3f2ea;
  --succes-texte: #1d5a40;
  --succes-bord: #c5e3d2;
  --alerte: #b7791f;
  --alerte-clair: #fbf1dc;
  --alerte-texte: #6e4409;
  --alerte-bord: #ecd8ae;
  --erreur: #b23a3a;
  --erreur-clair: #f9e4e4;
  --erreur-texte: #7d2323;
  --erreur-bord: #efc6c6;
  --info: #2b5fa6;
  --info-clair: #e4ecf8;
  --info-texte: #1f4576;
  --info-bord: #c9d8ee;
  /* Formes */
  --rayon-s: 6px;
  --rayon: 12px;
  --rayon-l: 16px;
  --ombre-1: 0 1px 2px rgba(27, 36, 51, 0.06), 0 1px 3px rgba(27, 36, 51, 0.04);
  --ombre-2: 0 10px 30px -12px rgba(27, 36, 51, 0.22);
  --ombre-3: 0 24px 60px -24px rgba(27, 36, 51, 0.3);
  /* Typographie */
  --police: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --police-titre: "Fraunces", Georgia, "Times New Roman", serif;
  --texte-s: 0.875rem;
  --texte-xs: 0.8125rem;
  /* Rythme */
  --espace: 1rem;
  --transition: 160ms cubic-bezier(0.2, 0.7, 0.3, 1);
  --anneau: 0 0 0 3px rgba(27, 36, 51, 0.22);
  color-scheme: light;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: var(--police);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01", "tnum";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.01em; font-weight: 600; color: var(--encre); }
h1 { font-family: var(--police-titre); font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 500; font-variation-settings: "opsz" 144; letter-spacing: -0.02em; }
h2 { font-family: var(--police-titre); font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 500; font-variation-settings: "opsz" 144; letter-spacing: -0.02em; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
small { font-size: var(--texte-s); }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--ligne); margin: 2rem 0; }
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.9em; background: var(--surface-2); padding: 0.1em 0.35em; border-radius: 4px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }
.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; }
.lien-evitement { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--encre); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 var(--rayon-s) 0; }
.lien-evitement:focus { left: 0; }

/* ---------- Mise en page ---------- */
.conteneur { width: min(100% - 2.5rem, 76rem); margin-inline: auto; }
.conteneur--etroit { width: min(100% - 2.5rem, 46rem); }
.conteneur--moyen { width: min(100% - 2.5rem, 60rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--serree { padding-block: clamp(2rem, 4vw, 3rem); }
.section--fond { background: var(--surface); border-block: 1px solid var(--ligne); }
.section-entete { max-width: 46rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-entete .surtitre { margin-bottom: 0.6rem; }
.section-entete p:last-child { margin-bottom: 0; }
.surtitre { display: inline-block; font-size: var(--texte-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sable-fonce); margin-bottom: 0.75rem; }
.texte-2 { color: var(--encre-2); }
.texte-3 { color: var(--encre-3); }
.texte-s { font-size: var(--texte-s); }
.texte-centre { text-align: center; }
.grille { display: grid; gap: 1.25rem; }
.grille--2 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr)); }
.grille--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr)); }
.grille--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr)); }
.pile { display: flex; flex-direction: column; gap: 0.75rem; }
.ligne { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.ligne--entre { justify-content: space-between; }
.ligne--fin { justify-content: flex-end; }
.espace-haut { margin-top: 1.5rem; }
.espace-bas { margin-bottom: 1.5rem; }

/* ---------- Boutons ---------- */
.bouton {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.75rem; padding: 0.6rem 1.15rem; border-radius: 6px;
  border: 1px solid transparent; font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  text-decoration: none; white-space: nowrap; transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.bouton:hover { text-decoration: none; }
.bouton:active { transform: translateY(1px); }
.bouton .icone { width: 1.1em; height: 1.1em; flex: none; }
.bouton--primaire { background: var(--accent); color: #fff; border-color: var(--accent); }
.bouton--primaire:hover { background: var(--accent-fonce); border-color: var(--accent-fonce); }
.bouton--secondaire { background: var(--surface); color: var(--accent); border-color: var(--accent); }
.bouton--secondaire:hover { background: var(--accent-clair); border-color: var(--accent-fonce); color: var(--accent-fonce); }
.bouton--contour { background: transparent; color: var(--accent); border-color: var(--accent); }
.bouton--contour:hover { background: var(--accent); color: #fff; }
.bouton--sombre { background: var(--encre); color: #fff; border-color: var(--encre); }
.bouton--sombre:hover { background: var(--accent-fonce); }
.bouton--fantome { background: transparent; color: var(--encre-2); }
.bouton--fantome:hover { background: var(--surface-2); color: var(--encre); }
.bouton--danger { background: var(--erreur-clair); color: var(--erreur); border-color: transparent; }
.bouton--danger:hover { background: var(--erreur-bord); }
.bouton--petit { min-height: 2.25rem; padding: 0.4rem 0.9rem; font-size: 0.875rem; }
.bouton--grand { min-height: 3.25rem; padding: 0.8rem 1.6rem; font-size: 1.05rem; }
.bouton--bloc { width: 100%; }
.bouton--icone { padding: 0; width: 2.5rem; min-height: 2.5rem; border-radius: 50%; }
.bouton[disabled], .bouton[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; }
.bouton.est-occupe { position: relative; color: transparent !important; pointer-events: none; }
.bouton.est-occupe::after { content: ""; position: absolute; width: 1.1em; height: 1.1em; border: 2px solid currentColor; border-color: rgba(255,255,255,.9) transparent rgba(255,255,255,.9) transparent; border-radius: 50%; animation: tourne 0.8s linear infinite; }
.bouton--secondaire.est-occupe::after, .bouton--contour.est-occupe::after, .bouton--fantome.est-occupe::after { border-color: var(--encre) transparent var(--encre) transparent; }
@keyframes tourne { to { transform: rotate(360deg); } }

/* ---------- Champs ---------- */
.champ { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.champ label, .champ-etiquette { font-weight: 600; font-size: var(--texte-s); color: var(--encre); }
.champ-aide { font-size: var(--texte-xs); color: var(--encre-3); margin: 0; }
.champ-erreur { font-size: var(--texte-xs); color: var(--erreur); margin: 0; font-weight: 500; }
.champ.a-erreur .entree, .champ.a-erreur .selection, .champ.a-erreur .zone-texte { border-color: var(--erreur); }
.champ .facultatif { font-weight: 400; color: var(--encre-3); }
.entree, .selection, .zone-texte {
  width: 100%; min-height: 2.75rem; padding: 0.6rem 0.85rem; background: var(--surface);
  border: 1px solid var(--ligne-2); border-radius: var(--rayon-s); transition: border-color var(--transition), box-shadow var(--transition);
}
.entree:hover, .selection:hover, .zone-texte:hover { border-color: var(--encre-3); }
.entree:focus, .selection:focus, .zone-texte:focus { outline: none; border-color: var(--accent); box-shadow: var(--anneau); }
.entree::placeholder, .zone-texte::placeholder { color: #6f7580; } /* 4,6:1 sur blanc : les placeholders portent des consignes */
.entree[readonly] { background: var(--surface-2); }
.zone-texte { min-height: 6.5rem; resize: vertical; line-height: 1.5; }
.selection { appearance: none; padding-right: 2.4rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%234f545c' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 0.85rem; }
.entree--petite { min-height: 2.25rem; padding: 0.35rem 0.6rem; font-size: var(--texte-s); }
.entree--montant { text-align: right; font-variant-numeric: tabular-nums; }
.case { display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer; font-size: 0.95rem; }
.case input { width: 1.1rem; height: 1.1rem; accent-color: var(--accent); margin: 0; }
.formulaire-grille { display: grid; gap: 1rem 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.formulaire-grille .champ--large { grid-column: 1 / -1; }
.formulaire-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.25rem; }
fieldset { border: 0; padding: 0; margin: 0 0 1.5rem; min-width: 0; }
legend { font-weight: 600; font-size: 1.05rem; padding: 0; margin-bottom: 0.75rem; }

/* Compteur de quantité */
.stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--ligne-2); border-radius: var(--rayon-s); background: var(--surface); overflow: hidden; height: 2.75rem; }
.stepper button { width: 2.6rem; border: 0; background: transparent; color: var(--encre-2); font-size: 1.2rem; line-height: 1; transition: background var(--transition); }
.stepper button:hover { background: var(--surface-2); color: var(--encre); }
.stepper input { width: 3.4rem; border: 0; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; -moz-appearance: textfield; background: transparent; min-height: 0; padding: 0; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--accent-clair); }
.stepper--petit { height: 2.25rem; }
.stepper--petit button { width: 2.1rem; font-size: 1rem; }
.stepper--petit input { width: 2.8rem; font-size: var(--texte-s); }
/* Écrans tactiles : cibles d'au moins 44 px pour les variantes compactes */
@media (pointer: coarse) {
  .bouton--petit { min-height: 2.75rem; }
  .stepper--petit { height: 2.75rem; }
  .stepper--petit button { width: 2.6rem; }
  .entree--petite { min-height: 2.75rem; }
}

/* ---------- Cartes, badges, alertes ---------- */
.carte { background: var(--surface); border: 1px solid var(--ligne); border-radius: var(--rayon); box-shadow: var(--ombre-1); }
.carte--corps { padding: 1.25rem; }
.carte-titre { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: var(--texte-xs); font-weight: 600; line-height: 1.4; background: var(--surface-2); color: var(--encre-2); white-space: nowrap; }
.badge::before { content: ""; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: currentColor; opacity: 0.8; }
.badge--sans-point::before { display: none; }
.badge--accent { background: var(--sable-clair); color: var(--sable-fonce); }
.badge--succes { background: var(--succes-clair); color: var(--succes-texte); }
.badge--alerte { background: var(--alerte-clair); color: var(--alerte-texte); }
.badge--erreur { background: var(--erreur-clair); color: var(--erreur); }
.badge--info { background: var(--info-clair); color: var(--info); }
.badge--neutre { background: var(--surface-3); color: var(--encre-2); }
.pastille { display: inline-flex; align-items: center; justify-content: center; min-width: 1.35rem; height: 1.35rem; padding: 0 0.35rem; border-radius: 999px; background: var(--or); color: var(--encre); font-size: 0.72rem; font-weight: 700; line-height: 1; }
.alerte { padding: 0.9rem 1.1rem; border-radius: var(--rayon-s); border: 1px solid transparent; font-size: 0.95rem; margin-bottom: 1rem; }
.alerte p:last-child { margin-bottom: 0; }
.alerte--succes { background: var(--succes-clair); color: var(--succes-texte); border-color: var(--succes-bord); }
.alerte--erreur { background: var(--erreur-clair); color: var(--erreur-texte); border-color: var(--erreur-bord); }
.alerte--info { background: var(--info-clair); color: var(--info-texte); border-color: var(--info-bord); }
.alerte--alerte { background: var(--alerte-clair); color: var(--alerte-texte); border-color: var(--alerte-bord); }
.flashs { padding-top: 1rem; }

/* Champ pot de miel des formulaires publics (contact, demande) : hors écran pour les visiteurs, présent pour les robots */
.hp { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* ---------- Tableaux ---------- */
.table-defilante { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--ligne); border-radius: var(--rayon); background: var(--surface); }
.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.table th, .table td { padding: 0.75rem 0.9rem; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--ligne); }
.table th { font-size: var(--texte-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--encre-3); font-weight: 600; background: var(--surface-2); }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: var(--surface-2); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.table .action { text-align: right; white-space: nowrap; }
.table--compacte th, .table--compacte td { padding: 0.5rem 0.7rem; }

/* ---------- Toasts, dialogues, états vides ---------- */
.toasts { position: fixed; inset-inline: 0; bottom: 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 900; pointer-events: none; padding-inline: 1rem; }
.toast { pointer-events: auto; display: flex; align-items: center; gap: 0.75rem; background: var(--encre); color: #fff; padding: 0.75rem 1.1rem; border-radius: 999px; box-shadow: var(--ombre-2); font-size: 0.95rem; max-width: min(100%, 32rem); animation: apparait 200ms ease-out; }
.toast a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.toast--succes { background: var(--succes); }
.toast--erreur { background: var(--erreur); }
@keyframes apparait { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.dialogue { border: 0; padding: 0; border-radius: var(--rayon-l); box-shadow: var(--ombre-3); max-width: min(100% - 2rem, 34rem); width: 100%; background: var(--surface); color: var(--encre); }
.dialogue::backdrop { background: rgba(27, 36, 51, 0.45); backdrop-filter: blur(2px); }
.dialogue-corps { padding: 1.5rem; }
.dialogue-titre { font-size: 1.2rem; margin-bottom: 0.5rem; }
.dialogue-actions { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.vide { text-align: center; padding: 3rem 1rem; }
.vide-code { font-family: var(--police-titre); font-size: 4rem; color: var(--ligne-2); margin: 0; line-height: 1; }
.vide-titre { margin-top: 0.5rem; }
.vide-texte { color: var(--encre-2); max-width: 32rem; margin-inline: auto; }
.vide-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.vide-illustration { width: 4rem; height: 4rem; margin: 0 auto 1rem; color: var(--ligne-2); }

/* ---------- Divers ---------- */
.fil-ariane { font-size: var(--texte-xs); color: var(--encre-3); padding: 0.75rem 0 0; }
.fil-ariane ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.fil-ariane li + li::before { content: "/"; margin-right: 0.35rem; color: var(--ligne-2); }
.fil-ariane a { color: var(--encre-3); }
.onglets { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--ligne); overflow-x: auto; }
.onglet { padding: 0.75rem 1rem; border: 0; background: none; color: var(--encre-2); font-weight: 500; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; text-decoration: none; }
.onglet:hover { color: var(--encre); text-decoration: none; }
.onglet.est-actif { color: var(--accent-encre); border-bottom-color: var(--accent); font-weight: 600; }
.puce-filtre { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.9rem; border-radius: 999px; border: 1px solid var(--ligne-2); background: var(--surface); color: var(--encre-2); font-size: var(--texte-s); font-weight: 500; text-decoration: none; transition: all var(--transition); }
.puce-filtre:hover { border-color: var(--encre-3); text-decoration: none; color: var(--encre); }
.puce-filtre.est-actif { background: var(--encre); color: #fff; border-color: var(--encre); }
.prix-montant { font-weight: 600; font-variant-numeric: tabular-nums; }
.prix-mention { font-size: var(--texte-xs); color: var(--encre-3); }
.icone { width: 1.25rem; height: 1.25rem; flex: none; }
.separateur { border-top: 1px solid var(--ligne); }
.skeleton { background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 37%, var(--surface-2) 63%); background-size: 400% 100%; animation: brille 1.4s ease infinite; border-radius: var(--rayon-s); min-height: 1em; }
@keyframes brille { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
.pagination { display: flex; gap: 0.35rem; flex-wrap: wrap; align-items: center; margin-top: 1.25rem; }
.pagination a, .pagination span { min-width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--rayon-s); border: 1px solid var(--ligne); padding: 0 0.5rem; font-size: var(--texte-s); text-decoration: none; color: var(--encre-2); background: var(--surface); }
.pagination .est-actif { background: var(--encre); color: #fff; border-color: var(--encre); }
.defs { display: grid; grid-template-columns: max-content 1fr; gap: 0.4rem 1rem; margin: 0; font-size: 0.95rem; }
.defs dt { color: var(--encre-3); }
.defs dd { margin: 0; }
