/* Identité visuelle du §3.2 : bleu encre, blanc cassé, gris, accent vert vérité.
   Aucune police distante : la CSP du site interdit les ressources tierces, et une police
   téléchargée ailleurs révélerait la visite à un tiers. On s'appuie sur les polices système. */
:root {
  --encre: #0B2545;
  --papier: #F7F7F5;
  --gris: #8DA9C4;
  --verite: #1B998B;
  --largeur: 42rem;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root { --encre: #F7F7F5; --papier: #0B2545; --gris: #6B8CAE; }
}
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0 1.25rem 4rem;
  background: var(--papier); color: var(--encre);
  font: 1rem/1.65 Inter, -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main, header, footer { max-width: var(--largeur); margin: 0 auto; }
header { padding: 3rem 0 1rem; }
h1, h2, h3 { font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif; line-height: 1.25; }
h1 { font-size: 2rem; margin: 0 0 .25rem; }
h2 { font-size: 1.4rem; margin: 2.5rem 0 .75rem; padding-top: 1.25rem; border-top: 1px solid var(--gris); }
h3 { font-size: 1.1rem; margin: 1.75rem 0 .5rem; }
p, li { max-width: 40rem; }
a { color: var(--verite); text-underline-offset: .15em; }
strong { font-weight: 650; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em;
       background: color-mix(in srgb, var(--gris) 22%, transparent); padding: .1em .35em; border-radius: 3px; }
hr { border: 0; border-top: 1px solid var(--gris); margin: 2.5rem 0; }
table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: .95rem; display: block; overflow-x: auto; }
th, td { text-align: left; padding: .5rem .75rem; border-bottom: 1px solid var(--gris); vertical-align: top; }
th { font-weight: 650; }
.sceau { font-size: 2rem; color: var(--verite); line-height: 1; }
.marque { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
.marque span { font-family: "Source Serif 4", Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.chapo { color: color-mix(in srgb, var(--encre) 75%, var(--papier)); font-size: 1.05rem; }
footer { margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--gris);
         font-size: .9rem; color: color-mix(in srgb, var(--encre) 70%, var(--papier)); }
footer a { margin-right: 1.25rem; }
