@charset "utf-8";
/* Coussinets - feuille unique. Aucune ressource externe, aucune police distante. */

/* ------------------------------------------------------------------
   1. Jetons
------------------------------------------------------------------ */
:root {
  color-scheme: light;

  /* teintes : robes, coussinets, litière, sauge du jardin */
  --reglisse: #221a15;
  --reglisse-doux: #4b3c33;
  --reglisse-pale: #6f5f54;
  --coton: #fbf7f0;
  --grege: #f2eade;
  --grege-fonce: #e8ddcb;
  --filet: #ddd0bb;
  --ocre: #a05c16;
  --ocre-vif: #d08b33;
  --ocre-voile: #f6e6cf;
  --sauge: #4c6a56;
  --sauge-clair: #cad7c8;
  --museau: #ecc7b8;
  --nuit: #1a1310;

  /* rythme vertical */
  --pas-1: 0.4rem;
  --pas-2: 0.75rem;
  --pas-3: 1.25rem;
  --pas-4: 2rem;
  --pas-5: 3.25rem;
  --pas-6: 5rem;
  --pas-7: 7.5rem;
  --gouttiere: clamp(1.15rem, 5vw, 3rem);

  /* échelle typographique */
  --t-affiche: clamp(2.5rem, 1.45rem + 4.4vw, 4.5rem);
  --t-page: clamp(2.05rem, 1.4rem + 2.9vw, 3.35rem);
  --t-titre: clamp(1.55rem, 1.25rem + 1.5vw, 2.2rem);
  --t-section: clamp(1.2rem, 1.08rem + 0.6vw, 1.45rem);
  --t-chapo: clamp(1.09rem, 1.01rem + 0.45vw, 1.3rem);
  --t-menu: 0.94rem;
  --t-menu-mini: 0.79rem;

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino,
    "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --arrondi: 14px;
  --arrondi-doux: 26px;
  --ombre-posee: 0 1px 2px rgba(34, 26, 21, 0.05),
    0 12px 30px -18px rgba(34, 26, 21, 0.35);

  /* semis de coussinets : le motif maison, réutilisé partout */
  --semis: radial-gradient(circle at 22% 26%, rgba(34, 26, 21, 0.09) 0 2.6px, transparent 2.7px),
    radial-gradient(circle at 40% 18%, rgba(34, 26, 21, 0.09) 0 2.2px, transparent 2.3px),
    radial-gradient(circle at 57% 26%, rgba(34, 26, 21, 0.09) 0 2.6px, transparent 2.7px),
    radial-gradient(circle at 40% 48%, rgba(34, 26, 21, 0.09) 0 5.4px, transparent 5.5px);
}

/* ------------------------------------------------------------------
   2. Remise à plat
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--coton);
  color: var(--reglisse);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; font-size: 0.85rem; color: var(--reglisse-doux); }
a { color: var(--ocre); text-decoration-thickness: 1px; text-underline-offset: 0.19em; }
a:hover { color: var(--reglisse); }
:focus-visible {
  outline: 2.5px solid var(--ocre);
  outline-offset: 3px;
  border-radius: 3px;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.012em; }
strong { font-weight: 650; }
ul, ol { padding-left: 1.15rem; }

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

.saut-contenu {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 60; background: var(--nuit); color: var(--coton);
  padding: 0.7rem 1.3rem; border-radius: 0 0 12px 12px;
  font-size: 0.9rem; text-decoration: none;
}
.saut-contenu:focus { transform: translate(-50%, 0); color: var(--coton); }

/* ------------------------------------------------------------------
   3. Trames de page
------------------------------------------------------------------ */
.cadrage { width: min(100% - (2 * var(--gouttiere)), 1120px); margin-inline: auto; }
.cadrage--fin { width: min(100% - (2 * var(--gouttiere)), 730px); }
.cadrage--moyen { width: min(100% - (2 * var(--gouttiere)), 920px); }

.plage { padding-block: clamp(3rem, 8vw, var(--pas-6)); }
.plage--grege { background: var(--grege); }
.plage--nuit { background: var(--nuit); color: var(--coton); }
.plage--serree { padding-block: clamp(2.2rem, 5vw, 3.4rem); }

.entete-plage { max-width: 44ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.entete-plage--large { max-width: 62ch; }
.entete-plage p { color: var(--reglisse-doux); margin-top: var(--pas-2); }
.plage--nuit .entete-plage p { color: #d6c8bd; }

/* ------------------------------------------------------------------
   4. Marque, en-tête, navigation
------------------------------------------------------------------ */
.enseigne {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 247, 240, 0.93);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--filet);
}
.enseigne__interieur {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--pas-3); flex-wrap: wrap;
  padding-block: 0.85rem;
}
.marque { display: inline-flex; align-items: center; gap: 0.62rem; text-decoration: none; color: inherit; }
.marque__signe { width: 34px; height: 34px; flex: none; }
.marque__mot { display: grid; line-height: 1.05; }
.marque__nom {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.02em;
}
.marque__note {
  font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--reglisse-pale); margin-top: 0.22em;
}

.rubriques { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 0.15rem; }
.rubriques a {
  display: inline-block; padding: 0.42rem 0.72rem; border-radius: 99px;
  font-size: var(--t-menu); color: var(--reglisse-doux); text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.rubriques a:hover { background: var(--grege); color: var(--reglisse); }
.rubriques a[aria-current] {
  background: var(--ocre-voile); color: var(--reglisse); font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--filet);
}
@media (max-width: 620px) {
  .enseigne__interieur { padding-block: 0.7rem; }
  .rubriques { width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .rubriques::-webkit-scrollbar { display: none; }
  .rubriques a { white-space: nowrap; font-size: var(--t-menu-mini); padding: 0.35rem 0.6rem; }
}

/* ------------------------------------------------------------------
   5. Petits signes typographiques
------------------------------------------------------------------ */
.timbre {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--sauge);
}
.timbre::before {
  content: ""; width: 26px; height: 2px; background: var(--ocre-vif); border-radius: 2px;
}
.timbre--ocre { color: var(--ocre); }
.plage--nuit .timbre { color: var(--museau); }

.chapo {
  font-size: var(--t-chapo); line-height: 1.6; color: var(--reglisse-doux);
  max-width: 58ch;
}
.chapo strong { color: var(--reglisse); font-weight: 600; }
.chapo--rubrique { margin-block: 0.8rem 1.4rem; }

.filet-ocre {
  width: 68px; height: 3px; border-radius: 3px; margin-block: var(--pas-3);
  background: linear-gradient(90deg, var(--ocre-vif), var(--museau));
}

.titre-affiche { font-size: var(--t-affiche); }
.titre-page { font-size: var(--t-page); }
.titre-plage { font-size: var(--t-titre); }
.accent-plume { color: var(--ocre); font-style: italic; }

/* ------------------------------------------------------------------
   6. Boutons
------------------------------------------------------------------ */
.duo-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: var(--pas-4); }
.bouton {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.82rem 1.35rem; border-radius: 99px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}
.bouton:active { transform: translateY(1px); }
.bouton--plein { background: var(--reglisse); color: var(--coton); box-shadow: var(--ombre-posee); }
.bouton--plein:hover { background: var(--ocre); color: #fff; }
.bouton--file {
  color: var(--reglisse); box-shadow: inset 0 0 0 1.5px var(--filet); background: transparent;
}
.bouton--file:hover { background: var(--grege); color: var(--reglisse); }
.bouton__fleche { font-size: 1.05em; line-height: 1; }
.plage--nuit .bouton--file {
  box-shadow: inset 0 0 0 1.5px rgba(236, 199, 184, 0.45); color: var(--coton);
}
.plage--nuit .bouton--file:hover { background: rgba(236, 199, 184, 0.14); color: var(--coton); }

/* ------------------------------------------------------------------
   7. Cadres d'image : jamais de carré vide
------------------------------------------------------------------ */
.cadre {
  position: relative; overflow: hidden; border-radius: var(--arrondi-doux);
  background-color: var(--grege-fonce);
  background-image: var(--semis),
    linear-gradient(148deg, var(--museau) 0%, var(--grege) 46%, var(--sauge-clair) 100%);
  background-size: 58px 58px, 58px 58px, 58px 58px, 58px 58px, 100% 100%;
  box-shadow: var(--ombre-posee);
  display: grid;
  place-items: center;
  padding: 0;
}
.cadre img { width: 100%; height: 100%; object-fit: cover; grid-area: 1 / 1; }
.cadre--portrait { aspect-ratio: 4 / 5; }
.cadre--paysage { aspect-ratio: 3 / 2; }
.cadre--bandeau { aspect-ratio: 16 / 7; }
.cadre--galet { border-radius: 170px 22px 170px 22px; }
@media (max-width: 700px) {
  .cadre--galet { border-radius: 110px 18px 110px 18px; }
}
.legende-visuel {
  margin-top: 0.7rem; font-size: 0.83rem; color: var(--reglisse-pale); line-height: 1.5;
}

/* ------------------------------------------------------------------
   8. Ouverture (haut de la page d'accueil)
------------------------------------------------------------------ */
.ouverture { position: relative; padding-block: clamp(2.6rem, 7vw, 5.2rem) clamp(2.6rem, 6vw, 4.6rem); }
.ouverture::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--filet);
}
.ouverture__grille {
  display: grid; gap: clamp(2rem, 5vw, 3.6rem); align-items: center;
}
@media (min-width: 900px) {
  .ouverture__grille { grid-template-columns: 1.04fr 0.96fr; }
}
.ouverture__titre { margin-top: var(--pas-3); max-width: 15ch; }
.ouverture .chapo { margin-top: var(--pas-3); }

.trois-gestes {
  list-style: none; padding: 0; margin-top: var(--pas-4);
  display: grid; gap: 0.55rem;
  border-top: 1px solid var(--filet); padding-top: var(--pas-3);
}
.trois-gestes li {
  display: flex; gap: 0.65rem; align-items: baseline;
  font-size: 0.94rem; color: var(--reglisse-doux);
}
.trois-gestes li::before {
  content: "·"; color: var(--ocre-vif); font-weight: 800; font-size: 1.4rem; line-height: 0.6;
}

.ouverture__visuel { position: relative; z-index: 0; }
.ouverture__visuel::before {
  content: ""; position: absolute; inset: auto -14px -18px auto;
  width: 62%; height: 68%; border-radius: 130px 18px 130px 18px;
  background-color: var(--ocre-voile);
  background-image: var(--semis); background-size: 52px 52px;
  z-index: -1;
}
.ouverture__visuel .cadre { aspect-ratio: 5 / 6; }
@media (max-width: 899px) {
  .ouverture__visuel .cadre { aspect-ratio: 4 / 3; }
}

/* ------------------------------------------------------------------
   9. Tuiles de rubrique
------------------------------------------------------------------ */
.tuiles { display: grid; gap: var(--pas-3); grid-template-columns: 1fr; }
@media (min-width: 560px) { .tuiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tuiles { grid-template-columns: repeat(4, 1fr); } }

.tuile {
  position: relative; display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.4rem 1.3rem 1.5rem; border-radius: var(--arrondi);
  background: var(--coton); box-shadow: inset 0 0 0 1px var(--filet);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.tuile::after {
  content: ""; position: absolute; inset: auto -30px -34px auto; width: 118px; height: 118px;
  border-radius: 50%; background: var(--teinte, var(--ocre-voile)); opacity: 0.5;
  transition: transform 0.25s ease;
}
.tuile:hover { transform: translateY(-3px); box-shadow: var(--ombre-posee), inset 0 0 0 1px var(--filet); }
.tuile:hover::after { transform: scale(1.14); }
.tuile__picto { position: relative; width: 30px; height: 30px; color: var(--ocre); }
.tuile__nom { position: relative; font-family: var(--serif); font-size: 1.16rem; }
.tuile__texte { position: relative; font-size: 0.9rem; color: var(--reglisse-doux); line-height: 1.6; }
.tuile__appel {
  position: relative; margin-top: auto; padding-top: 0.6rem;
  font-size: 0.83rem; font-weight: 650; color: var(--ocre); letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------
   10. Fiches (cartes d'article)
------------------------------------------------------------------ */
.rayon { display: grid; gap: clamp(1.3rem, 3vw, 2rem); }
@media (min-width: 780px) { .rayon--duo { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 780px) { .rayon--trio { grid-template-columns: repeat(3, 1fr); } }

.fiche {
  display: flex; flex-direction: column; gap: 0.75rem;
  text-decoration: none; color: inherit;
}
.fiche .cadre { transition: transform 0.25s ease; }
.fiche:hover .cadre { transform: translateY(-4px); }
.fiche__titre { font-size: 1.42rem; line-height: 1.2; }
.fiche:hover .fiche__titre { color: var(--ocre); }
.fiche__resume { font-size: 0.96rem; color: var(--reglisse-doux); }
.fiche__pied {
  margin-top: 0.2rem; font-size: 0.79rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--reglisse-pale);
}

/* liste sobre, sans image */
.liste-guides { list-style: none; padding: 0; display: grid; gap: 0.15rem; }
.liste-guides li { border-bottom: 1px solid var(--filet); }
.liste-guides li:first-child { border-top: 1px solid var(--filet); }
.liste-guides a {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0.9rem;
  padding: 0.95rem 0.4rem; text-decoration: none; color: var(--reglisse);
  transition: background-color 0.16s ease, padding-left 0.16s ease;
}
.liste-guides a:hover { background: var(--grege); padding-left: 0.85rem; color: var(--ocre); }
.liste-guides__titre { font-family: var(--serif); font-size: 1.08rem; }
.liste-guides__etat {
  margin-left: auto; font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--reglisse-pale); white-space: nowrap;
}
.liste-guides .attente {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0.9rem;
  padding: 0.95rem 0.4rem; color: var(--reglisse-pale);
}
.liste-guides .attente .liste-guides__titre { color: var(--reglisse-pale); }
.liste-guides .attente .liste-guides__etat { color: var(--sauge); }

/* ancrage des rubriques du sommaire général */
.section-rubrique { scroll-margin-top: 5.5rem; }
.section-rubrique + .section-rubrique { margin-top: clamp(2.6rem, 6vw, 4rem); }

/* ------------------------------------------------------------------
   11. Corps d'article
------------------------------------------------------------------ */
.fil-ariane {
  font-size: 0.82rem; color: var(--reglisse-pale);
  padding-block: var(--pas-3) 0;
}
.fil-ariane ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fil-ariane li:not(:last-child)::after { content: "›"; margin-left: 0.4rem; color: var(--filet); }
.fil-ariane a { color: var(--reglisse-doux); text-decoration: none; }
.fil-ariane a:hover { color: var(--ocre); text-decoration: underline; }

.tete-article { padding-block: var(--pas-3) var(--pas-4); }
.tete-article .titre-page { margin-top: var(--pas-2); max-width: 20ch; }
.tete-article .chapo { margin-top: var(--pas-3); }

.paraphe {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.1rem;
  margin-top: var(--pas-4); padding-top: var(--pas-3); border-top: 1px solid var(--filet);
  font-size: 0.85rem; color: var(--reglisse-pale);
}
.paraphe__qui { color: var(--reglisse-doux); font-weight: 600; }
.paraphe span + span::before { content: ""; }

.prose { font-size: 1.075rem; }
.prose > * + * { margin-top: var(--pas-3); }
.prose h2 {
  font-size: var(--t-titre); margin-top: clamp(2.4rem, 5vw, 3.4rem); scroll-margin-top: 5.5rem;
}
.prose h2::before {
  content: ""; display: block; width: 40px; height: 3px; border-radius: 3px;
  background: var(--ocre-vif); margin-bottom: 0.85rem;
}
.prose h3 { font-size: var(--t-section); margin-top: var(--pas-4); scroll-margin-top: 5.5rem; }
.prose p { max-width: 68ch; }
.prose ul, .prose ol { max-width: 66ch; display: grid; gap: 0.45rem; }
.prose li::marker { color: var(--ocre); }
.prose a { font-weight: 550; }

/* sommaire */
.sommaire {
  margin-top: var(--pas-4); padding: 1.3rem 1.4rem; border-radius: var(--arrondi);
  background: var(--grege); border-left: 4px solid var(--ocre-vif);
}
.sommaire__nom {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--reglisse-pale); margin-bottom: 0.7rem;
}
.sommaire ol { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.4rem; font-size: 0.97rem; }
.sommaire a { color: var(--reglisse); text-decoration: none; }
.sommaire a:hover { color: var(--ocre); text-decoration: underline; }

/* l'essentiel : le passage qu'on peut citer tel quel */
.essentiel {
  margin-top: var(--pas-4); padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--arrondi); background: var(--ocre-voile);
  box-shadow: inset 0 0 0 1px var(--filet);
}
.essentiel__nom { font-family: var(--serif); font-size: 1.22rem; margin-bottom: 0.7rem; }
.essentiel ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: 1rem; }
.essentiel li { position: relative; padding-left: 1.15rem; }
.essentiel li::before {
  content: ""; position: absolute; left: 0; top: 0.65em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--ocre); transform: translateY(-50%);
}

/* la suite des gestes, numérotée */
.gestes { list-style: none; padding: 0; margin-top: var(--pas-4); display: grid; gap: 1.5rem; counter-reset: geste; }
.geste { position: relative; padding-left: 3.55rem; counter-increment: geste; }
.geste::before {
  content: counter(geste); position: absolute; left: 0; top: -0.42rem;
  font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--ocre);
  opacity: 0.85;
}
.geste::after {
  content: ""; position: absolute; left: 1.1rem; top: 2.4rem; bottom: -1.5rem; width: 1px;
  background: var(--filet);
}
.geste:last-child::after { display: none; }
.geste__nom { font-family: var(--serif); font-size: 1.16rem; margin-bottom: 0.3rem; }
.geste p { max-width: 62ch; }

/* encarts */
.encart {
  margin-top: var(--pas-4); padding: 1.25rem 1.35rem; border-radius: var(--arrondi);
  background: var(--coton); box-shadow: inset 0 0 0 1px var(--filet);
  font-size: 0.99rem;
}
.encart__nom {
  display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.encart p + p { margin-top: 0.7rem; }
.encart--vigilance { background: #fdf1ec; box-shadow: inset 0 0 0 1px #f0cdbe; }
.encart--vigilance .encart__nom { color: #a3441f; }
.encart--astuce { background: #f0f4ee; box-shadow: inset 0 0 0 1px var(--sauge-clair); }
.encart--astuce .encart__nom { color: var(--sauge); }
.encart--materiel { background: var(--grege); box-shadow: inset 0 0 0 1px var(--filet); }
.encart--materiel .encart__nom { color: var(--reglisse-pale); }
.encart--materiel ul { list-style: none; padding: 0; display: grid; gap: 0.35rem; }
.encart--materiel li::before { content: "▪"; color: var(--ocre-vif); margin-right: 0.55rem; }

/* tableaux */
.tableau-defile { margin-top: var(--pas-4); overflow-x: auto; border-radius: var(--arrondi); box-shadow: inset 0 0 0 1px var(--filet); }
.tableau { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 0.95rem; background: var(--coton); }
.tableau th, .tableau td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--filet); }
.tableau thead th {
  background: var(--grege); font-size: 0.74rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--reglisse-doux); font-weight: 700;
}
.tableau tbody tr:last-child td { border-bottom: 0; }
.tableau td:first-child { font-weight: 600; }

/* questions ouvertes */
.questions { margin-top: var(--pas-4); display: grid; gap: 0; }
.question { border-top: 1px solid var(--filet); padding-block: 1.15rem; }
.question:last-child { border-bottom: 1px solid var(--filet); }
.question h3 { margin-top: 0; font-size: 1.1rem; }
.question p { margin-top: 0.5rem; max-width: 66ch; color: var(--reglisse-doux); }

/* le rappel qui compte */
.rappel {
  margin-top: var(--pas-5); padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: var(--arrondi-doux); background: var(--nuit); color: var(--coton);
  position: relative; overflow: hidden;
}
.rappel::after {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 240px; height: 240px;
  background-image: var(--semis); background-size: 60px 60px; opacity: 0.35;
  filter: invert(1);
}
.rappel__nom { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.55rem; }
.rappel p { color: #ddd0c6; max-width: 64ch; font-size: 1rem; }
.rappel p + p { margin-top: 0.7rem; }

/* maillage de fin d'article */
.suite-lecture { margin-top: var(--pas-5); padding-top: var(--pas-4); border-top: 1px solid var(--filet); }
.suite-lecture__nom {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--reglisse-pale); margin-bottom: var(--pas-3);
}
.suite-lecture ul { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
@media (min-width: 700px) { .suite-lecture ul { grid-template-columns: repeat(2, 1fr); } }
.suite-lecture a {
  display: block; padding: 1rem 1.15rem; border-radius: var(--arrondi);
  background: var(--grege); text-decoration: none; color: var(--reglisse);
  font-family: var(--serif); font-size: 1.04rem; line-height: 1.3;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.suite-lecture a:hover { background: var(--ocre-voile); transform: translateX(3px); color: var(--reglisse); }
.suite-lecture a small {
  display: block; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--reglisse-pale); margin-bottom: 0.28rem;
}

/* ------------------------------------------------------------------
   12. Colonnes de charte (page d'accueil, à propos)
------------------------------------------------------------------ */
.colonnade { display: grid; gap: clamp(1.5rem, 3vw, 2.4rem); }
@media (min-width: 760px) { .colonnade { grid-template-columns: repeat(3, 1fr); } }
.colonnade > div { display: grid; gap: 0.5rem; align-content: start; }
.colonnade h3 { font-size: 1.14rem; }
.colonnade p { font-size: 0.96rem; color: var(--reglisse-doux); }
.colonnade__chiffre {
  font-family: var(--serif); font-size: 2.1rem; color: var(--ocre); line-height: 1;
}
.plage--nuit .colonnade p { color: #d6c8bd; }
.plage--nuit .colonnade__chiffre { color: var(--museau); }

/* ------------------------------------------------------------------
   13. Pied de page
------------------------------------------------------------------ */
.pied { background: var(--nuit); color: #d6c8bd; padding-block: clamp(2.8rem, 6vw, 4.4rem) 2rem; margin-top: var(--pas-6); }
.pied a { color: var(--coton); text-decoration: none; }
.pied a:hover { color: var(--museau); text-decoration: underline; }
.pied__grille { display: grid; gap: var(--pas-4); }
@media (min-width: 800px) { .pied__grille { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--pas-5); } }
.pied .marque__nom { color: var(--coton); }
.pied .marque__note { color: var(--museau); }
.pied__mot { margin-top: var(--pas-3); font-size: 0.93rem; max-width: 46ch; line-height: 1.65; }
.pied__colonne h2 {
  font-family: var(--sans); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--museau); margin-bottom: 0.9rem;
}
.pied__colonne ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.94rem; }
.pied__bas {
  margin-top: var(--pas-5); padding-top: var(--pas-3); border-top: 1px solid rgba(214, 200, 189, 0.22);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between;
  font-size: 0.8rem; color: #a99589;
}

/* ------------------------------------------------------------------
   14. Impression
------------------------------------------------------------------ */
@media print {
  .enseigne, .pied, .suite-lecture, .duo-actions, .saut-contenu { display: none; }
  body { background: #fff; font-size: 11pt; }
  .cadre { box-shadow: none; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}
