/* ==========================================================================
   Coutelia, feuille de style unique.
   Univers: panneau d atelier, feuilles blanches, filets ardoise, trombones filaires.
   Nomenclature de classes propre au projet: enseigne, panneau, fiche, pince,
   passe-partout, rayonnage, etiquette, jauge, etape, temoin, formule, bordereau, pied.
   ========================================================================== */

:root {
  --feuille: #FFFFFF;
  --calque: #F9FBFC;
  --ardoise-pale: #EFF3F7;
  --encre: #1B2430;
  --encre-douce: #4A5A6B;
  --olive: #3C6018;
  --olive-profond: #2E4A11;
  --ardoise: #4E6A87;
  --filet: #D6DEE6;

  --colonne: 12;
  --gouttiere: 28px;
  --laize: 1180px;
  --panneau-laize: 960px;
  --pli: 4px;
  --hauteur-enseigne: 72px;
  --motif-trombone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%234E6A87' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' opacity='0.35'%3E%3Cg transform='translate(24,18) rotate(18)'%3E%3Cpath d='M4 33 L4 9 a5.5 5.5 0 0 1 11 0 L15 39 a4 4 0 0 1 -8 0 L7 14'/%3E%3C/g%3E%3Cg transform='translate(112,96) rotate(18)'%3E%3Cpath d='M4 33 L4 9 a5.5 5.5 0 0 1 11 0 L15 39 a4 4 0 0 1 -8 0 L7 14'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  --titre: "Teko", "Oswald", "Arial Narrow", sans-serif;
  --courant: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --panonceau: "Josefin Slab", "Rockwell", Georgia, serif;
}

/* --------------------------------------------------------------- socle --- */

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

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

body {
  margin: 0;
  background: var(--feuille);
  color: var(--encre);
  font-family: var(--courant);
  font-size: 1.125rem;
  line-height: 1.7;
  font-variant-ligatures: common-ligatures;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--titre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin: 0 0 0.5em;
  color: var(--encre);
}

h1 { font-size: 3.6rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.55rem; font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; letter-spacing: 0.05em; }

p { margin: 0 0 1.1em; max-width: 66ch; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 600; }

::selection { background: var(--olive); color: #FFFFFF; }

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

.evitement {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 90;
  background: var(--feuille);
  color: var(--encre);
  border: 1px solid var(--encre);
  padding: 10px 18px;
  font-family: var(--panonceau);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 160ms linear;
}
.evitement:focus { top: 10px; }

.hors-vue {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ------------------------------------------------- trombone, le motif --- */

.tiroir-motif { position: absolute; width: 0; height: 0; overflow: hidden; }

.pince {
  position: absolute;
  top: -8px;
  left: 18px;
  width: 22px;
  height: 48px;
  color: var(--ardoise);
  pointer-events: none;
}

.pince--olive { color: var(--olive); }

.trame {
  background-image: var(--motif-trombone);
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ------------------------------------------------------------- laize --- */

.laize {
  width: min(100% - 40px, var(--laize));
  margin-inline: auto;
}

.grille {
  display: grid;
  grid-template-columns: repeat(var(--colonne), 1fr);
  gap: var(--gouttiere);
}

/* ---------------------------------------------------------- enseigne --- */

.enseigne {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--hauteur-enseigne);
  background: var(--feuille);
  border-bottom: 1px solid var(--filet);
  transition: height 160ms linear;
}

.enseigne::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--filet);
  opacity: 0;
  transition: opacity 160ms linear;
}

.enseigne.est-glissee { height: 60px; }
.enseigne.est-glissee::after { opacity: 1; }

.enseigne__rang {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.plaque {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--encre);
}

.plaque__carre { width: 38px; height: 38px; flex: 0 0 38px; }

.plaque__mot {
  font-family: var(--titre);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  padding-bottom: 4px;
}

.plaque__mot::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  height: 1px;
  background: var(--ardoise);
}

.cap {
  font-family: var(--panonceau);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.82rem;
}

.enseigne__ancres { display: flex; align-items: center; gap: 26px; }

.enseigne__ancres a {
  color: var(--encre-douce);
  text-decoration: none;
  transition: color 160ms linear;
}
.enseigne__ancres a:hover { color: var(--olive); }

.enseigne__bouton-menu {
  display: none;
  width: 44px; height: 44px;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.enseigne__bouton-menu span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1px;
  background: var(--encre);
}
.enseigne__bouton-menu span:nth-child(1) { top: 15px; }
.enseigne__bouton-menu span:nth-child(2) { top: 21px; }
.enseigne__bouton-menu span:nth-child(3) { top: 27px; }

.tiroir {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--feuille);
  padding: 26px 0 40px;
  overflow-y: auto;
  display: none;
}
.tiroir.est-ouvert { display: block; }

.tiroir__rang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.tiroir__fermer {
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  width: 44px; height: 44px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--encre);
  cursor: pointer;
}

.tiroir__liste { list-style: none; margin: 0; padding: 0; }
.tiroir__liste li { border-top: 1px solid var(--filet); margin: 0; }
.tiroir__liste li:last-child { border-bottom: 1px solid var(--filet); }

.tiroir__liste a {
  display: block;
  padding: 16px 4px;
  font-family: var(--titre);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--encre);
  text-decoration: none;
}
.tiroir__liste a:hover { color: var(--olive); }

.tiroir__action { margin-top: 28px; }

/* ----------------------------------------------------------- boutons --- */

.action {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 30px;
  border-radius: var(--pli);
  font-family: var(--panonceau);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background-color 160ms linear, color 160ms linear, border-color 160ms linear;
}

.action--plein {
  background: var(--olive);
  color: #FFFFFF;
}
.action--plein:hover { background: var(--olive-profond); color: #FFFFFF; }

.action--filet {
  background: var(--feuille);
  color: var(--encre);
  border: 1px solid var(--filet);
  box-shadow: inset 0 0 0 1px var(--feuille), inset 0 0 0 2px transparent;
}
.action--filet::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  transition: border-color 160ms linear;
  pointer-events: none;
}
.action--filet:hover { color: var(--olive); border-color: var(--ardoise); }
.action--filet:hover::before { border-color: var(--olive); }

.action--compacte { min-height: 44px; padding: 11px 20px; font-size: 0.8rem; }
.action--large { width: 100%; }

.onde {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.45);
  opacity: 0.45;
  pointer-events: none;
  animation: onde-ouvre 520ms cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.action--filet .onde,
.question .onde { background: rgba(60, 96, 24, 0.22); }

@keyframes onde-ouvre {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* -------------------------------------------------------- rayonnages --- */

.rayonnage { padding: 96px 0; position: relative; }
.rayonnage--pale { background: var(--ardoise-pale); }

.rayonnage--pale.trame {
  background-color: var(--ardoise-pale);
  background-image: none;
}

.rayonnage--pale.trame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--motif-trombone);
  background-repeat: repeat;
  background-size: 180px 180px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0) 46%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0) 46%);
  pointer-events: none;
}

.rayonnage > .laize { position: relative; z-index: 1; }

.etiquette {
  font-family: var(--panonceau);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ardoise);
  display: block;
  margin-bottom: 12px;
}

.entete-rayon {
  border-top: 1px solid var(--filet);
  padding-top: 22px;
  margin-bottom: 46px;
}
.entete-rayon h2 { max-width: 20ch; }
.entete-rayon p { color: var(--encre-douce); max-width: 62ch; margin-bottom: 0; }

.entete-rayon--large h2 { max-width: 26ch; }

/* ------------------------------------------------------- hero panneau --- */

.affiche {
  background: var(--ardoise-pale);
  padding: calc(var(--hauteur-enseigne) + 56px) 0 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.affiche::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--motif-trombone);
  background-size: 180px 180px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 78%);
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 78%);
  pointer-events: none;
}

.panneau {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--panneau-laize));
  margin-inline: auto;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 54px clamp(24px, 5vw, 64px) 0;
  text-align: center;
}

.panneau::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.panneau__picto { width: 96px; height: 96px; margin: 0 auto 22px; color: var(--olive); }

.panneau h1 { margin-bottom: 18px; }
.panneau h1 .ligne { display: block; }
.panneau h1 .ligne--olive { color: var(--olive); }

.panneau__chapo {
  font-size: 1.22rem;
  color: var(--encre-douce);
  max-width: 58ch;
  margin: 0 auto 30px;
}

.panneau__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.jauge {
  border-top: 1px solid var(--filet);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 calc(clamp(24px, 5vw, 64px) * -1);
}

.jauge__poste {
  padding: 24px 12px 30px;
  border-left: 1px solid var(--filet);
}
.jauge__poste:first-child { border-left: 0; }

.jauge__nombre {
  display: block;
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--olive);
  font-variant-numeric: tabular-nums;
}

.jauge__quoi {
  display: block;
  font-family: var(--panonceau);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--encre-douce);
  margin-top: 8px;
  line-height: 1.4;
}

.affiche__note {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--panonceau);
  font-size: 0.9rem;
  color: var(--encre-douce);
  margin: 26px auto 0;
  max-width: 62ch;
}

/* ------------------------------------------------- planche photo ------- */

.planche {
  position: relative;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 10px;
}

.planche img {
  border-radius: 2px;
  filter: saturate(0.88) contrast(1.02);
}

.planche__voile {
  position: absolute;
  inset: 10px;
  border-radius: 2px;
  background: rgba(60, 96, 24, 0.06);
  pointer-events: none;
}

.planche__legende {
  font-family: var(--panonceau);
  font-size: 0.86rem;
  color: var(--encre-douce);
  padding: 12px 4px 2px;
  text-align: left;
}

.bande-planche { padding: 0 0 20px; background: var(--ardoise-pale); }
.bande-planche .planche { transform: translateY(-58px); margin-bottom: -34px; }

/* -------------------------------------------------------- problème ----- */

.trois-colonnes { align-items: start; }
.trois-colonnes > * { grid-column: span 4; }

.fiche {
  position: relative;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 30px 26px 26px;
}

.fiche::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.fiche > *:not(.pince):not(.formule__marque) { position: relative; }
.fiche h3 { margin-bottom: 10px; }
.fiche p { color: var(--encre-douce); margin-bottom: 0; }
.fiche p + p { margin-top: 0.8em; }

.fiche--blanche { background: var(--feuille); }

.chiffre-perdu {
  display: block;
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--olive);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}

.ardoise-note {
  grid-column: 1 / -1;
  margin-top: 34px;
  border-top: 1px solid var(--filet);
  padding-top: 22px;
  font-family: var(--panonceau);
  color: var(--encre-douce);
  font-size: 0.98rem;
}
.ardoise-note p { max-width: 90ch; margin-bottom: 0; }

/* ---------------------------------------------------------- méthode ---- */

.suite-etapes > * { grid-column: span 3; }

.etape { position: relative; padding-top: 26px; border-top: 1px solid var(--filet); }

.etape__rang {
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--ardoise);
  display: block;
  margin-bottom: 10px;
}

.etape h3 { margin-bottom: 10px; }
.etape p { color: var(--encre-douce); margin-bottom: 0; }

.paire-methode { margin-top: 60px; align-items: center; }
.paire-methode .planche { grid-column: span 6; }
.paire-methode .paire-methode__texte { grid-column: span 6; }

.releve {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--filet);
}
.releve li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--filet);
  padding: 11px 0;
  margin: 0;
}
.releve__poste { font-family: var(--panonceau); font-size: 0.94rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--encre-douce); }
.releve__valeur { font-family: var(--panonceau); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--encre); white-space: nowrap; }
.releve li.est-decisive .releve__valeur { color: var(--olive); }

/* --------------------------------------------------- fonctionnalités --- */

.calques > * { grid-column: span 4; }

.calque-outil {
  position: relative;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 30px 26px 26px;
}
.calque-outil::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}
.calque-outil > *:not(.pince):not(.formule__marque) { position: relative; }
.calque-outil h3 { margin-bottom: 8px; }
.calque-outil p { color: var(--encre-douce); margin-bottom: 0; font-size: 1.05rem; }

.canal-liste { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.canal {
  font-family: var(--panonceau);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--ardoise);
  border: 1px solid var(--filet);
  border-radius: 2px;
  padding: 4px 9px;
}

/* --------------------------------------------------------- avantages --- */

.bande-avantage { align-items: center; row-gap: 48px; }
.bande-avantage__dire { grid-column: span 6; }
.bande-avantage__compte { grid-column: span 6; }

.tableau-marge {
  width: 100%;
  border-collapse: collapse;
  background: var(--feuille);
  border: 1px solid var(--filet);
  font-family: var(--panonceau);
  font-size: 0.95rem;
}
.tableau-marge caption {
  caption-side: top;
  text-align: left;
  font-family: var(--panonceau);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--ardoise);
  padding-bottom: 10px;
}
.tableau-marge th,
.tableau-marge td {
  border-bottom: 1px solid var(--filet);
  padding: 11px 14px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tableau-marge thead th {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: var(--ardoise);
  font-weight: 600;
}
.tableau-marge th[scope="row"],
.tableau-marge thead th:first-child { text-align: left; color: var(--encre); }
.tableau-marge tbody th[scope="row"] { font-weight: 600; }
.tableau-marge tr.est-basse td:last-child { color: var(--olive); font-weight: 700; }
.tableau-marge tfoot td, .tableau-marge tfoot th { border-bottom: 0; color: var(--encre-douce); font-size: 0.85rem; text-align: left; }

.cadre-tableau { overflow-x: auto; }

.gains { margin-top: 56px; }
.gains > * { grid-column: span 3; }

.gain { border-top: 1px solid var(--filet); padding-top: 20px; }
.gain__nombre {
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--olive);
  display: block;
  font-variant-numeric: tabular-nums;
}
.gain h3 { font-size: 1.25rem; margin: 12px 0 8px; }
.gain p { color: var(--encre-douce); font-size: 1.02rem; margin-bottom: 0; }

/* ------------------------------------------------------ preuve -------- */

.bandeau-chiffres {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--filet);
  background: var(--feuille);
  border-radius: var(--pli);
  margin-bottom: 48px;
}
.bandeau-chiffres div { padding: 26px 20px; border-left: 1px solid var(--filet); }
.bandeau-chiffres div:first-child { border-left: 0; }
.bandeau-chiffres b {
  display: block;
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--olive);
  font-variant-numeric: tabular-nums;
}
.bandeau-chiffres span {
  display: block;
  font-family: var(--panonceau);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--encre-douce);
  margin-top: 8px;
}

.temoins > * { grid-column: span 4; }

.temoin {
  position: relative;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 30px 26px 24px;
  margin: 0;
}
.temoin::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}
.temoin > *:not(.pince):not(.formule__marque) { position: relative; }
.temoin blockquote { margin: 0 0 18px; }
.temoin blockquote p { margin-bottom: 0.8em; }
.temoin blockquote p:last-child { margin-bottom: 0; }

.temoin__avant-apres {
  display: flex;
  gap: 10px;
  align-items: baseline;
  border-top: 1px solid var(--filet);
  border-bottom: 1px solid var(--filet);
  padding: 10px 0;
  margin-bottom: 16px;
  font-family: var(--panonceau);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--encre-douce);
  font-variant-numeric: tabular-nums;
}
.temoin__avant-apres b { color: var(--olive); font-weight: 700; letter-spacing: 0.04em; }

.temoin figcaption {
  font-family: var(--panonceau);
  font-size: 0.9rem;
  color: var(--encre-douce);
  line-height: 1.5;
}
.temoin figcaption strong { display: block; color: var(--encre); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.84rem; }

.paire-terrain { margin-top: 60px; align-items: center; }
.paire-terrain .planche { grid-column: span 7; }
.paire-terrain__mot { grid-column: span 5; }

/* ----------------------------------------------------------- tarifs --- */

.formules { align-items: start; }
.formules > * { grid-column: span 4; }

.formule {
  position: relative;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.formule::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}
.formule > *:not(.pince):not(.formule__marque) { position: relative; }

.formule--retenue {
  margin-top: -16px;
  border-color: var(--olive);
  background: var(--calque);
}
.formule--retenue::before { border-color: rgba(60, 96, 24, 0.35); }

.formule__marque {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--olive);
  color: #FFFFFF;
  font-family: var(--panonceau);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 2px;
}

.formule h3 { margin-bottom: 6px; }
.formule__cible { color: var(--encre-douce); font-size: 1.02rem; min-height: 5.4em; }

.formule__prix {
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--encre);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--filet);
  padding-top: 20px;
}
.formule__prix small {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--encre-douce);
}

.formule__inclus { list-style: none; padding: 0; margin: 22px 0 26px; }
.formule__inclus li {
  position: relative;
  padding-left: 26px;
  font-size: 1.02rem;
  color: var(--encre-douce);
  margin-bottom: 10px;
}
.formule__inclus svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 11px;
  height: 24px;
  color: var(--olive);
}

.formule .action { margin-top: auto; }

.note-tarifs {
  grid-column: 1 / -1;
  margin-top: 40px;
  border-top: 1px solid var(--filet);
  padding-top: 20px;
  font-family: var(--panonceau);
  font-size: 0.92rem;
  color: var(--encre-douce);
}
.note-tarifs p { max-width: 88ch; margin-bottom: 0; }

/* -------------------------------------------------------------- faq --- */

.pile-faq { grid-column: 3 / span 8; }

.question {
  position: relative;
  border-top: 1px solid var(--filet);
  background: transparent;
}
.question:last-of-type { border-bottom: 1px solid var(--filet); }

.question > summary {
  position: relative;
  overflow: hidden;
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 34px;
  font-family: var(--titre);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--encre);
  transition: color 160ms linear;
}
.question > summary::-webkit-details-marker { display: none; }
.question > summary:hover { color: var(--olive); }

.question__pince {
  position: absolute;
  left: 2px;
  top: 12px;
  width: 16px;
  height: 35px;
  color: var(--ardoise);
  pointer-events: none;
}
.question[open] .question__pince { color: var(--olive); }

.question > summary::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 30px;
  width: 13px;
  height: 13px;
  border-right: 1px solid var(--encre-douce);
  border-bottom: 1px solid var(--encre-douce);
  transform: rotate(45deg);
}
.question[open] > summary::after { transform: rotate(225deg); top: 34px; }

.question__reponse { padding: 0 34px 24px; }
.question__reponse p { color: var(--encre-douce); margin-bottom: 0.8em; }
.question__reponse p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- contact --- */

.bureau { align-items: start; }
.bordereau { grid-column: span 7; }
.pratique { grid-column: span 5; }

.bordereau__cadre {
  position: relative;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 34px 30px 30px;
}
.bordereau__cadre::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}
.bordereau__cadre > *:not(.pince):not(.formule__marque) { position: relative; }

.champ { margin-bottom: 18px; }
.champ label {
  display: block;
  font-family: var(--panonceau);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--encre-douce);
  margin-bottom: 6px;
}

.champ input[type="text"],
.champ input[type="email"],
.champ select,
.champ textarea {
  width: 100%;
  font-family: var(--courant);
  font-size: 1.05rem;
  color: var(--encre);
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: 2px;
  padding: 11px 13px;
  transition: border-color 160ms linear;
}
.champ textarea { resize: vertical; line-height: 1.6; }
.champ input:hover, .champ select:hover, .champ textarea:hover { border-color: var(--ardoise); }
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--olive); outline: none; }
.champ input:focus-visible, .champ select:focus-visible, .champ textarea:focus-visible { outline: 2px solid var(--ardoise); outline-offset: 2px; }

.champ--accord { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0 24px; }
.champ--accord input { margin-top: 6px; width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--olive); }
.champ--accord label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--courant);
  font-size: 1rem;
  color: var(--encre-douce);
  margin: 0;
}

.duo-champs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.suite-bordereau {
  font-family: var(--panonceau);
  font-size: 0.92rem;
  color: var(--encre-douce);
  margin-top: 18px;
}

.pratique .fiche + .fiche { margin-top: 24px; }
.pratique ul { list-style: none; padding: 0; margin: 0; }
.pratique ul li {
  border-top: 1px solid var(--filet);
  padding: 10px 0;
  font-family: var(--panonceau);
  font-size: 0.95rem;
  color: var(--encre-douce);
}

/* -------------------------------------------------------------- pied --- */

.pied {
  background: var(--ardoise-pale);
  border-top: 1px solid var(--filet);
  padding: 68px 0 26px;
}

.pied__grille { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: var(--gouttiere); }

.pied h2, .pied h3 {
  font-family: var(--panonceau);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ardoise);
  margin-bottom: 16px;
}

.pied ul { list-style: none; padding: 0; margin: 0; }
.pied li { margin-bottom: 9px; }
.pied a { color: var(--encre); text-decoration: none; }
.pied a:hover { color: var(--olive); text-decoration: underline; }
.pied p { color: var(--encre-douce); font-size: 1rem; }

.pied__position { max-width: 34ch; }
.pied__profils { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 14px; }
.pied__profils a { font-family: var(--panonceau); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.09em; }

.pied__editeur { font-family: var(--panonceau); font-size: 0.9rem; color: var(--encre-douce); line-height: 1.6; }

.pied__barre {
  margin-top: 52px;
  border-top: 1px solid var(--filet);
  padding-top: 20px;
  font-family: var(--panonceau);
  font-size: 0.86rem;
  color: var(--encre-douce);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
}
.pied__barre p { margin: 0; font-size: inherit; }

/* ------------------------------------------------------ pages internes --- */

.feuillet { padding: calc(var(--hauteur-enseigne) + 64px) 0 90px; }
.feuillet .laize { width: min(100% - 40px, 860px); }
.feuillet h1 { font-size: 3rem; margin-bottom: 18px; }
.feuillet h2 { font-size: 1.9rem; margin-top: 46px; border-top: 1px solid var(--filet); padding-top: 22px; }
.feuillet h3 { font-size: 1.3rem; margin-top: 30px; }
.feuillet p, .feuillet li { color: var(--encre-douce); }
.feuillet p strong, .feuillet li strong { color: var(--encre); }
.feuillet__chapo { font-size: 1.2rem; color: var(--encre); max-width: 62ch; }

.fil {
  font-family: var(--panonceau);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--encre-douce);
  margin-bottom: 20px;
}
.fil a { color: var(--encre-douce); }

.portrait-auteur {
  position: relative;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 10px;
  width: 240px;
  float: right;
  margin: 0 0 24px 30px;
}
.portrait-auteur img { border-radius: 2px; filter: saturate(0.88); }
.portrait-auteur figcaption {
  font-family: var(--panonceau);
  font-size: 0.82rem;
  color: var(--encre-douce);
  padding: 10px 4px 2px;
}

.encart {
  position: relative;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 26px 24px;
  margin: 34px 0;
}
.encart::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}
.encart > *:not(.pince):not(.formule__marque) { position: relative; }
.encart h3 { margin-top: 0; }
.encart p:last-child, .encart ul:last-child { margin-bottom: 0; }

.liens-profils { list-style: none; padding: 0; }
.liens-profils li { border-top: 1px solid var(--filet); padding: 10px 0; margin: 0; }

.plan-liste { list-style: none; padding: 0; }
.plan-liste > li { border-top: 1px solid var(--filet); padding: 18px 0; margin: 0; }
.plan-liste h3 { margin: 0 0 6px; }
.plan-liste p { margin: 0; }

.centre-page { text-align: center; }
.centre-page p { margin-inline: auto; }
.centre-page .panneau__actions { margin-bottom: 0; }

/* ------------------------------------------------------- apparitions --- */

.apparait { opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease; }
.apparait.est-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ media --- */

@media (max-width: 1060px) {
  .pied__grille { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 900px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.1rem; }
  .enseigne__ancres { display: none; }
  .enseigne .action--compacte { display: none; }
  .enseigne__bouton-menu { display: block; }
  .trois-colonnes > *, .suite-etapes > *, .calques > *, .temoins > *, .formules > * { grid-column: span 6; }
  .bande-avantage__dire, .bande-avantage__compte { grid-column: 1 / -1; }
  .paire-methode .planche, .paire-methode .paire-methode__texte,
  .paire-terrain .planche, .paire-terrain__mot { grid-column: 1 / -1; }
  .gains > * { grid-column: span 6; }
  .pile-faq { grid-column: 1 / -1; }
  .bordereau, .pratique { grid-column: 1 / -1; }
  .formule--retenue { margin-top: 0; }
  .jauge { grid-template-columns: 1fr 1fr; }
  .jauge__poste:nth-child(3) { border-left: 0; }
  .jauge__poste:nth-child(3), .jauge__poste:nth-child(4) { border-top: 1px solid var(--filet); }
  .bandeau-chiffres { grid-template-columns: 1fr 1fr; }
  .bandeau-chiffres div:nth-child(3) { border-left: 0; }
  .bandeau-chiffres div:nth-child(3), .bandeau-chiffres div:nth-child(4) { border-top: 1px solid var(--filet); }
}

@media (max-width: 640px) {
  body { font-size: 1.06rem; }
  .rayonnage { padding: 66px 0; }
  .affiche { padding-top: calc(var(--hauteur-enseigne) + 34px); }
  .panneau { padding-top: 40px; }
  .trois-colonnes > *, .suite-etapes > *, .calques > *, .temoins > *, .formules > *, .gains > * { grid-column: 1 / -1; }
  .duo-champs { grid-template-columns: 1fr; }
  .jauge { grid-template-columns: 1fr; }
  .jauge__poste { border-left: 0; border-top: 1px solid var(--filet); }
  .jauge__poste:first-child { border-top: 0; }
  .bandeau-chiffres { grid-template-columns: 1fr; }
  .bandeau-chiffres div { border-left: 0; border-top: 1px solid var(--filet); }
  .bandeau-chiffres div:first-child { border-top: 0; }
  .pied__grille { grid-template-columns: 1fr; }
  .portrait-auteur { float: none; width: 100%; max-width: 280px; margin: 0 0 28px; }
  .bande-planche .planche { transform: none; margin: 0 0 12px; }
  .bande-planche { padding: 34px 0 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .apparait { opacity: 1; transform: none; transition: none; }
  .onde { display: none; }
  .enseigne, .action, .question > summary { transition: none; }
  .action--plein:active { background: var(--olive-profond); }
  .action--filet:active { background: var(--ardoise-pale); }
}

@media print {
  .enseigne, .tiroir, .evitement, .panneau__actions { display: none; }
  body { font-size: 11pt; }
}
/* ==========================================================================
   LA FEUILLE DE GAMME, section magazine.
   Ajoutee en fin de feuille: aucune regle precedente n est touchee.
   Meme palette, meme forme signature (le panneau pince, double filet et
   trombone en coin), meme motif (le trombone filaire) et meme signature
   d animation (l onde au clic, transitions de couleur de 160 ms) que le site.
   Nomenclature: sommaire, feuille, entete-article, corps-article,
   encart-auteur, lire-aussi, rayon-gamme.
   Le corps redactionnel n a aucune classe: toutes les balises nues sont
   mises en forme comme descendantes de .corps-article.
   ========================================================================== */

:root {
  --mesure-lecture: 68ch;
  --puce-trombone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='24' viewBox='0 0 22 48'%3E%3Cpath d='M4 33 L4 9 a5.5 5.5 0 0 1 11 0 L15 39 a4 4 0 0 1 -8 0 L7 14' fill='none' stroke='%234E6A87' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --puce-trombone-olive: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='24' viewBox='0 0 22 48'%3E%3Cpath d='M4 33 L4 9 a5.5 5.5 0 0 1 11 0 L15 39 a4 4 0 0 1 -8 0 L7 14' fill='none' stroke='%233C6018' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Le pied de page du magazine reprend le pied du site, mais ses intitules de
   colonne sont des paragraphes: dans une page d article, les balises h2 et h3
   sont reservees au corps redactionnel. Le rendu reste identique. */
.pied .pied__rubrique {
  font-family: var(--panonceau);
  font-size: 0.82rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ardoise);
  margin: 0 0 16px;
}

/* ------------------------------------------- sommaire, grille de cartes --- */

.sommaire {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px var(--gouttiere);
  margin: 0;
  padding: 0;
  list-style: none;
}

.sommaire > li { margin: 0; }

.feuille {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 26px 24px 24px;
  transition: border-color 160ms linear;
}

.feuille::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
  transition: border-color 160ms linear;
}

.feuille > *:not(.pince) { position: relative; }

.feuille:hover { border-color: var(--ardoise); }
.feuille:hover::before { border-color: var(--olive); }
.feuille:focus-within::before { border-color: var(--olive); }

/* La photographie est montee comme une feuille sous passe partout:
   marge blanche interieure, filet ardoise, voile olive de raccord. */
.feuille__planche {
  position: relative;
  display: block;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 8px;
  margin-bottom: 20px;
}

.feuille__planche img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.88) contrast(1.02);
}

.feuille__planche::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 2px;
  background: rgba(60, 96, 24, 0.06);
  pointer-events: none;
}

.feuille__angle {
  font-family: var(--panonceau);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ardoise);
  display: block;
  margin-bottom: 10px;
}

.feuille__titre {
  font-family: var(--titre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: var(--encre);
}

.feuillet .feuille__titre,
.feuillet .carte-lien__titre {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.feuille__titre a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms linear;
}
.feuille__titre a:hover { color: var(--olive); }

.feuille__extrait {
  color: var(--encre-douce);
  font-size: 1.03rem;
  margin: 0 0 18px;
  max-width: none;
}

.feuille__reperes {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--filet);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--panonceau);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--encre-douce);
  max-width: none;
}

.feuille__reperes time { font-variant-numeric: tabular-nums; }
.feuille__reperes b { font-weight: 600; color: var(--olive); }

/* ------------------------------------ mise en avant sur la page d accueil --- */

.rayon-gamme .sommaire { margin-top: 6px; }

.rayon-gamme__suite {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--filet);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.rayon-gamme__suite p {
  margin: 0;
  color: var(--encre-douce);
  max-width: 52ch;
}

/* ---------------------------------------- entete d article et fil d Ariane --- */

.feuillet--article .laize { width: min(100% - 40px, 880px); }

.entete-article {
  border-top: 1px solid var(--filet);
  padding-top: 24px;
  margin-bottom: 30px;
}

.entete-article h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  max-width: 22ch;
}

.entete-article__reperes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--filet);
  font-family: var(--panonceau);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--encre-douce);
  max-width: none;
}

.entete-article__reperes time { font-variant-numeric: tabular-nums; }
.entete-article__reperes b { font-weight: 600; color: var(--encre); }

/* Le chapeau est un panneau pince, comme les cartes et les encadres du site. */
.chapo-panneau {
  position: relative;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 26px 26px 24px;
  margin: 0 0 34px;
}

.chapo-panneau::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.feuillet .chapo-panneau p {
  position: relative;
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.6;
  color: var(--encre);
  max-width: 68ch;
}

.planche--une { margin: 0 0 38px; }
.planche--une img { width: 100%; }

/* ------------------------------------------------------- corps d article --- */

/* Le corps redactionnel arrive en HTML nu, sans aucune classe: tout ce qui
   suit met en forme les balises seules, avec la forme signature du projet. */
.corps-article {
  max-width: var(--mesure-lecture);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--encre-douce);
}

.corps-article > *:first-child { margin-top: 0; }

.corps-article p { margin: 0 0 1.15em; max-width: none; }
.corps-article p strong { color: var(--encre); font-weight: 600; }
.corps-article em { font-style: italic; }

.corps-article h2 {
  font-family: var(--titre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
  font-size: 2rem;
  color: var(--encre);
  margin: 54px 0 18px;
  border-top: 1px solid var(--filet);
  padding-top: 24px;
}

.corps-article h3 {
  position: relative;
  font-family: var(--titre);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: 1.4rem;
  color: var(--encre);
  margin: 34px 0 12px;
  padding-left: 20px;
}

.corps-article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 3px;
  height: 0.9em;
  background: var(--olive);
  border-radius: 1px;
}

/* Les puces sont des trombones filaires, motif signature du projet. */
.corps-article ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.3em;
}

.corps-article ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.6em;
}

.corps-article ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.28em;
  width: 11px;
  height: 24px;
  background-image: var(--puce-trombone);
  background-repeat: no-repeat;
  background-size: 11px 24px;
}

.corps-article ol {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.3em;
  counter-reset: rang-corps;
}

.corps-article ol li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 0.6em;
  counter-increment: rang-corps;
}

.corps-article ol li::before {
  content: counter(rang-corps);
  position: absolute;
  left: 0;
  top: 0.06em;
  width: 26px;
  text-align: center;
  font-family: var(--panonceau);
  font-weight: 700;
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
  color: var(--olive);
  border-bottom: 1px solid var(--filet);
}

.corps-article li ul,
.corps-article li ol { margin: 0.5em 0 0; }

/* Tableau recapitulatif, meme facture que les tableaux de marge du site. */
.corps-article table {
  width: 100%;
  border-collapse: collapse;
  background: var(--feuille);
  border: 1px solid var(--filet);
  font-family: var(--panonceau);
  font-size: 0.95rem;
  margin: 0 0 1.6em;
}

.corps-article th,
.corps-article td {
  border-bottom: 1px solid var(--filet);
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
  font-variant-numeric: tabular-nums;
}

.corps-article thead th {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: var(--ardoise);
  font-weight: 600;
  border-bottom: 1px solid var(--ardoise);
}

.corps-article tbody th { color: var(--encre); font-weight: 600; }
.corps-article tbody tr:last-child th,
.corps-article tbody tr:last-child td { border-bottom: 0; }

/* Encadre: le panneau pince, trombone compris, sans aucune classe a poser. */
.corps-article aside {
  position: relative;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 26px 26px 22px;
  margin: 38px 0;
}

.corps-article aside::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.corps-article aside::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 11px;
  height: 24px;
  background-image: var(--puce-trombone);
  background-repeat: no-repeat;
  background-size: 11px 24px;
  pointer-events: none;
}

.corps-article aside > *:first-child { margin-top: 0; }
.corps-article aside > *:last-child { margin-bottom: 0; }
.corps-article aside p { color: var(--encre); }

/* Citation: filet olive a gauche, texte en EB Garamond, attribution en
   Josefin Slab si le redacteur en ajoute une. */
.corps-article blockquote {
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--olive);
}

.corps-article blockquote p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--encre);
}

.corps-article blockquote p:last-child { margin-bottom: 0; }

.corps-article figure {
  margin: 34px 0;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 10px;
}

.corps-article figure img { border-radius: 2px; filter: saturate(0.88) contrast(1.02); }

.corps-article figcaption {
  font-family: var(--panonceau);
  font-size: 0.86rem;
  color: var(--encre-douce);
  padding: 12px 4px 2px;
}

.corps-article a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.corps-article a:hover { color: var(--olive-profond); }

/* --------------------------------------------- appel a l action de fin --- */

.appel-lecture {
  position: relative;
  margin: 46px 0 0;
  padding: 30px 28px 28px;
  background: var(--ardoise-pale);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
}

.appel-lecture::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.appel-lecture > *:not(.pince) { position: relative; }

.feuillet .appel-lecture__mot {
  font-family: var(--titre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: 1.65rem;
  color: var(--encre);
  margin: 0 0 12px;
}

.appel-lecture p { color: var(--encre-douce); margin-bottom: 20px; }

/* ------------------------------------------------------- encart auteur --- */

.encart-auteur {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 46px 0 0;
  padding: 26px 26px 24px;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
}

.encart-auteur::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
}

.encart-auteur > *:not(.pince) { position: relative; }

.encart-auteur__portrait {
  flex: 0 0 auto;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 6px;
}

.encart-auteur__portrait img { border-radius: 2px; filter: saturate(0.88); }

.feuillet .encart-auteur__nom {
  font-family: var(--panonceau);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ardoise);
  margin: 0 0 10px;
}

.encart-auteur__bio { color: var(--encre-douce); margin: 0 0 10px; }
.encart-auteur__bio:last-child { margin-bottom: 0; }

/* --------------------------------------------------- bloc A lire aussi --- */

.lire-aussi {
  margin: 54px 0 0;
  border-top: 1px solid var(--filet);
  padding-top: 26px;
}

.feuillet .lire-aussi__intitule {
  font-family: var(--panonceau);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ardoise);
  margin: 0 0 22px;
}

.lire-aussi__grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.carte-lien {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--calque);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 20px 18px 18px;
  text-decoration: none;
  color: var(--encre);
  transition: border-color 160ms linear;
}

.carte-lien::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--filet);
  border-radius: 2px;
  pointer-events: none;
  transition: border-color 160ms linear;
}

.carte-lien > *:not(.pince) { position: relative; }

.carte-lien:hover { border-color: var(--ardoise); }
.carte-lien:hover::before { border-color: var(--olive); }
.carte-lien:hover .carte-lien__titre { color: var(--olive); }

.carte-lien__planche {
  position: relative;
  display: block;
  background: var(--feuille);
  border: 1px solid var(--filet);
  border-radius: var(--pli);
  padding: 6px;
  margin-bottom: 16px;
}

.carte-lien__planche img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.88) contrast(1.02);
}

.carte-lien__planche::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: rgba(60, 96, 24, 0.06);
  pointer-events: none;
}

.carte-lien__titre {
  display: block;
  font-family: var(--titre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 1.16rem;
  margin-bottom: 10px;
  transition: color 160ms linear;
}

.carte-lien__accroche {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--encre-douce);
}

/* ------------------------------------------------ index du magazine ----- */

.entete-magazine { margin-bottom: 52px; }
.entete-magazine h1 { max-width: 16ch; }

.feuillet .entete-magazine__chapo {
  font-size: 1.2rem;
  color: var(--encre);
  max-width: 68ch;
  margin-bottom: 0;
}

.laize--magazine { width: min(100% - 40px, var(--laize)); margin-inline: auto; }

.feuillet--magazine { padding-bottom: 96px; }
.feuillet--magazine .laize { width: min(100% - 40px, var(--laize)); }

/* ------------------------------------------------------------- media --- */

/* La navigation principale porte un lien de plus depuis l ouverture du
   magazine. Au dessus de 900 pixels, l ecart et le corps des ancres se
   resserrent et chaque libelle reste insecable, pour que les sept liens
   tiennent sur une seule ligne dans la laize du site. */
@media (min-width: 901px) {
  .enseigne__ancres { gap: 17px; }
  .enseigne__ancres a { font-size: 0.76rem; letter-spacing: 0.08em; white-space: nowrap; }
}

@media (max-width: 980px) {
  .sommaire { grid-template-columns: repeat(2, 1fr); }
  .lire-aussi__grille { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .entete-article h1 { font-size: 2.4rem; }
  .corps-article h2 { font-size: 1.8rem; }
}

@media (max-width: 640px) {
  .sommaire { grid-template-columns: 1fr; gap: 30px; }
  .lire-aussi__grille { grid-template-columns: 1fr; }
  .corps-article { max-width: none; }
  .corps-article table { font-size: 0.88rem; }
  .corps-article th, .corps-article td { padding: 9px 10px; }
  .encart-auteur { flex-direction: column; gap: 16px; }
  .rayon-gamme__suite { flex-direction: column; align-items: flex-start; }
}

@media print {
  .lire-aussi, .appel-lecture { display: none; }
  .corps-article { max-width: none; color: #000000; }
}

/* 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}
