/* Oncorose, feuille de style unique.
   Vocabulaire de classes: cahier de releve, registre, entree, palier, gonio, amplitude, vigilance.
   Mode clair integral, aucun theme sombre. */

:root {
  --fond: #FFFFFF;
  --fond-alt: #FBF2F3;
  --surface: #FFFBFB;
  --texte: #24161A;
  --texte-doux: #6B5A5F;
  --accent: #A81C38;
  --accent-sombre: #85142B;
  --accent-texte: #FFFFFF;
  --vert: #1F6F63;
  --bordure: #EADDDF;

  --serif: "Young Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --plume: "Old Standard TT", "Times New Roman", serif;

  --cote: 4.5rem;          /* colonne des numeros de ligne */
  --gouttiere: 1.75rem;
  --largeur: 1180px;
  --entete: 68px;
  --mesure: 68ch;

  --pas-fin: 8px;
  --pas-fort: 48px;
  --trait-fin: rgba(168, 28, 56, 0.09);
  --trait-fort: rgba(168, 28, 56, 0.17);
}

/* ---------- Fondations ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--entete) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-sombre); }

:focus-visible {
  outline: 3px solid var(--vert);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.6em;
  letter-spacing: 0;
}
h1 { font-size: 3.1rem; }
h2 { font-size: 2.15rem; }
h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 0.5em;
}
h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0 0 0.4em;
}
p { margin: 0 0 1.1em; max-width: var(--mesure); }
ul, ol { max-width: var(--mesure); }

.chapeau {
  font-size: 1.1875rem;
  color: var(--texte-doux);
  line-height: 1.6;
}

.petit { font-size: 0.875rem; }
.doux { color: var(--texte-doux); }

.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-texte);
  padding: 0.7rem 1.1rem;
  z-index: 200;
  font-weight: 600;
}
.evitement:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* ---------- Motif signature: quadrillage de plan technique ---------- */

.trame { position: relative; isolation: isolate; }
.trame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, var(--trait-fin) 0 1px, transparent 1px var(--pas-fin)),
    repeating-linear-gradient(to bottom, var(--trait-fin) 0 1px, transparent 1px var(--pas-fin)),
    repeating-linear-gradient(to right, var(--trait-fort) 0 1px, transparent 1px var(--pas-fort)),
    repeating-linear-gradient(to bottom, var(--trait-fort) 0 1px, transparent 1px var(--pas-fort));
  -webkit-mask-image: radial-gradient(115% 90% at 50% 40%, #000 24%, rgba(0, 0, 0, 0.35) 62%, transparent 88%);
  mask-image: radial-gradient(115% 90% at 50% 40%, #000 24%, rgba(0, 0, 0, 0.35) 62%, transparent 88%);
}

/* ---------- Registre: la grille imposee ---------- */

.registre {
  padding: 5.5rem 0;
  border-top: 1px solid var(--bordure);
}
.registre--rose { background: var(--fond-alt); }
.registre--serre { padding: 3.75rem 0; }

.cadre {
  width: min(100% - 2.5rem, var(--largeur));
  margin-inline: auto;
}

.registre__tete {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  align-items: start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--bordure);
  margin-bottom: 2.6rem;
}
.registre__cote {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.55rem;
  white-space: nowrap;
}
.registre__corps { min-width: 0; }
.surtitre {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin: 0 0 0.65rem;
}

/* Entrees numerotees a l interieur d une section */

.entrees { border-top: 1px solid var(--bordure); }
.entree {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--bordure);
  align-items: start;
}
.entree__numero {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 0.35rem;
}
.entree__texte { min-width: 0; }
.entree__texte p:last-child { margin-bottom: 0; }
.entree--large { grid-template-columns: var(--cote) minmax(0, 1fr) minmax(0, 0.85fr); }
.entree__marge {
  font-family: var(--plume);
  font-size: 0.9375rem;
  color: var(--texte-doux);
  border-left: 1px solid var(--bordure);
  padding-left: 1.1rem;
}

/* ---------- Forme signature: coin superieur gauche arrondi, filet de marge ---------- */

.fiche {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  padding: 1.6rem 1.5rem 1.5rem 1.7rem;
}
.fiche::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 33%;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(var(--filet, 1));
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.registre--rose .fiche { background: #FFFFFF; }

.cadre-photo {
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  overflow: hidden;
  position: relative;
  background: var(--fond-alt);
}
.cadre-photo img {
  width: 100%;
  height: auto;
  filter: saturate(0.9);
}
.cadre-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(251, 242, 243, 0.55), rgba(255, 246, 236, 0.1) 55%, transparent);
}
.legende-photo {
  font-family: var(--plume);
  font-size: 0.875rem;
  color: var(--texte-doux);
  margin: 0.7rem 0 0;
  padding-left: 0.1rem;
  max-width: 46ch;
}

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

.bouton-plein, .bouton-creux {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.35rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px 2px 2px 2px;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
.bouton-plein {
  background: var(--accent);
  color: var(--accent-texte);
  border: 1.5px solid var(--accent);
}
.bouton-plein:hover { background: var(--accent-sombre); border-color: var(--accent-sombre); color: var(--accent-texte); }
.bouton-plein .fleche, .bouton-creux .fleche { transition: transform 200ms ease; }
.bouton-plein:hover .fleche, .bouton-creux:hover .fleche { transform: translateX(2px); }
.bouton-creux {
  background: #FFFFFF;
  color: var(--texte);
  border: 1.5px solid var(--bordure);
}
.bouton-creux:hover { border-color: var(--accent); color: var(--texte); }
.bouton-plein[disabled] { opacity: 0.6; }
.rang-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.7rem;
}

/* ---------- En tete ---------- */

.entete {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--entete);
  background: #FFFFFF;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.entete.est-detachee { border-bottom-color: var(--bordure); }
.entete__jauge {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--accent);
}
.entete__contenu {
  height: var(--entete);
  width: min(100% - 2.5rem, var(--largeur));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.gonio {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--texte);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1;
}
.gonio svg { flex: none; }
.gonio .fin { color: var(--texte-doux); }

.navire {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.navire a {
  color: var(--texte);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  border-bottom: 1.5px solid transparent;
}
.navire a:hover { border-bottom-color: var(--accent); }
.entete .bouton-plein { min-height: 42px; font-size: 0.9375rem; }

.ouvre-panneau {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1.5px solid var(--bordure);
  border-radius: 14px 2px 2px 2px;
  min-height: 42px;
  padding: 0 0.85rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--texte);
  cursor: pointer;
}
.ouvre-panneau .barres {
  display: inline-block;
  width: 16px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.panneau {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 120;
  padding: 1.1rem 1.25rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.panneau[hidden] { display: none; }
.panneau__haut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border-bottom: 1px solid var(--bordure);
  padding-bottom: 0.75rem;
}
.ferme-panneau {
  background: none;
  border: 1.5px solid var(--bordure);
  border-radius: 14px 2px 2px 2px;
  min-height: 42px;
  padding: 0 0.85rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--texte);
  cursor: pointer;
}
.panneau ol {
  list-style: none;
  margin: 1.2rem 0 auto;
  padding: 0;
  counter-reset: ligne;
}
.panneau li { border-bottom: 1px solid var(--bordure); }
.panneau li a {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: baseline;
  padding: 0.95rem 0;
  text-decoration: none;
  color: var(--texte);
  font-size: 1.15rem;
  font-family: var(--serif);
}
.panneau li a::before {
  counter-increment: ligne;
  content: "R." counter(ligne, decimal-leading-zero);
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.panneau .bouton-plein { margin-top: 1.5rem; justify-content: center; }

/* ---------- Hero ---------- */

.ouverture {
  padding: calc(var(--entete) + 4.2rem) 0 4.5rem;
  border-bottom: 1px solid var(--bordure);
}
.ouverture__grille {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: var(--gouttiere);
  align-items: start;
}
.ouverture h1 { max-width: 15ch; }
.ouverture .chapeau { max-width: 46ch; }
.ouverture__photo { margin-top: 0.4rem; }

.jauge-amplitude {
  margin-top: 2.6rem;
  border-top: 1px solid var(--bordure);
  padding-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 40rem;
}
.jauge-amplitude div { border-left: 2px solid var(--accent); padding-left: 0.8rem; }
.jauge-amplitude b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
}
.jauge-amplitude span {
  display: block;
  font-size: 0.875rem;
  color: var(--texte-doux);
  line-height: 1.45;
}

/* ---------- Encadre de vigilance ---------- */

.vigilance {
  position: relative;
  border: 1px solid var(--accent);
  border-radius: 18px 2px 2px 2px;
  padding: 1.3rem 1.4rem 1.2rem 1.5rem;
  background: #FFFFFF;
  overflow: hidden;
}
.vigilance::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(to right, var(--trait-fin) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(to bottom, var(--trait-fin) 0 1px, transparent 1px 6px);
  -webkit-mask-image: linear-gradient(to right, #000 0 55%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0 55%, transparent 100%);
}
.vigilance > * { position: relative; z-index: 1; }
.vigilance__titre {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.vigilance ul { margin: 0; padding-left: 1.1rem; }
.vigilance li { margin-bottom: 0.3rem; }

/* ---------- Listes de releve ---------- */

.liste-relevee {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: releve;
}
.liste-relevee li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  column-gap: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bordure);
}
.liste-relevee li::before {
  counter-increment: releve;
  content: counter(releve, decimal-leading-zero);
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 0.28rem;
}
.liste-relevee li:last-child { border-bottom: 0; }

.liste-cochee { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.liste-cochee li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.liste-cochee li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--vert);
  border-bottom: 2px solid var(--vert);
  transform: rotate(-45deg);
}

/* ---------- Fonctionnalites ---------- */

.planche {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.planche .fiche { display: flex; flex-direction: column; }
.fiche__rang {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.55rem;
}
.fiche p:last-child { margin-bottom: 0; }

/* ---------- Avantages, colonnes debordantes ---------- */

.gains {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
}
.gains__liste { border-top: 1px solid var(--bordure); }
.gain {
  display: grid;
  grid-template-columns: minmax(0, 9rem) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--bordure);
}
.gain strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 1.05;
}
.gain p { margin: 0.35rem 0 0; }

/* ---------- Preuve sociale ---------- */

.voix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.voix figure { margin: 0; }
.voix blockquote {
  margin: 0 0 1rem;
  font-family: var(--plume);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.62;
}
.voix blockquote p { margin-bottom: 0.7rem; }
.voix figcaption {
  font-size: 0.875rem;
  color: var(--texte-doux);
  border-top: 1px solid var(--bordure);
  padding-top: 0.65rem;
}
.voix figcaption b { color: var(--texte); font-weight: 600; display: block; }

.bandeau-chiffres {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  background: #FFFFFF;
  overflow: hidden;
}
.bandeau-chiffres div {
  padding: 1.25rem 1.3rem;
  border-right: 1px solid var(--bordure);
}
.bandeau-chiffres div:last-child { border-right: 0; }
.bandeau-chiffres b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.1;
}
.bandeau-chiffres span { font-size: 0.875rem; color: var(--texte-doux); }

/* ---------- Tarifs, hors registre ---------- */

.formules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: start;
}
.formule {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  padding: 1.7rem 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.formule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 33%;
  background: var(--bordure);
}
.formule--avancee { border-color: var(--accent); }
.formule--avancee::before { background: var(--accent); }
.formule__rang {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.formule h3 { margin-top: 0.35rem; }
.formule__prix {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0.6rem 0 0.15rem;
}
.formule__unite {
  font-size: 0.875rem;
  color: var(--texte-doux);
  display: block;
  margin-bottom: 0.9rem;
}
.formule__cible {
  font-size: 0.9375rem;
  color: var(--texte-doux);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  padding: 0.9rem 0;
  margin: 0 0 1.1rem;
}
.formule .bouton-plein, .formule .bouton-creux { margin-top: auto; justify-content: center; }
.marque-avancee {
  position: absolute;
  top: -0.85rem;
  right: 1.2rem;
  background: var(--accent);
  color: var(--accent-texte);
  font-family: var(--plume);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 10px 2px 2px 2px;
}
.note-tarif {
  margin-top: 1.6rem;
  font-size: 0.9375rem;
  color: var(--texte-doux);
  max-width: 70ch;
}

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

.faq-registre { border-top: 1px solid var(--bordure); }
.faq-ligne {
  border-bottom: 1px solid var(--bordure);
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  padding: 0.2rem 0;
}
.faq-ligne__numero {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 1.5rem;
}
.faq-ligne__question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.35rem 2.4rem 1.35rem 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--texte);
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}
.faq-ligne__question::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 1.75rem;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}
.faq-ligne__question[aria-expanded="true"]::after { transform: rotate(-135deg); }
.faq-ligne__reponse { padding: 0 1.5rem 1.4rem 0; }
.faq-ligne__reponse[hidden] { display: none; }
.faq-ligne__reponse p:last-child { margin-bottom: 0; }

/* ---------- Formulaire ---------- */

.consultation {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: var(--gouttiere);
  align-items: start;
}
.feuille-contact {
  background: #FFFFFF;
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  padding: 1.8rem 1.6rem;
}
.champ { margin-bottom: 1.05rem; }
.champ label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.champ input[type="text"],
.champ input[type="email"],
.champ select,
.champ textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--texte);
  background: var(--fond);
  border: 1px solid var(--bordure);
  border-radius: 10px 2px 2px 2px;
  padding: 0.7rem 0.8rem;
  min-height: 46px;
}
.champ textarea { min-height: 130px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--accent); }
.champ--accord {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.3rem;
}
.champ--accord input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--accent); }
.champ--accord label { font-weight: 400; margin: 0; }
.paire { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }
.aide-formulaire {
  font-size: 0.875rem;
  color: var(--texte-doux);
  margin: 1rem 0 0;
}

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

.pied {
  background: var(--fond-alt);
  border-top: 1px solid var(--bordure);
  padding: 3.6rem 0 1.6rem;
}
.pied__colonnes {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 2rem;
}
.pied h2 {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 0.9rem;
}
.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { margin-bottom: 0.45rem; }
.pied a { color: var(--texte); text-decoration: none; font-size: 0.9375rem; }
.pied a:hover { color: var(--accent); text-decoration: underline; }
.pied p { font-size: 0.9375rem; color: var(--texte-doux); }
.pied__reseaux { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 0.8rem; }
.pied__reseaux a { font-size: 0.875rem; }
.pied__voisins {
  margin-top: 2.6rem;
  border-top: 1px solid var(--bordure);
  padding-top: 1.2rem;
}
.pied__voisins ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; }
.pied__voisins a { font-size: 0.875rem; color: var(--texte-doux); }
.pied__barre {
  margin-top: 1.6rem;
  border-top: 1px solid var(--bordure);
  padding-top: 1.1rem;
  font-size: 0.875rem;
  color: var(--texte-doux);
}
.pied__barre a { font-size: 0.875rem; color: var(--accent); text-decoration: underline; }

/* ---------- Pages internes ---------- */

.page-interne { padding: calc(var(--entete) + 3.4rem) 0 1rem; }
.fil {
  font-size: 0.875rem;
  color: var(--texte-doux);
  margin-bottom: 1.2rem;
}
.fil a { color: var(--texte-doux); }
.corps-legal {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  padding-bottom: 4rem;
}
.corps-legal__texte { min-width: 0; }
.corps-legal h2 {
  font-size: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--bordure);
}
.corps-legal h3 { margin-top: 1.6rem; }
.corps-legal ul, .corps-legal ol { padding-left: 1.15rem; }
.corps-legal li { margin-bottom: 0.45rem; }
.repere-legal {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.portrait-auteur {
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  overflow: hidden;
  max-width: 320px;
}
.bloc-auteur {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.6rem;
}
.tableau-plan { border-top: 1px solid var(--bordure); }
.tableau-plan .entree { align-items: baseline; }
.tableau-plan a { font-weight: 600; text-decoration: none; }
.tableau-plan a:hover { text-decoration: underline; }

.message-centre {
  text-align: left;
  max-width: 44rem;
  padding: calc(var(--entete) + 5rem) 0 5rem;
}

/* ---------- Signature d animation ---------- */

.a-paraitre {
  opacity: 0;
  transform: translateY(18px);
}
.est-parue {
  opacity: 1;
  transform: none;
  transition: opacity 480ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.est-parue .entree,
.est-parue .fiche,
.est-parue .formule,
.est-parue .voix figure,
.est-parue .gain {
  animation: monteeLigne 480ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--rang, 0) * 90ms);
}
@keyframes monteeLigne {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.fiche { --filet: 0; }
.est-parue .fiche { --filet: 1; transition-delay: calc(var(--rang, 0) * 90ms); }

/* ---------- Ecrans intermediaires ---------- */

@media (max-width: 1024px) {
  :root { --cote: 3.6rem; --gouttiere: 1.35rem; }
  h1 { font-size: 2.7rem; }
  .ouverture__grille { grid-template-columns: var(--cote) minmax(0, 1fr); }
  .ouverture__photo { grid-column: 2; margin-top: 2.2rem; }
  .consultation { grid-template-columns: var(--cote) minmax(0, 1fr); }
  .consultation__mot { grid-column: 2; }
  .consultation .feuille-contact { grid-column: 2; margin-top: 1.8rem; }
  .formules { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .pied__colonnes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entree--large { grid-template-columns: var(--cote) minmax(0, 1fr); }
  .entree__marge { grid-column: 2; border-left: 0; border-top: 1px solid var(--bordure); padding: 0.8rem 0 0; margin-top: 0.9rem; }
}

@media (max-width: 820px) {
  .navire { display: none; }
  .entete .bouton-plein { display: none; }
  .ouvre-panneau { display: inline-flex; }
}

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
  :root { --cote: 0; --gouttiere: 0; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.7rem; }
  .registre { padding: 3.6rem 0; }
  .registre__tete,
  .entree,
  .faq-ligne,
  .gains,
  .corps-legal,
  .ouverture__grille,
  .consultation {
    grid-template-columns: minmax(0, 1fr);
  }
  .registre__cote, .entree__numero, .faq-ligne__numero { padding-top: 0; margin-bottom: 0.35rem; }
  .gain { grid-template-columns: minmax(0, 1fr); }
  .gain p { margin-top: 0.15rem; }
  .paire { grid-template-columns: minmax(0, 1fr); }
  .bandeau-chiffres div { border-right: 0; border-bottom: 1px solid var(--bordure); }
  .bandeau-chiffres div:last-child { border-bottom: 0; }
  .pied__colonnes { grid-template-columns: minmax(0, 1fr); }
  .bloc-auteur { grid-template-columns: minmax(0, 1fr); }
  .jauge-amplitude { grid-template-columns: minmax(0, 1fr); gap: 0.9rem; }
  .ouverture { padding-top: calc(var(--entete) + 2.4rem); }
}

@media print {
  .entete, .panneau, .pied__voisins { display: none; }
  body { font-size: 11pt; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .a-paraitre { opacity: 1; transform: none; }
  .est-parue .entree,
  .est-parue .fiche,
  .est-parue .formule,
  .est-parue .voix figure,
  .est-parue .gain { animation: none; }
  .fiche { --filet: 1; }
  .fiche::before, .bouton-plein, .bouton-creux, .fleche { transition: none; }
}
/* ================================================================
   Le Registre des paliers, section magazine.
   Ajout en fin de feuille, aucune regle precedente n est modifiee.
   Memes variables, meme forme signature (coin superieur gauche arrondi
   a 18 pixels, filet de marge en rose grenat), meme quadrillage de plan
   technique et meme signature d animation que le reste du site.
   Le corps des articles ne porte aucune classe: les balises nues sont
   mises en forme comme descendantes de .corps-article.
   ================================================================ */

/* ---------- Pied de page des pages du magazine ----------
   Les titres de colonnes y sont des paragraphes, pour que la seule
   balise h1 de la page reste celle de l article. */

.pied .pied__titre {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin: 0 0 0.9rem;
}

/* ---------- Grille de cartes d article ---------- */

.grille-magazine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(298px, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.grille-magazine--large { margin-top: 2.4rem; }

/* ---------- Carte d article ----------
   La carte herite de .fiche: fond de surface, coin superieur gauche
   arrondi, filet de marge qui se dessine du haut vers le bas. */

.carte-magazine {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.4rem 1.4rem 1.6rem;
  transition: border-color 220ms ease;
}
.carte-magazine::before {
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1), height 260ms ease;
}
.carte-magazine:hover { border-color: var(--accent); }
.carte-magazine:hover::before { height: 62%; }
.carte-magazine:focus-within { border-color: var(--accent); }

.carte-magazine__rang {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 0.9rem;
}
.carte-magazine__photo { margin: 0 0 1.1rem; }
.carte-magazine__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.carte-magazine__angle {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin: 0 0 0.5rem;
}
.carte-magazine__titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}
.carte-magazine__titre a {
  color: var(--texte);
  text-decoration: none;
}
.carte-magazine__titre a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.carte-magazine__extrait {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--texte-doux);
  margin: 0 0 1.2rem;
  max-width: none;
}
.carte-magazine__pied {
  margin: auto 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--bordure);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--texte-doux);
  max-width: none;
}

/* ---------- Chapeau de l index du magazine ---------- */

.chapeau-magazine {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--texte-doux);
  max-width: 62ch;
}

/* ---------- Entete d article ---------- */

.entete-article {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  align-items: start;
  padding-bottom: 1.9rem;
  border-bottom: 1px solid var(--bordure);
  margin-bottom: 2.2rem;
}
.entete-article__angle {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.5rem;
  margin: 0;
}
.entete-article__corps { min-width: 0; }
.entete-article h1 { max-width: 20ch; }
.entete-article__meta {
  font-size: 0.875rem;
  color: var(--texte-doux);
  border-top: 1px solid var(--bordure);
  padding-top: 0.8rem;
  margin: 1.3rem 0 0;
  max-width: none;
}
.entete-article__meta a { color: var(--texte-doux); }

/* Exergue du chapeau, en Old Standard TT, adosse au filet d accent. */
.chapo-article {
  font-family: var(--plume);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--texte);
  border-left: 2px solid var(--accent);
  padding-left: 1.15rem;
  margin: 1.5rem 0 0;
  max-width: 58ch;
}

/* ---------- Image a la une ---------- */

.photo-article { margin: 0 0 2.5rem; }
.photo-article img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- Corps d article, grille de registre ---------- */

.article__grille {
  display: grid;
  grid-template-columns: var(--cote) minmax(0, 1fr);
  column-gap: var(--gouttiere);
  align-items: start;
}
.article__jalon {
  position: sticky;
  top: calc(var(--entete) + 1.6rem);
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 0.65rem;
  margin: 0.4rem 0 0;
}

/* ---------- Corps d article: balises nues, sans aucune classe ---------- */

.corps-article {
  min-width: 0;
  counter-reset: partie;
}
.corps-article > :first-child { margin-top: 0; }

.corps-article p {
  margin: 0 0 1.15em;
  max-width: var(--mesure);
}
.corps-article h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.14;
  margin: 2.7rem 0 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--bordure);
  max-width: 40rem;
}
.corps-article h2::before {
  counter-increment: partie;
  content: "R." counter(partie, decimal-leading-zero);
  display: block;
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.corps-article h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 1.9rem 0 0.6rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
  max-width: 32rem;
}

.corps-article ul,
.corps-article ol {
  margin: 0 0 1.4rem;
  padding-left: 0;
  list-style: none;
  max-width: var(--mesure);
}
.corps-article ul li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.55rem;
  line-height: 1.62;
}
.corps-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 2px;
  background: var(--accent);
}
.corps-article ol { counter-reset: pas; }
.corps-article ol li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  column-gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bordure);
  line-height: 1.62;
}
.corps-article ol li::before {
  counter-increment: pas;
  content: counter(pas, decimal-leading-zero);
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 0.3rem;
}
.corps-article ol li:last-child { border-bottom: 0; }
.corps-article li p:last-child { margin-bottom: 0; }

.corps-article a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.corps-article a:hover { color: var(--accent-sombre); }
.corps-article strong { font-weight: 600; color: var(--texte); }
.corps-article em { font-style: italic; }

/* Tableau recapitulatif, cadre a coin superieur gauche arrondi. */
.corps-article table {
  width: 100%;
  max-width: 40rem;
  margin: 1.9rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  overflow: hidden;
  background: #FFFFFF;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.corps-article thead th {
  background: var(--fond-alt);
  font-family: var(--plume);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.corps-article th,
.corps-article td {
  text-align: left;
  vertical-align: top;
  padding: 0.78rem 0.95rem;
  border-bottom: 1px solid var(--bordure);
}
.corps-article tbody th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--texte);
  background: transparent;
}
.corps-article tbody tr:last-child th,
.corps-article tbody tr:last-child td { border-bottom: 0; }

/* Citation de temoignage, en Old Standard TT italique. */
.corps-article blockquote {
  margin: 1.9rem 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 2px solid var(--accent);
  font-family: var(--plume);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--texte);
  max-width: 60ch;
}
.corps-article blockquote p:last-child { margin-bottom: 0; }

/* Encadre de vigilance: quadrillage a pas de 6 pixels, zone a lire lentement. */
.corps-article aside {
  position: relative;
  overflow: hidden;
  margin: 2.1rem 0;
  padding: 1.3rem 1.4rem 1.2rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--accent);
  border-radius: 18px 2px 2px 2px;
  max-width: var(--mesure);
}
.corps-article aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, var(--trait-fin) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(to bottom, var(--trait-fin) 0 1px, transparent 1px 6px);
  -webkit-mask-image: linear-gradient(to right, #000 0 55%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0 55%, transparent 100%);
}
.corps-article aside > * { position: relative; z-index: 1; }
.corps-article aside p:last-child,
.corps-article aside ul:last-child,
.corps-article aside ol:last-child { margin-bottom: 0; }

.corps-article figure {
  margin: 1.9rem 0;
  max-width: var(--mesure);
}
.corps-article figure img {
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
}
.corps-article figcaption {
  font-family: var(--plume);
  font-size: 0.875rem;
  color: var(--texte-doux);
  margin-top: 0.65rem;
}

/* ---------- Appel a l action de fin d article ---------- */

.appel-article {
  position: relative;
  margin: 2.8rem 0 0;
  padding: 1.7rem 1.6rem 1.6rem 1.8rem;
  background: var(--fond-alt);
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  max-width: var(--mesure);
}
.appel-article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 33%;
  background: var(--accent);
}
.appel-article__titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.18;
  margin: 0 0 0.6rem;
}
.appel-article p { max-width: 58ch; }
.appel-article .rang-boutons { margin-top: 1.3rem; }

/* ---------- Encart auteur ---------- */

.encart-auteur {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 1.3rem;
  align-items: start;
  margin: 2.6rem 0 0;
  padding: 1.6rem 1.5rem 1.4rem 1.7rem;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  position: relative;
  max-width: var(--mesure);
}
.encart-auteur::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 33%;
  background: var(--accent);
}
.encart-auteur img {
  border: 1px solid var(--bordure);
  border-radius: 14px 2px 2px 2px;
}
.encart-auteur__role {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.encart-auteur__nom {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}
.encart-auteur p { font-size: 0.9375rem; }
.encart-auteur p:last-child { margin-bottom: 0; }

/* ---------- Bloc A lire aussi ---------- */

.lire-aussi {
  margin: 3rem 0 0;
  max-width: 52rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bordure);
}
.lire-aussi__titre {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin: 0 0 1.3rem;
}
.lire-aussi__grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.carte-lire {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: 18px 2px 2px 2px;
  padding: 1.2rem 1.15rem 1.2rem 1.35rem;
  transition: border-color 220ms ease;
}
.carte-lire::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 33%;
  background: var(--accent);
  transition: height 260ms ease;
}
.carte-lire:hover { border-color: var(--accent); }
.carte-lire:hover::before { height: 62%; }
.carte-lire__photo { margin: 0 0 0.9rem; }
.carte-lire__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.carte-lire__titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.24;
  margin: 0 0 0.5rem;
  max-width: none;
}
.carte-lire__titre a {
  color: var(--texte);
  text-decoration: none;
}
.carte-lire__titre a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.carte-lire__accroche {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--texte-doux);
  margin: 0;
  max-width: none;
}

/* ---------- Section Derniers articles de la page d accueil ---------- */

.magazine-accueil .grille-magazine { margin-top: 0.4rem; }
.magazine-accueil .rang-boutons { margin-top: 2rem; }

/* ---------- Angle editorial dans les listes d articles ---------- */

.entree__angle {
  font-family: var(--plume);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-right: 0.7rem;
}

/* ---------- Fil d Ariane et note de vigilance du magazine ---------- */

.fil-magazine { margin-bottom: 1.4rem; }
.magazine-note { margin-top: 2.6rem; }

/* ---------- Ecrans intermediaires et mobile ---------- */

@media (max-width: 1024px) {
  .entete-article h1 { font-size: 2.7rem; }
  .encart-auteur { max-width: none; }
  .appel-article { max-width: none; }
}

@media (max-width: 640px) {
  .entete-article,
  .article__grille {
    grid-template-columns: minmax(0, 1fr);
  }
  .entete-article__angle { padding-top: 0; margin-bottom: 0.4rem; }
  .article__jalon {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--bordure);
    padding: 0.5rem 0 0;
    margin: 0 0 1.4rem;
  }
  .entete-article h1 { font-size: 2.25rem; }
  .corps-article h2 { font-size: 1.7rem; max-width: none; }
  .corps-article h3 { max-width: none; }
  .corps-article table {
    display: block;
    overflow-x: auto;
    border-radius: 18px 2px 2px 2px;
  }
  .encart-auteur {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1rem;
  }
  .grille-magazine { grid-template-columns: minmax(0, 1fr); }
  .lire-aussi__grille { grid-template-columns: minmax(0, 1fr); }
}

/* La navigation principale accueille desormais l entree du magazine.
   Le panneau numerote prend donc le relais un peu plus tot, pour que
   l en tete reste sur une seule ligne de 68 pixels. */

@media (max-width: 1080px) {
  .navire { display: none; }
  .entete .bouton-plein { display: none; }
  .ouvre-panneau { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .carte-magazine,
  .carte-magazine::before,
  .carte-lire,
  .carte-lire::before { transition: none; }
}

/* Maillage du reseau, bandeau de pied de page. Mise en page seulement:
   les couleurs, la police et le survol restent ceux du site.
   grid-column et flex-basis font tenir le bandeau sur toute la largeur,
   que le pied de page soit une grille ou une boite flexible.
   Les raccourcis margin et padding sont evites: ils ecraseraient le retrait
   interieur d une colonne dont le bandeau herite la classe. */
[data-reseau-bloc]{grid-column:1/-1;flex-basis:100%;width:100%;margin-top:26px;padding-top:18px}
[data-reseau-titre]{font-size:.8rem;line-height:1.3;letter-spacing:.09em;text-transform:uppercase;
  font-weight:600;margin:0 0 12px}
ul[data-reseau]{list-style:none;display:flex;flex-wrap:wrap;gap:10px 26px;margin:0;padding:0}
ul[data-reseau] li{margin:0;padding:0}
