/* =========================================================================
   Demenagia, feuille de style unique
   Vocabulaire des classes: hayon, emballage, rabat, boite, bordereau, liasse,
   ridelle, sangle, etiq, geste, outil, gain, parole, compteur, pochette,
   plancher. Tout est nomme comme sur un quai de depot.
   ========================================================================= */

:root {
  --encre: #EFF4F9;
  --encre-alt: #E2EBF3;
  --surface: #FAFCFE;
  --surface-haute: #EEF4FA;
  --texte: #0E1D2B;
  --texte-doux: #4B6376;
  --gilet: #187429;
  --gilet-carton: #4E9C61;
  --gilet-fonce: #146323;
  --gilet-appui: #10521C;
  --gilet-texte: #F4FBF5;
  --ruban-jaune: #8F5E07;
  --filet: #B3C6D8;

  /* Ombres courtes et tres douces, teintees encre bleutee: sur fond clair,
     une ombre noire dense alourdit la page et sature les bords de carton. */
  --ombre-carte: 0 1px 2px rgba(14, 29, 43, 0.05), 0 2px 8px rgba(14, 29, 43, 0.05);
  --ombre-levee: 0 2px 4px rgba(14, 29, 43, 0.07), 0 8px 18px rgba(14, 29, 43, 0.08);
  --ombre-bouton: 0 1px 2px rgba(14, 29, 43, 0.10);

  --rayure-verte: repeating-linear-gradient(
    45deg,
    rgba(24, 116, 41, 0.08) 0,
    rgba(24, 116, 41, 0.08) 22px,
    transparent 22px,
    transparent 44px
  );
  --rayure-jaune: repeating-linear-gradient(
    45deg,
    rgba(143, 94, 7, 0.13) 0,
    rgba(143, 94, 7, 0.13) 14px,
    transparent 14px,
    transparent 28px
  );

  --titre: "Comfortaa", "Trebuchet MS", sans-serif;
  --lecture: "Crimson Pro", Georgia, "Times New Roman", serif;
  --etiquette: "Yantramanav", "Arial Narrow", Arial, sans-serif;

  --largeur: 1180px;
  --gouttiere: 28px;
  --courbe: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

::selection {
  background: var(--gilet);
  color: var(--gilet-texte);
}

html {
  scrollbar-color: var(--filet) var(--encre-alt);
  scrollbar-width: thin;
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--encre-alt); }
::-webkit-scrollbar-thumb {
  background: var(--filet);
  border: 3px solid var(--encre-alt);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gilet-carton); }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--encre);
  color: var(--texte);
  font-family: var(--lecture);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--titre);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  text-align: left;
}

h1 { font-size: 3.4rem; font-weight: 700; max-width: 16ch; }
h2 { font-size: 2.3rem; font-weight: 700; max-width: 20ch; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; }

p { margin: 0 0 1.1em; max-width: 62ch; }

.chapo {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--texte-doux);
}

strong { font-weight: 600; color: var(--texte); }
em { font-style: italic; }

.euros { white-space: nowrap; }

.surtitre,
.etiq,
.compteur__valeur,
.bordereau__prix,
.geste__numero {
  font-family: var(--etiquette);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.surtitre {
  font-size: 0.8rem;
  color: var(--gilet);
  display: block;
  margin-bottom: 0.9rem;
}

.etiq {
  font-size: 0.72rem;
  color: var(--gilet-texte);
  background: var(--gilet);
  padding: 0.24rem 0.7rem;
  display: inline-block;
}

.etiq--jaune { background: var(--ruban-jaune); }
.etiq--creux {
  background: transparent;
  color: var(--texte-doux);
  border: 1px solid var(--filet);
}

/* ---------- liens et soulignement qui se trace ---------- */

a { color: var(--gilet); text-decoration: none; }

.trace {
  position: relative;
  display: inline-block;
  color: inherit;
}

.trace::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--gilet);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--courbe), height 160ms var(--courbe);
}

.trace:hover::after,
.trace[aria-current="page"]::after,
.trace.est-active::after { transform: scaleX(1); }

.trace:focus-visible::after {
  transform: scaleX(1);
  height: 3px;
  transition: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gilet);
  outline-offset: 2px;
}

.evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gilet);
  color: var(--gilet-texte);
  font-family: var(--etiquette);
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
}
.evitement:focus { left: 0; }

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

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.5rem;
  font-family: var(--etiquette);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 160ms var(--courbe), transform 160ms var(--courbe),
    clip-path 160ms var(--courbe), border-color 160ms var(--courbe);
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}

.bouton--plein {
  background: var(--gilet);
  color: var(--gilet-texte);
  box-shadow: var(--ombre-bouton);
}
.bouton--plein:hover {
  background: var(--gilet-fonce);
  transform: translateY(-1px);
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}
.bouton--plein:active { transform: none; background: var(--gilet-appui); box-shadow: none; }

.bouton--vide {
  background: transparent;
  border-color: var(--filet);
  color: var(--texte);
}
.bouton--vide:hover {
  border-color: var(--gilet);
  background-image: var(--rayure-verte);
  transform: translateY(-1px);
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}
.bouton--large { width: 100%; }

/* ---------- en tete, le hayon ---------- */

.jauge {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: var(--gilet);
  z-index: 120;
}

.hayon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 110;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms var(--courbe), border-color 180ms var(--courbe);
}

.hayon.est-posee {
  background: rgba(239, 244, 249, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--gilet);
}

.hayon__interieur {
  width: min(100% - 2.4rem, var(--largeur));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.marque {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--titre);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--texte);
  letter-spacing: -0.01em;
}
.marque svg { flex: none; }

.hayon__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hayon__lien {
  font-family: var(--etiquette);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte-doux);
}
.hayon__lien:hover { color: var(--texte); }

.hayon__cta { min-height: 44px; font-size: 0.78rem; padding: 0 1.1rem; }

.burger {
  display: none;
  margin-left: auto;
  width: 54px;
  height: 54px;
  background: transparent;
  border: 2px solid var(--filet);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gilet);
}

/* panneau plein ecran */

.panneau {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: var(--encre);
  background-image: var(--rayure-verte);
  display: none;
  flex-direction: column;
  padding: 1.2rem;
}
.panneau[data-ouvert="oui"] { display: flex; }

.panneau__haut { display: flex; justify-content: flex-end; }

.panneau__fermer {
  width: 54px;
  height: 54px;
  background: transparent;
  border: 2px solid var(--filet);
  border-radius: 4px;
  color: var(--texte);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.panneau__liens {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0 0.6rem;
}
.panneau__liens a {
  font-family: var(--titre);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--texte);
}
.panneau .bouton { margin-top: 1rem; }

/* ---------- structure generale ---------- */

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

.zone { padding: 5.5rem 0; position: relative; }
.zone--alt { background: var(--encre-alt); }
.zone--serree { padding: 4rem 0; }

.zone__entete { margin-bottom: 3rem; }
.zone__entete p { color: var(--texte-doux); font-size: 1.22rem; }

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

/* ---------- forme signature: le rabat ---------- */

.rabat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--filet);
  border-radius: 4px;
  box-shadow: var(--ombre-carte);
  padding: 1.7rem 1.5rem 1.5rem;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

.rabat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--gilet-carton);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.rabat--droit {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.rabat--droit::before {
  left: auto;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* ---------- hero en emballage deplie ---------- */

.emballage {
  padding: 118px 0 3.5rem;
  position: relative;
}

.emballage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--filet);
}

.emballage__plan {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 320px;
  grid-template-areas:
    "haut   haut   haut"
    "gauche boite  droite"
    "bas    bas    bas";
  gap: 14px;
}

.deplie {
  border: 1px solid var(--filet);
  border-radius: 4px;
  position: relative;
}

.deplie--haut {
  grid-area: haut;
  background: var(--encre-alt);
  background-image: var(--rayure-verte);
  padding: 0.9rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.6rem;
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
}
.deplie--haut .surtitre { margin: 0; }
.deplie--haut span:not(.surtitre) {
  font-family: var(--etiquette);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
}

.deplie--boite {
  grid-area: boite;
  background: var(--surface);
  border: 2px solid var(--gilet);
  box-shadow: var(--ombre-carte);
  padding: 2.6rem 2.2rem 2.2rem;
}

.deplie--gauche {
  grid-area: gauche;
  background: var(--encre-alt);
  background-image: var(--rayure-verte);
  padding: 1.6rem 1.3rem;
  clip-path: polygon(0 0, 100% 22px, 100% calc(100% - 22px), 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}

.deplie--droite {
  grid-area: droite;
  background: var(--encre-alt);
  padding: 12px;
  clip-path: polygon(0 22px, 100% 0, 100% 100%, 0 calc(100% - 22px));
  display: flex;
  align-items: center;
}

.deplie--bas {
  grid-area: bas;
  background: var(--encre-alt);
  background-image: var(--rayure-verte);
  padding: 1rem 1.4rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 28px 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
}

.metiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  font-family: var(--etiquette);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin: 0;
  padding: 0;
  list-style: none;
}
.metiers li { display: flex; align-items: center; gap: 0.5rem; }
.metiers li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gilet);
  flex: none;
}

.descente {
  font-family: var(--etiquette);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilet);
}

.emballage h1 { margin-bottom: 1rem; }
.emballage__sous {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--texte-doux);
  max-width: 46ch;
}

.emballage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.emballage__note {
  margin: 1.5rem 0 0;
  font-size: 0.98rem;
  color: var(--texte-doux);
  border-left: 3px solid var(--ruban-jaune);
  padding-left: 0.9rem;
  max-width: 52ch;
}

.rassurance__chiffre {
  font-family: var(--etiquette);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gilet);
  font-variant-numeric: tabular-nums;
  display: block;
}
.rassurance__texte {
  font-size: 0.98rem;
  color: var(--texte-doux);
  margin: 0.35rem 0 0;
}

/* ---------- cadre photo ---------- */

.cadre {
  position: relative;
  border: 2px solid var(--gilet);
  border-radius: 4px;
  overflow: hidden;
  background: var(--encre-alt);
  box-shadow: var(--ombre-carte);
}

.cadre img {
  width: 100%;
  filter: saturate(0.9) contrast(1.02);
  border-radius: 2px;
}

.cadre::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 29, 43, 0.05) 0%,
    rgba(14, 29, 43, 0.08) 55%,
    rgba(14, 29, 43, 0.16) 100%
  );
  pointer-events: none;
}

.cadre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--gilet-carton);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.cadre--hero { width: 100%; }
.cadre--hero .cadre__ruban {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -20%;
  width: 90%;
  height: 70%;
  background-image: var(--rayure-jaune);
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 1;
}

.legende {
  font-size: 0.95rem;
  color: var(--texte-doux);
  margin: 0.7rem 0 0;
  max-width: 46ch;
}

/* ---------- probleme, sept plus cinq ---------- */

.constat__large { grid-column: span 7; }
.constat__etroit { grid-column: span 5; }

.ardoise {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.ardoise li {
  position: relative;
  padding-left: 2.2rem;
  color: var(--texte-doux);
}
.ardoise li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 22px;
  height: 3px;
  background: var(--ruban-jaune);
}
.ardoise strong { color: var(--texte); }

.facture {
  background: var(--surface);
  border: 1px solid var(--filet);
  border-radius: 4px;
  box-shadow: var(--ombre-carte);
  padding: 1.6rem 1.5rem;
}
.facture h3 { margin-bottom: 1rem; }
.facture dl { margin: 0; }
.facture div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--filet);
}
.facture div:last-of-type { border-bottom: 0; }
.facture dt { color: var(--texte-doux); font-size: 1.02rem; }
.facture dd {
  margin: 0;
  font-family: var(--etiquette);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ruban-jaune);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.facture__total {
  margin-top: 1rem;
  background-image: var(--rayure-jaune);
  border: 1px solid var(--filet);
  padding: 0.9rem 1rem;
  font-family: var(--etiquette);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.facture__total b { color: var(--ruban-jaune); }

/* ---------- ruban de separation ---------- */

.ruban-separation {
  height: 74px;
  background-image: var(--rayure-verte);
  border-top: 1px solid var(--filet);
  border-bottom: 1px solid var(--filet);
  display: flex;
  align-items: center;
}
.ruban-separation p {
  margin: 0;
  font-family: var(--etiquette);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte);
  max-width: none;
}
.ruban-separation b { color: var(--gilet); }

/* ---------- solution, quatre gestes ---------- */

.gestes { grid-template-columns: repeat(4, 1fr); }
.geste { grid-column: span 1; }
.geste__numero {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gilet);
  display: block;
  margin-bottom: 0.7rem;
}
.geste h3 { margin-bottom: 0.5rem; }
.geste p { font-size: 1.04rem; color: var(--texte-doux); margin-bottom: 0; }
.geste + .geste { position: relative; }

/* ---------- fonctionnalites ---------- */

.outils { grid-template-columns: repeat(3, 1fr); }
.outil { grid-column: span 1; display: flex; flex-direction: column; gap: 0.4rem; }
.outil h3 { margin-bottom: 0.3rem; }
.outil p { font-size: 1.04rem; color: var(--texte-doux); margin: 0; }
.outil__pied {
  margin-top: auto;
  padding-top: 1rem;
}

.bloc-terrain { margin-top: 3.2rem; align-items: center; }
.bloc-terrain__image { grid-column: span 6; }
.bloc-terrain__texte { grid-column: span 6; }

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

.gains { grid-template-columns: repeat(4, 1fr); }
.gain { grid-column: span 1; }
.gain__valeur {
  font-family: var(--etiquette);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gilet);
  display: block;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}
.gain h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.gain p { font-size: 1rem; color: var(--texte-doux); margin: 0; }

.gain--delai .gain__valeur { color: var(--ruban-jaune); }
.gain--delai { background-image: var(--rayure-jaune); }

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

.paroles { grid-template-columns: repeat(3, 1fr); }
.parole { grid-column: span 1; }
.parole blockquote {
  margin: 0 0 1.1rem;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--texte);
}
.parole blockquote p:last-child { margin-bottom: 0; }
.parole figcaption {
  border-top: 1px solid var(--filet);
  padding-top: 0.9rem;
  font-size: 0.96rem;
  color: var(--texte-doux);
}
.parole figcaption b {
  display: block;
  font-family: var(--titre);
  font-weight: 600;
  color: var(--texte);
  font-size: 1.02rem;
}

.compteurs {
  margin-top: 3rem;
  background-image: var(--rayure-verte);
  border-top: 1px solid var(--filet);
  border-bottom: 1px solid var(--filet);
  padding: 2rem 0;
}
.compteurs .douze { grid-template-columns: repeat(4, 1fr); }
.compteur { grid-column: span 1; text-align: left; }
.compteur__valeur {
  display: block;
  font-size: 2.3rem;
  letter-spacing: 0.04em;
  color: var(--gilet);
  line-height: 1;
}
.compteur p {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  color: var(--texte-doux);
}

.bloc-detail { margin-top: 3.2rem; align-items: center; }
.bloc-detail__image { grid-column: 7 / span 6; }
.bloc-detail__texte { grid-column: 1 / span 6; grid-row: 1; }

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

.bordereaux {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  padding-top: 20px;
}
.bordereau {
  grid-column: span 1;
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bordereau--avance {
  margin-top: -20px;
  border: 2px solid var(--gilet);
  background-image: var(--rayure-verte);
}
.bordereau__nom { margin-bottom: 0.4rem; position: relative; display: inline-block; }
.bordereau--avance:hover .bordereau__nom::after { transform: scaleX(1); }
.bordereau__nom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--gilet);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--courbe);
}
.bordereau__cible {
  font-size: 1rem;
  color: var(--texte-doux);
  min-height: 5.4em;
}
.bordereau__prix {
  font-size: 3rem;
  line-height: 1;
  color: var(--texte);
  letter-spacing: 0.02em;
  display: block;
}
.bordereau__unite {
  font-family: var(--etiquette);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-doux);
  display: block;
  margin: 0.4rem 0 1.4rem;
}
.liasse {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 1rem;
}
.liasse li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--texte-doux);
}
.liasse li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 11px;
  height: 11px;
  background: var(--gilet);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.bordereau .bouton { margin-top: auto; }

.note-tarif {
  margin-top: 2rem;
  font-size: 1.02rem;
  color: var(--texte-doux);
  max-width: 74ch;
}

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

.faq { grid-column: 1 / span 8; }
.faq__aside { grid-column: 9 / span 4; }

.question {
  border: 1px solid var(--filet);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--ombre-carte);
  margin-bottom: 0.8rem;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}
.question summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.3rem;
  font-family: var(--titre);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--texte);
  position: relative;
}
.question summary::-webkit-details-marker { display: none; }
.question summary span {
  position: relative;
  display: inline;
}
.question summary span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gilet);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--courbe);
}
.question summary:hover span::after { transform: scaleX(1); }
.question summary::before {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 1.55rem;
  width: 14px;
  height: 3px;
  background: var(--gilet);
}
.question summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 1.55rem;
  width: 14px;
  height: 3px;
  background: var(--gilet);
  transform: rotate(90deg);
  transition: transform 200ms var(--courbe);
}
.question[open] summary::after { transform: rotate(0deg); }
.question__corps { padding: 0 1.3rem 1.3rem; }
.question__corps p { color: var(--texte-doux); font-size: 1.06rem; margin-bottom: 0.8rem; }
.question__corps p:last-child { margin-bottom: 0; }

.alerte-delai {
  background-image: var(--rayure-jaune);
  border: 1px solid var(--filet);
  border-left: 4px solid var(--ruban-jaune);
  padding: 1.4rem 1.3rem;
  border-radius: 4px;
}
.alerte-delai h3 { font-size: 1.15rem; }
.alerte-delai p { font-size: 1rem; color: var(--texte-doux); }
.alerte-delai p:last-child { margin-bottom: 0; }
.alerte-delai .etiq--jaune { margin-bottom: 0.8rem; }

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

.pochette { grid-column: span 7; }
.aparte { grid-column: span 5; }

.formulaire {
  background: var(--surface);
  border: 1px solid var(--filet);
  border-radius: 4px;
  box-shadow: var(--ombre-carte);
  padding: 2rem 1.8rem;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.champ { margin-bottom: 1.2rem; display: grid; gap: 0.4rem; }
.champ label {
  font-family: var(--etiquette);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
}
.champ input,
.champ select,
.champ textarea {
  width: 100%;
  min-height: 52px;
  background: var(--encre);
  border: 2px solid var(--filet);
  border-radius: 4px;
  color: var(--texte);
  box-shadow: inset 0 1px 2px rgba(14, 29, 43, 0.05);
  font-family: var(--lecture);
  font-size: 1.06rem;
  padding: 0.7rem 0.9rem;
}
.champ textarea { min-height: 140px; resize: vertical; }
.champ input:focus,
.champ select:focus,
.champ textarea:focus { border-color: var(--gilet); }
.champ__aide { font-size: 0.94rem; color: var(--texte-doux); font-family: var(--lecture); text-transform: none; letter-spacing: 0; }

.consentement {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--texte-doux);
  margin-bottom: 1.4rem;
}
.consentement input {
  width: 24px;
  height: 24px;
  min-height: 24px;
  margin-top: 0.35rem;
  accent-color: var(--gilet);
  flex: none;
}

.apres-formulaire {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: var(--texte-doux);
}

.aparte__bloc { margin-bottom: 1.4rem; }
.aparte__bloc h3 { font-size: 1.15rem; }
.aparte__bloc p { font-size: 1.02rem; color: var(--texte-doux); margin-bottom: 0; }

/* ---------- pied de page ---------- */

.plancher {
  background: var(--encre-alt);
  border-top: 1px solid var(--filet);
  padding: 3.6rem 0 0;
  margin-top: 0;
}
.plancher .douze { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.plancher__colonne { grid-column: span 1; }
.plancher h2,
.plancher h3 {
  font-size: 0.82rem;
  font-family: var(--etiquette);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilet);
  margin-bottom: 1rem;
}
.plancher ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.plancher a { color: var(--texte-doux); }
.plancher a:hover { color: var(--texte); }
.plancher p { font-size: 1rem; color: var(--texte-doux); }
.plancher__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  font-family: var(--etiquette);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plancher__barre {
  margin-top: 3rem;
  border-top: 1px solid var(--filet);
  background-image: var(--rayure-verte);
  padding: 1.3rem 0;
}
.plancher__barre p {
  margin: 0;
  font-size: 0.94rem;
  max-width: none;
}

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

.entete-interne {
  padding: 128px 0 2.6rem;
  border-bottom: 1px solid var(--filet);
  background-image: var(--rayure-verte);
}
.fil {
  font-family: var(--etiquette);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 1rem;
}
.fil a { color: var(--texte-doux); }

.prose { max-width: 74ch; }
.prose h2 { font-size: 1.8rem; margin-top: 2.6rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--texte-doux); }
.prose li { margin-bottom: 0.5rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: 1rem;
}
.prose th, .prose td {
  border: 1px solid var(--filet);
  padding: 0.7rem 0.8rem;
  text-align: left;
  color: var(--texte-doux);
}
.prose th {
  font-family: var(--etiquette);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte);
  background: var(--surface);
}

.portrait {
  border: 2px solid var(--gilet);
  border-radius: 4px;
  width: 220px;
}

.auteur__haut { align-items: start; }
.auteur__photo { grid-column: span 4; }
.auteur__texte { grid-column: span 8; }

.plan-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.plan-liste li { border-left: 3px solid var(--gilet); padding-left: 1rem; }
.plan-liste a { font-family: var(--titre); font-weight: 600; font-size: 1.12rem; }
.plan-liste p { margin: 0.3rem 0 0; color: var(--texte-doux); font-size: 1.02rem; }

.centre-message {
  padding: 150px 0 5rem;
  text-align: left;
}
.centre-message .rabat { padding: 2.4rem 2rem; }

/* ---------- animation au defilement ---------- */

.monte {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--courbe), transform 520ms var(--courbe);
}
.monte.est-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1040px) {
  .emballage__plan {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "haut   haut"
      "boite  boite"
      "gauche droite"
      "bas    bas";
  }
  .outils { grid-template-columns: repeat(2, 1fr); }
  .gestes { grid-template-columns: repeat(2, 1fr); }
  .gains { grid-template-columns: repeat(2, 1fr); }
  .compteurs .douze { grid-template-columns: repeat(2, 1fr); }
  .paroles { grid-template-columns: 1fr; }
  .bordereaux { grid-template-columns: 1fr; padding-top: 0; }
  .bordereau--avance { margin-top: 0; }
  .constat__large, .constat__etroit { grid-column: 1 / -1; }
  .faq, .faq__aside { grid-column: 1 / -1; }
  .pochette, .aparte { grid-column: 1 / -1; }
  .bloc-terrain__image, .bloc-terrain__texte { grid-column: 1 / -1; }
  .bloc-detail__image, .bloc-detail__texte { grid-column: 1 / -1; grid-row: auto; }
  .auteur__photo, .auteur__texte { grid-column: 1 / -1; }
  .plancher .douze { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }
  body { font-size: 1.1rem; }
  .hayon__nav { display: none; }
  .burger { display: flex; }
  .emballage {
    padding-top: 100px;
  }
  .emballage__plan {
    grid-template-columns: 1fr;
    grid-template-areas: "haut" "boite" "droite" "gauche" "bas";
  }
  .deplie--gauche,
  .deplie--droite,
  .deplie--haut,
  .deplie--bas { clip-path: none; }
  .deplie--boite { padding: 1.8rem 1.3rem; }
  .zone { padding: 3.6rem 0; }
  .outils, .gestes, .gains, .compteurs .douze { grid-template-columns: 1fr; }
  .plancher .douze { grid-template-columns: 1fr; }
  .ruban-separation { height: auto; padding: 1.1rem 0; }
  .emballage__actions .bouton { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .monte { opacity: 1; transform: none; }
}

/* =========================================================================
   Le Carnet de chargement, section magazine
   Ajout en fin de feuille, aucune regle precedente n est modifiee.
   Meme palette, meme forme signature (le rabat, coin coupe a quarante cinq
   degres double d un triangle vert carton), meme motif de rayures diagonales
   et meme soulignement qui se trace que le reste du site.
   Vocabulaire des classes: carnet, fiche, corps-article, souche,
   encart-porteur, ridelle-liens.
   ========================================================================= */

/* ---------- entete de la page d index du magazine ---------- */

.carnet-entete .chapo { max-width: 62ch; }

.carnet-compte {
  font-family: var(--etiquette);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte-doux);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-top: 1.2rem;
}

/* ---------- grille de cartes d article ---------- */

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

/* ---------- carte d article, batie sur le rabat de la marque ---------- */

.fiche {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: border-color 180ms var(--courbe), transform 180ms var(--courbe),
    background-color 180ms var(--courbe), box-shadow 180ms var(--courbe);
}

.fiche:hover {
  border-color: var(--gilet);
  transform: translateY(-2px);
  background: var(--surface-haute);
  box-shadow: var(--ombre-levee);
}

.fiche::before { z-index: 2; }

.fiche__vue {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--filet);
}

.fiche__vue img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92);
}

.fiche__vue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 29, 43, 0.05) 0%,
    rgba(14, 29, 43, 0.08) 60%,
    rgba(14, 29, 43, 0.15) 100%
  );
  pointer-events: none;
}

.fiche__texte {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.fiche__angle {
  font-family: var(--etiquette);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gilet);
}

.fiche__titre {
  font-family: var(--titre);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: none;
}

.fiche__titre a {
  color: var(--texte);
  display: inline;
  background-image: linear-gradient(var(--gilet), var(--gilet));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  padding-bottom: 3px;
  transition: background-size 220ms var(--courbe);
}

.fiche:hover .fiche__titre a,
.fiche__titre a:hover { background-size: 100% 2px; }

.fiche__titre a:focus-visible {
  background-size: 100% 3px;
  transition: none;
}

.fiche__extrait {
  font-size: 1.04rem;
  color: var(--texte-doux);
  margin: 0;
  max-width: none;
}

.fiche__pied {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--filet);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-family: var(--etiquette);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte-doux);
  font-variant-numeric: tabular-nums;
}

/* ---------- entete d un article, fil d Ariane, angle, date, lecture ---------- */

.entete-article {
  padding: 128px 0 3rem;
  border-bottom: 1px solid var(--filet);
  background-image: var(--rayure-verte);
}

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

.article-jauge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  align-items: center;
  margin-bottom: 1.4rem;
  font-family: var(--etiquette);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte-doux);
  font-variant-numeric: tabular-nums;
}

/* ---------- exergue de chapeau ---------- */

.chapo-article {
  position: relative;
  font-family: var(--lecture);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--texte);
  max-width: 62ch;
  margin: 1.6rem 0 0;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--filet);
  border-left: 3px solid var(--gilet);
  border-radius: 4px;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

.chapo-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--gilet-carton);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ---------- image a la une de l article ---------- */

.article-vue { margin: 0 0 2.6rem; }
.article-vue .legende { margin-top: 0.8rem; }

/* ---------- corps de l article, balises nues sans aucune classe ---------- */

.corps-article {
  max-width: 66ch;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.corps-article h2 {
  position: relative;
  font-family: var(--titre);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--texte);
  max-width: 24ch;
  margin: 3rem 0 1rem;
  padding-top: 1.2rem;
}

.corps-article h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--gilet);
}

.corps-article h3 {
  font-family: var(--titre);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--texte);
  max-width: 32ch;
  margin: 2.1rem 0 0.7rem;
}

.corps-article p {
  margin: 0 0 1.15em;
  max-width: none;
  color: var(--texte);
}

.corps-article strong { font-weight: 600; color: var(--texte); }
.corps-article em { font-style: italic; color: var(--texte-doux); }

.corps-article a {
  color: var(--gilet);
  background-image: linear-gradient(var(--gilet), var(--gilet));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  padding-bottom: 3px;
  transition: background-size 220ms var(--courbe);
}

.corps-article a:hover { background-size: 100% 2px; }
.corps-article a:focus-visible {
  background-size: 100% 3px;
  transition: none;
}

/* listes a puces et listes numerotees, au trait de craie sur le carton */

.corps-article ul,
.corps-article ol {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.corps-article ol { counter-reset: souche; }

.corps-article li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--texte-doux);
}

.corps-article li strong { color: var(--texte); }

.corps-article ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 22px;
  height: 3px;
  background: var(--gilet);
}

.corps-article ol > li {
  counter-increment: souche;
  padding-left: 2.6rem;
}

.corps-article ol > li::before {
  content: counter(souche);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--etiquette);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gilet);
  font-variant-numeric: tabular-nums;
}

.corps-article li > ul,
.corps-article li > ol { margin: 0.6rem 0 0; }

/* tableau recapitulatif, filets de carton */

.corps-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0 2rem;
  font-size: 1rem;
  display: block;
  overflow-x: auto;
}

.corps-article thead { background: var(--surface); }

.corps-article th,
.corps-article td {
  border: 1px solid var(--filet);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  color: var(--texte-doux);
}

.corps-article th {
  font-family: var(--etiquette);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte);
}

.corps-article tbody tr:nth-child(even) { background: rgba(14, 29, 43, 0.04); }

/* encadre, la fiche accrochee sur la ridelle */

.corps-article aside {
  position: relative;
  margin: 2rem 0;
  padding: 1.4rem 1.5rem 1.2rem;
  background: var(--surface);
  background-image: var(--rayure-jaune);
  border: 1px solid var(--filet);
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.corps-article aside::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--gilet-carton);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.corps-article aside p { color: var(--texte-doux); }
.corps-article aside p:last-child { margin-bottom: 0; }
.corps-article aside strong { color: var(--ruban-jaune); }

/* citation, la parole rapportee */

.corps-article blockquote {
  margin: 2rem 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 3px solid var(--ruban-jaune);
  font-style: italic;
  color: var(--texte);
}

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

/* figures du corps */

.corps-article figure {
  margin: 2rem 0;
  border: 2px solid var(--gilet);
  border-radius: 4px;
  overflow: hidden;
}

.corps-article figcaption {
  font-size: 0.95rem;
  color: var(--texte-doux);
  padding: 0.7rem 0.9rem;
  background: var(--surface);
}

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

.appel-article {
  position: relative;
  margin: 3rem 0 0;
  max-width: 66ch;
  padding: 1.7rem 1.6rem 1.6rem;
  background: var(--encre-alt);
  background-image: var(--rayure-verte);
  border: 1px solid var(--filet);
  border-radius: 4px;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

.appel-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--gilet-carton);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.appel-article__titre {
  font-family: var(--titre);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--texte);
  margin: 0 0 0.6rem;
  max-width: none;
}

.appel-article p { color: var(--texte-doux); max-width: 56ch; }
.appel-article .bouton { margin-top: 0.4rem; }

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

.encart-porteur {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
  margin: 3rem 0 0;
  max-width: 66ch;
  padding: 1.6rem 1.5rem;
}

.encart-porteur img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 2px solid var(--gilet);
  border-radius: 4px;
}

.encart-porteur__nom {
  font-family: var(--titre);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--texte);
  margin: 0 0 0.5rem;
  max-width: none;
}

.encart-porteur__bio {
  font-size: 1.04rem;
  color: var(--texte-doux);
  margin: 0 0 0.7rem;
  max-width: none;
}

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

.lire-aussi {
  padding: 4rem 0;
  border-top: 1px solid var(--filet);
  background: var(--encre-alt);
}

.lire-aussi__titre {
  font-family: var(--titre);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--texte);
  margin: 0 0 1.8rem;
  max-width: none;
}

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

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

.derniers {
  border-top: 1px solid var(--filet);
  border-bottom: 1px solid var(--filet);
}

.derniers .carnet-grille { margin-bottom: 2.4rem; }
.derniers__suite { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.derniers__suite p { margin: 0; color: var(--texte-doux); max-width: 46ch; }

/* ---------- liste des articles sur les pages internes ---------- */

.souches { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }

.souches li {
  border-left: 3px solid var(--gilet);
  padding-left: 1rem;
}

.souches a {
  font-family: var(--titre);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--texte);
}

.souches p { margin: 0.3rem 0 0; color: var(--texte-doux); font-size: 1.02rem; }

.souches__date {
  font-family: var(--etiquette);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--texte-doux);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-top: 0.3rem;
}

/* ---------- titre de colonne du pied de page dans le magazine ---------- */

.plancher__titre {
  font-family: var(--titre);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--texte);
  margin: 0 0 1rem;
  max-width: none;
}

/* ---------- responsive du magazine ---------- */

@media (max-width: 1040px) {
  .carnet-grille,
  .ridelle-liens { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .carnet-grille,
  .ridelle-liens { grid-template-columns: 1fr; }
  .entete-article { padding: 108px 0 2.2rem; }
  .entete-article h1 { font-size: 2.3rem; }
  .chapo-article { font-size: 1.2rem; padding: 1.1rem; }
  .corps-article h2 { font-size: 1.6rem; margin-top: 2.4rem; }
  .encart-porteur { grid-template-columns: 1fr; }
  .lire-aussi { padding: 3rem 0; }
  .appel-article .bouton { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .fiche,
  .fiche__titre a,
  .corps-article a { transition: none; }
}
