/* ==========================================================================
   Soinmava, feuille de style unique.
   Systeme de nommage: chaque bloc porte un mot du carnet de protocole d une
   cabine de soin visage (carnet, fiche, planche, bandeau, releve, cure,
   seance, formule, rinceau). Les elements sont suffixes par un trait d union,
   les etats sont prefixes par "est-".
   Mode clair integral, aucune variante sombre.
   ========================================================================== */

:root {
  --fond: #FBF3F1;
  --fond-creme: #FCF4EC;
  --surface: #FFFFFF;
  --encre: #2A2730;
  --encre-douce: #6A6069;
  --bronze: #7E671A;
  --bronze-clair: #94791F;
  --peche: #C08472;
  --bordure: #E8D9D2;
  --sur-bronze: #FFFFFF;
  --hote: #FBF3F1;

  --colonne: 1200px;
  --colonne-lecture: 68ch;
  --rythme: clamp(4.5rem, 9vw, 8.5rem);
  --arrondi-fiche: 22px;
  --encoche: 18px;

  --titre: "Abril Fatface", Georgia, "Times New Roman", serif;
  --courant: "Nunito", "Segoe UI", Helvetica, Arial, sans-serif;
  --carnet: "Radley", Georgia, "Times New Roman", serif;

  --ombre-douce: 0 18px 46px rgba(126, 103, 26, .10), 0 3px 10px rgba(42, 39, 48, .05);
  --ombre-planche: 0 34px 70px rgba(42, 39, 48, .12), 0 8px 18px rgba(192, 132, 114, .12);
}

/* --------------------------------------------------------------------------
   Bases
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: var(--courant);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0 0 .6em; }

h1, h2 {
  font-family: var(--titre);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.08;
}

h1 { font-size: 3.4rem; }
h2 { font-size: 2.3rem; }

h3 {
  font-family: var(--courant);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

p { margin: 0 0 1.1em; max-width: var(--colonne-lecture); }

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

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

ul { padding-left: 1.1rem; }

strong { font-weight: 700; }

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

.lien-evitement {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bronze);
  color: var(--sur-bronze);
  padding: .8rem 1.4rem;
  border-radius: 0 0 14px 0;
  font-weight: 700;
}
.lien-evitement:focus { left: 0; color: var(--sur-bronze); }

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

/* --------------------------------------------------------------------------
   Trames et rinceaux vegetaux graves
   -------------------------------------------------------------------------- */

.filigrane {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%237E671A' stroke-width='1' stroke-linecap='round' opacity='0.22'%3E%3Cpath d='M0 132 C 30 132 44 108 62 104 C 82 100 96 118 92 132'/%3E%3Cpath d='M62 104 C 58 84 40 78 32 90 C 26 99 36 111 46 104'/%3E%3Cpath d='M62 104 C 74 88 96 84 108 92 C 96 106 78 110 62 104'/%3E%3Cpath d='M108 92 C 120 76 142 80 148 94'/%3E%3Cpath d='M92 132 C 112 132 128 122 138 112'/%3E%3Cpath d='M20 60 C 34 46 52 48 58 60 C 46 68 30 68 20 60'/%3E%3Cpath d='M118 46 C 132 32 150 34 156 46'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 160px 160px;
}

.rinceau-bande {
  display: block;
  width: 100%;
  height: 90px;
  color: var(--bronze);
  opacity: .5;
}
.rinceau-bande svg { display: block; width: 100%; height: 90px; }

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

.carnet-entete {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 90;
  background: rgba(251, 243, 241, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.carnet-entete.est-defile { border-bottom-color: var(--bordure); }

.carnet-rail {
  max-width: var(--colonne);
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carnet-marque {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--titre);
  font-size: 1.45rem;
  color: var(--encre);
  text-decoration: none;
  letter-spacing: -.015em;
}
.carnet-marque:hover { color: var(--encre); }
.carnet-sceau { width: 38px; height: 38px; flex: none; }

.carnet-nav { margin-left: auto; }

.carnet-liens {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.carnet-liens a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--encre);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.carnet-liens a:hover { border-bottom-color: var(--peche); color: var(--encre); }

.carnet-appel { margin-left: 6px; }

.carnet-bouton-menu {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
}
.carnet-bouton-menu span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 4px auto;
  background: var(--encre);
}

.carnet-panneau {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--fond-creme);
  padding: 96px 28px 40px;
  overflow-y: auto;
}
.carnet-panneau[hidden] { display: none; }
.carnet-panneau ul { list-style: none; margin: 0 0 28px; padding: 0; }
.carnet-panneau li { border-bottom: 1px solid var(--bordure); }
.carnet-panneau a {
  display: block;
  padding: 16px 4px;
  font-family: var(--titre);
  font-size: 1.5rem;
  color: var(--encre);
  text-decoration: none;
}
.carnet-fermer {
  position: absolute;
  top: 16px; right: 20px;
  width: 48px; height: 48px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
  font-size: 1.2rem;
  color: var(--encre);
  cursor: pointer;
}

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

.bouton-or, .bouton-contour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--courant);
  font-size: .98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-width .22s ease;
}

.bouton-or {
  background: var(--bronze);
  color: var(--sur-bronze);
  border: none;
  box-shadow: 0 14px 30px rgba(126, 103, 26, .24);
}
.bouton-or:hover { background: var(--bronze-clair); color: var(--sur-bronze); transform: translateY(-2px); }

.bouton-contour {
  background: transparent;
  color: var(--encre);
  border: 1.5px solid var(--bronze);
}
.bouton-contour:hover { background: var(--fond-creme); border-width: 2px; color: var(--encre); padding: 0 29.5px; }

.bouton-menu-large { width: 100%; }

/* --------------------------------------------------------------------------
   Sections et surtitres
   -------------------------------------------------------------------------- */

.rail {
  max-width: var(--colonne);
  margin: 0 auto;
  padding: 0 24px;
}

.section-cabine {
  padding-top: var(--rythme);
  padding-bottom: 0;
  position: relative;
}

.section-creme { background: var(--fond-creme); --hote: var(--fond-creme); }

.surtitre {
  font-family: var(--carnet);
  font-size: .82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--peche);
  margin: 0 0 14px;
  text-align: center;
}

.titre-section { max-width: 20ch; }
.titre-centre { text-align: center; margin-left: auto; margin-right: auto; }
.chapo {
  font-size: 1.15rem;
  color: var(--encre-douce);
}
.chapo-centre { margin-left: auto; margin-right: auto; text-align: center; max-width: 62ch; }

/* --------------------------------------------------------------------------
   Hero centre plein ecran
   -------------------------------------------------------------------------- */

.cure-hero {
  min-height: 100vh;
  padding: 128px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% 26%, #FDF7EF 0%, #FCF2EE 46%, var(--fond) 100%);
  position: relative;
  overflow: hidden;
}

.cure-hero::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  width: 760px; height: 760px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(192, 132, 114, .16) 0%, rgba(192, 132, 114, 0) 68%);
  pointer-events: none;
}

.hero-centre {
  position: relative;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 48px;
}

.hero-titre { max-width: 16ch; margin-left: auto; margin-right: auto; }
.hero-titre em {
  font-style: normal;
  color: var(--bronze);
}

.hero-chapo {
  width: 60%;
  max-width: 60ch;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  color: var(--encre-douce);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 26px;
}

.hero-reassurance {
  font-family: var(--carnet);
  font-size: 1rem;
  color: var(--encre);
  margin: 0;
  padding: 12px 26px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  max-width: none;
}
.hero-reassurance b { color: var(--bronze); font-weight: 700; }

/* --------------------------------------------------------------------------
   Bandeau de chiffres en pied de section
   -------------------------------------------------------------------------- */

.bandeau-releve {
  max-width: var(--colonne);
  margin: var(--rythme) auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bordure);
}
.bandeau-releve.releve-trois { grid-template-columns: repeat(3, 1fr); }

.releve-item {
  padding: 26px 22px 30px;
  text-align: center;
  border-left: 1px solid var(--bordure);
}
.releve-item:first-child { border-left: none; }

.releve-nombre {
  display: block;
  font-family: var(--carnet);
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--peche);
}
.releve-libelle {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--encre-douce);
  max-width: 26ch;
  margin: 6px auto 0;
}

.hero-releve { margin-top: 0; padding-bottom: 22px; }

/* --------------------------------------------------------------------------
   Planches photographiques
   -------------------------------------------------------------------------- */

.planche {
  background: var(--fond-creme);
  padding: 10px;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--ombre-planche);
}
.planche img {
  border-radius: 20px 20px 0 0;
  filter: saturate(.9) brightness(1.03);
}
.planche-cadre { position: relative; }
.planche-cadre::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px 20px 0 0;
  background: rgba(232, 217, 210, .30);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.planche-debordante {
  max-width: 1320px;
  margin: calc(var(--rythme) * -0.42) auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.planche-legende {
  font-family: var(--carnet);
  font-size: .95rem;
  color: var(--encre-douce);
  text-align: center;
  margin: 18px auto 0;
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   Fiches, encoche en quart de cercle et filet interieur en or bronze
   -------------------------------------------------------------------------- */

.fiche {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 34px 30px 32px;
  box-shadow: var(--ombre-douce);
}
.fiche::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
  z-index: 1;
}
.fiche::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  z-index: 2;
  pointer-events: none;
}
.fiche p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Section constat
   -------------------------------------------------------------------------- */

.constat-grille {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: start;
}
.constat-texte { grid-column: span 7; }
.constat-texte p { max-width: none; }
.constat-liste {
  grid-column: span 5;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.constat-item {
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-left: 3px solid var(--peche);
  border-radius: 4px 16px 16px 4px;
  padding: 16px 20px;
  font-size: .98rem;
}
.constat-item b { display: block; font-family: var(--carnet); font-weight: 400; color: var(--bronze); }

.constat-intro { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; align-items: end; margin-bottom: 46px; }
.constat-intro .titre-section { grid-column: span 6; max-width: none; }
.constat-intro .chapo { grid-column: span 6; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Etapes de la cure
   -------------------------------------------------------------------------- */

.etapes-cure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 48px;
  counter-reset: seance;
}
.etape {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--bordure);
}
.etape-numero {
  font-family: var(--carnet);
  font-size: 1.6rem;
  color: var(--bronze);
  display: block;
  margin-bottom: 8px;
}
.etape p { font-size: .98rem; color: var(--encre-douce); max-width: none; }

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

.grille-fonctions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.grille-fonctions .fiche p { font-size: .98rem; color: var(--encre-douce); max-width: none; }
.fiche-onglet {
  font-family: var(--carnet);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peche);
  display: block;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   Gains
   -------------------------------------------------------------------------- */

.gains-grille {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 46px;
  align-items: center;
  margin-top: 44px;
}
.gains-visuel { grid-column: span 5; }
.gains-colonnes { grid-column: span 7; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
.gain-chiffre {
  font-family: var(--carnet);
  font-size: 1.9rem;
  color: var(--bronze);
  display: block;
  line-height: 1.2;
}
.gain h3 { margin-top: 4px; }
.gain p { font-size: .98rem; color: var(--encre-douce); max-width: none; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Temoignages
   -------------------------------------------------------------------------- */

.temoins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.temoin { margin: 0; }
.temoin blockquote {
  margin: 0 0 18px;
  font-family: var(--carnet);
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--encre);
}
.temoin blockquote p { max-width: none; }
.temoin figcaption {
  border-top: 1px solid var(--bordure);
  padding-top: 14px;
  font-size: .88rem;
  color: var(--encre-douce);
}
.temoin figcaption b { display: block; color: var(--encre); font-size: .96rem; }

/* --------------------------------------------------------------------------
   Formules
   -------------------------------------------------------------------------- */

.formules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 52px;
}
.formule { position: relative; }
.formule-vedette {
  transform: translateY(-16px);
  border-color: rgba(126, 103, 26, .42);
  box-shadow: 0 30px 60px rgba(126, 103, 26, .16);
}
.formule-quart {
  position: absolute;
  top: 16px; left: 16px;
  width: 104px; height: 104px;
  color: var(--bronze);
  opacity: .3;
  pointer-events: none;
}
.formule-nom {
  font-family: var(--carnet);
  font-size: 1.35rem;
  color: var(--encre);
  margin: 0 0 6px;
}
.formule-prix {
  font-family: var(--titre);
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--bronze);
  display: block;
}
.formule-unite { font-size: .86rem; font-weight: 600; color: var(--encre-douce); display: block; margin-bottom: 14px; }
.formule-cible { font-size: .95rem; color: var(--encre-douce); max-width: none; min-height: 5.4em; }
.formule-inclus {
  list-style: none;
  margin: 0 0 26px;
  padding: 20px 0 0;
  border-top: 1px solid var(--bordure);
  display: grid;
  gap: 11px;
  font-size: .94rem;
}
.formule-inclus li { padding-left: 26px; position: relative; }
.formule-inclus li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 12px; height: 12px;
  border-left: 1.5px solid var(--peche);
  border-bottom: 1.5px solid var(--peche);
  transform: rotate(-45deg) translateY(-2px);
}
.formule-marque {
  position: absolute;
  top: 0; right: 0;
  background: var(--bronze);
  color: var(--sur-bronze);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 0 var(--arrondi-fiche) 0 14px;
  z-index: 3;
}
.tarifs-note { text-align: center; margin: 34px auto 0; font-size: .95rem; color: var(--encre-douce); max-width: 66ch; }

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

.faq-colonne { max-width: 820px; margin: 46px auto 0; }
.question { border-bottom: 1px solid var(--bordure); }
.question-bouton {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--courant);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--encre);
  cursor: pointer;
}
.question-signe {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  margin-top: 3px;
}
.question-signe::before, .question-signe::after {
  content: "";
  position: absolute;
  background: var(--bronze);
  transition: transform .28s ease, opacity .28s ease;
}
.question-signe::before { top: 12px; left: 3px; width: 20px; height: 1.5px; }
.question-signe::after { left: 12px; top: 3px; width: 1.5px; height: 20px; }
.question-bouton[aria-expanded="true"] .question-signe::after { transform: rotate(90deg); opacity: 0; }
.question-panneau { padding: 0 4px 26px; }
.question-panneau p { color: var(--encre-douce); max-width: none; }
.question-panneau p:last-child { margin-bottom: 0; }
html.js .question-panneau[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grille {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 52px;
  align-items: start;
  margin-top: 44px;
}
.contact-mot { grid-column: span 5; }
.contact-mot ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.contact-mot li { padding-left: 22px; position: relative; font-size: .98rem; color: var(--encre-douce); }
.contact-mot li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 1.5px solid var(--peche);
}

.formulaire {
  grid-column: span 7;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  padding: 34px 32px;
  box-shadow: var(--ombre-douce);
}
.champ { margin-bottom: 18px; }
.champ label, .champ-libelle {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.champ input[type="text"], .champ input[type="email"], .champ select, .champ textarea {
  width: 100%;
  font-family: var(--courant);
  font-size: 1rem;
  color: var(--encre);
  background: var(--fond);
  border: 1px solid var(--bordure);
  border-radius: 12px;
  padding: 13px 15px;
  min-height: 50px;
}
.champ textarea { min-height: 132px; resize: vertical; }
.champ select { appearance: none; background-image: none; }
.champ-consentement {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--encre-douce);
  margin-bottom: 22px;
}
.champ-consentement input { margin-top: 4px; width: 20px; height: 20px; accent-color: var(--bronze); flex: none; }
.formulaire-pied { font-size: .88rem; color: var(--encre-douce); margin: 18px 0 0; }

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

.page-interne { padding-top: 148px; padding-bottom: var(--rythme); }
.page-interne .rail > h1 { font-size: 2.9rem; max-width: 22ch; }
.fil { font-size: .85rem; color: var(--encre-douce); margin-bottom: 20px; }
.fil a { text-decoration: none; }
.corps-legal { max-width: 780px; }
.corps-legal h2 { font-size: 1.75rem; margin-top: 2.2em; }
.corps-legal h3 { margin-top: 1.8em; }
.corps-legal li { margin-bottom: .5em; }
.corps-legal dl { margin: 0 0 1.4em; }
.corps-legal dt { font-weight: 700; margin-top: .8em; }
.corps-legal dd { margin: 0 0 .2em; color: var(--encre-douce); }

.portrait-auteur {
  float: right;
  margin: 0 0 24px 32px;
  background: var(--fond-creme);
  padding: 10px;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--ombre-planche);
  max-width: 260px;
}
.portrait-auteur img { border-radius: 20px 20px 0 0; }
.portrait-auteur figcaption { font-family: var(--carnet); font-size: .84rem; color: var(--encre-douce); padding: 12px 6px 4px; }

.liste-profils { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.liste-profils a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--surface);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--encre);
}
.liste-profils a:hover { border-color: var(--bronze); }

.plan-liste { list-style: none; padding: 0; display: grid; gap: 18px; }
.plan-liste li { border-left: 3px solid var(--peche); padding: 4px 0 4px 18px; }
.plan-liste a { font-weight: 700; }

.page-message { text-align: center; padding: 190px 0 var(--rythme); }
.page-message .rail > * { margin-left: auto; margin-right: auto; }
.page-message p { max-width: 60ch; color: var(--encre-douce); }
.page-message .hero-actions { margin-top: 30px; }

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

.pied-cabine {
  background: var(--fond-creme);
  border-top: 1px solid var(--bordure);
  padding: 0 0 30px;
  margin-top: var(--rythme);
}
.pied-grille {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding: 60px 0 48px;
}
.pied-colonne h2 {
  font-family: var(--carnet);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--peche);
  margin-bottom: 18px;
}
.pied-colonne ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pied-colonne a { color: var(--encre); text-decoration: none; font-size: .95rem; }
.pied-colonne a:hover { color: var(--bronze); text-decoration: underline; }
.pied-position { font-size: .95rem; color: var(--encre-douce); margin-top: 16px; }
.pied-social { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 18px; font-size: .9rem; }
.pied-editeur { font-size: .9rem; color: var(--encre-douce); margin-top: 16px; }
.pied-barre {
  border-top: 1px solid var(--bordure);
  padding-top: 24px;
  font-size: .86rem;
  color: var(--encre-douce);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.pied-barre p { margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   Apparition en cascade dans la grille
   -------------------------------------------------------------------------- */

.cascade > * {
  opacity: 0;
  transform: translateY(18px);
}
html.js .cascade.est-visible > * {
  animation: monte 520ms cubic-bezier(.22, .68, .35, 1) both;
  animation-delay: calc(var(--rang, 0) * 90ms);
}
html:not(.js) .cascade > * { opacity: 1; transform: none; }
.bandeau-releve.cascade.est-visible > * { animation-delay: calc(140ms + var(--rang, 0) * 90ms); }

@keyframes monte {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
html.js .cascade.est-visible > .formule-vedette { animation-name: monte-vedette; }
@keyframes monte-vedette {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-16px); }
}

/* --------------------------------------------------------------------------
   Adaptations
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .grille-fonctions { grid-template-columns: repeat(2, 1fr); }
  .constat-texte, .constat-liste { grid-column: span 12; }
  .constat-intro .titre-section, .constat-intro .chapo { grid-column: span 12; }
  .gains-visuel, .gains-colonnes { grid-column: span 12; }
  .etapes-cure { grid-template-columns: repeat(2, 1fr); }
  .temoins { grid-template-columns: 1fr; }
  .formules { grid-template-columns: 1fr; }
  .formule-vedette { transform: none; }
  @keyframes monte-vedette {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .contact-mot, .formulaire { grid-column: span 12; }
  .pied-grille { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .carnet-nav, .carnet-appel { display: none; }
  .carnet-bouton-menu { display: block; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.7rem; }
  .page-interne .rail > h1 { font-size: 2rem; }
  .hero-chapo { width: 100%; }
  .bandeau-releve { grid-template-columns: repeat(2, 1fr); }
  .bandeau-releve.releve-trois { grid-template-columns: repeat(2, 1fr); }
  .releve-item:nth-child(odd) { border-left: none; }
  .releve-item { border-top: 1px solid var(--bordure); }
  .releve-item:first-child, .releve-item:nth-child(2) { border-top: none; }
  .releve-nombre { font-size: 2.2rem; }
  .planche-debordante { margin-top: 0; }
  .portrait-auteur { float: none; margin: 0 0 28px; max-width: 100%; }
}

@media (max-width: 620px) {
  :root { --rythme: 3.6rem; }
  .rail, .carnet-rail { padding: 0 18px; }
  .grille-fonctions, .etapes-cure, .gains-colonnes { grid-template-columns: 1fr; }
  .pied-grille { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 34px; }
  .formulaire { padding: 26px 20px; }
  .hero-actions .bouton-or, .hero-actions .bouton-contour { width: 100%; }
  .page-message { padding-top: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-delay: 0ms !important; transition-duration: .001ms !important; }
  .cascade > * { opacity: 1; transform: none; }
  html.js .cascade.est-visible > * { animation: none; opacity: 1; transform: none; }
  .formule-vedette { transform: translateY(-16px); }
  .bouton-or:hover { transform: none; }
}

@media print {
  .carnet-entete, .carnet-panneau, .rinceau-bande { display: none; }
  body { background: #FFFFFF; }
}
/* ==========================================================================
   Le Carnet de Cure, section magazine.
   Meme palette, memes polices, meme forme signature que le reste du site:
   encoche en quart de cercle de 18 pixels dans l angle superieur gauche,
   filet interieur de 1 pixel en or bronze a 6 pixels du bord, planches
   photographiques a coins superieurs arrondis, rinceaux vegetaux graves
   et apparition en cascade dans la grille.
   Le corps des articles est du HTML nu: les balises h2, h3, p, ul, ol, li,
   table, thead, tbody, tr, th, td, blockquote, aside, figure, figcaption,
   strong, em et a sont mises en forme comme descendantes de .article-corps.
   Cette section est ajoutee a la suite, aucune regle precedente n est touchee.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Intitules de colonne du pied de page poses sur un paragraphe.
   Les pages du magazine reservent leurs balises de titre au contenu
   redactionnel: le pied de page garde donc l apparence sans la hierarchie.
   -------------------------------------------------------------------------- */

.pied-colonne .pied-titre {
  font-family: var(--carnet);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--peche);
  margin: 0 0 18px;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Enveloppe des pages du magazine
   -------------------------------------------------------------------------- */

.page-magazine {
  padding-top: 128px;
  padding-bottom: 0;
}

.magazine-entete {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}
.magazine-entete .fil { text-align: center; }
.magazine-entete h1 { font-size: 3.1rem; margin-bottom: .35em; }
.magazine-chapo {
  font-size: 1.15rem;
  color: var(--encre-douce);
  margin: 0 auto;
  max-width: 62ch;
}
.magazine-releve { margin-top: 44px; }

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

.sommaire-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
  align-items: stretch;
}

.fiche-article {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 10px 10px 26px;
  box-shadow: var(--ombre-douce);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.fiche-article::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
  z-index: 3;
}
.fiche-article::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  z-index: 4;
  pointer-events: none;
}
.fiche-article:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre-planche);
  border-color: rgba(126, 103, 26, .42);
}
.fiche-article:focus-within { border-color: var(--bronze); }

.fiche-article-planche {
  margin: 0;
  border-radius: 0 14px 0 0;
  overflow: hidden;
  background: var(--fond-creme);
}
.fiche-article-planche img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.9) brightness(1.03);
}

.fiche-article-texte {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 0;
}

.fiche-article-angle {
  display: block;
  font-family: var(--carnet);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peche);
  margin-bottom: 10px;
}

.fiche-article-titre {
  font-family: var(--courant);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0;
  margin: 0 0 10px;
}
.fiche-article-titre a {
  color: var(--encre);
  text-decoration: none;
}
.fiche-article-titre a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  z-index: 5;
}
.fiche-article-titre a:hover { color: var(--bronze); }

.fiche-article-extrait {
  font-size: .96rem;
  color: var(--encre-douce);
  margin: 0 0 18px;
  max-width: none;
}

.fiche-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--bordure);
  font-size: .84rem;
  font-weight: 600;
  color: var(--encre-douce);
  max-width: none;
}
.fiche-article-lecture { color: var(--bronze); }

/* --------------------------------------------------------------------------
   Entete d article: fil d Ariane, angle, dates et temps de lecture
   -------------------------------------------------------------------------- */

.article-entete {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.article-entete .fil { text-align: center; }
.article-entete .fil a { color: var(--bronze); }

.article-reperes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px 18px;
  margin: 0 0 18px;
  max-width: none;
  font-family: var(--carnet);
  font-size: .92rem;
  color: var(--encre-douce);
}
.article-angle {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--peche);
}
.article-lecture { color: var(--bronze); }

.article-titre {
  font-size: 3rem;
  max-width: 22ch;
  margin: 0 auto .5em;
}

.article-chapo {
  font-family: var(--carnet);
  font-size: 1.22rem;
  line-height: 1.62;
  color: var(--encre);
  max-width: 66ch;
  margin: 0 auto 24px;
  padding: 24px 0;
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  position: relative;
}
.article-chapo::before,
.article-chapo::after {
  content: "";
  position: absolute;
  left: 0;
  width: 62px;
  height: 1px;
  background: var(--bronze);
}
.article-chapo::before { top: -1px; }
.article-chapo::after { bottom: -1px; }

.article-signature {
  font-size: .9rem;
  color: var(--encre-douce);
  margin: 0 auto;
  max-width: none;
}

.article-planche {
  max-width: 1080px;
  margin: 44px auto 0;
  padding: 0 24px;
}
.article-planche .planche-legende { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Corps d article: balises nues, mesure de lecture de 68 caracteres
   -------------------------------------------------------------------------- */

.article-corps {
  max-width: var(--colonne-lecture);
  margin: 0 auto;
  padding-top: var(--rythme);
  font-size: 1.05rem;
}
.article-corps > :first-child { margin-top: 0; }

.article-corps p {
  margin: 0 0 1.15em;
  max-width: none;
}

.article-corps h2 {
  position: relative;
  font-family: var(--titre);
  font-size: 1.95rem;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.12;
  margin: 2.4em 0 .6em;
  padding-top: 1.1em;
  border-top: 1px solid var(--bordure);
  max-width: none;
}
.article-corps h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 62px;
  height: 1px;
  background: var(--bronze);
}

.article-corps h3 {
  position: relative;
  font-family: var(--courant);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--encre);
  margin: 2em 0 .5em;
  padding-left: 20px;
  max-width: none;
}
.article-corps h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.5px solid var(--peche);
}

.article-corps ul,
.article-corps ol {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}
.article-corps ol { counter-reset: point-corps; }
.article-corps li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .58em;
}
.article-corps ul > li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: .66em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.5px solid var(--peche);
}
.article-corps ol > li { counter-increment: point-corps; }
.article-corps ol > li::before {
  content: counter(point-corps);
  position: absolute;
  left: 0;
  top: -.06em;
  font-family: var(--carnet);
  font-size: 1.05rem;
  color: var(--bronze);
}
.article-corps li > ul,
.article-corps li > ol { margin: .5em 0 .2em; }

.article-corps table {
  width: 100%;
  margin: 1.9em 0 2.1em;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  overflow: hidden;
  font-size: .95rem;
  box-shadow: var(--ombre-douce);
}
.article-corps thead th {
  font-family: var(--carnet);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--fond-creme);
  text-align: left;
  vertical-align: bottom;
}
.article-corps th,
.article-corps td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bordure);
}
.article-corps tbody th {
  font-weight: 700;
  color: var(--encre);
}
.article-corps tbody tr:last-child th,
.article-corps tbody tr:last-child td { border-bottom: none; }
.article-corps tbody tr:nth-child(even) th,
.article-corps tbody tr:nth-child(even) td { background: rgba(252, 244, 236, .55); }

.article-corps aside {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 28px 30px 24px;
  margin: 2em 0;
  box-shadow: var(--ombre-douce);
}
.article-corps aside::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
}
.article-corps aside::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  pointer-events: none;
}
.article-corps aside > :last-child { margin-bottom: 0; }
.article-corps aside p { font-size: .99rem; }

.article-corps blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--peche);
  font-family: var(--carnet);
  font-size: 1.1rem;
  line-height: 1.62;
  color: var(--encre);
}
.article-corps blockquote > :last-child { margin-bottom: 0; }

.article-corps figure {
  margin: 2em 0;
  background: var(--fond-creme);
  padding: 10px;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--ombre-planche);
}
.article-corps figure img { border-radius: 20px 20px 0 0; }
.article-corps figcaption {
  font-family: var(--carnet);
  font-size: .9rem;
  color: var(--encre-douce);
  text-align: center;
  padding: 14px 8px 4px;
}

.article-corps a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(126, 103, 26, .45);
}
.article-corps a:hover {
  color: var(--bronze-clair);
  text-decoration-color: var(--bronze-clair);
}
.article-corps strong { font-weight: 700; color: var(--encre); }
.article-corps em { font-style: italic; }

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

.article-appel {
  position: relative;
  max-width: var(--colonne-lecture);
  margin: calc(var(--rythme) * .8) auto 0;
  background: var(--fond-creme);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 32px 34px 30px;
  text-align: center;
}
.article-appel::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
}
.article-appel::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  pointer-events: none;
}
.article-appel-titre {
  font-family: var(--titre);
  font-size: 1.55rem;
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--encre);
  margin: 0 auto 12px;
  max-width: 24ch;
}
.article-appel p {
  color: var(--encre-douce);
  margin: 0 auto 22px;
  max-width: 58ch;
}

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

.encart-auteur {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: var(--colonne-lecture);
  margin: 40px auto 0;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 28px 30px;
  box-shadow: var(--ombre-douce);
}
.encart-auteur::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
}
.encart-auteur::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  pointer-events: none;
}
.encart-auteur img {
  flex: none;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 3px solid var(--fond-creme);
  box-shadow: 0 8px 20px rgba(126, 103, 26, .14);
}
.encart-auteur-mot { flex: 1; }
.encart-auteur-nom {
  font-family: var(--carnet);
  font-size: 1.12rem;
  color: var(--encre);
  margin: 0 0 4px;
  max-width: none;
}
.encart-auteur-role {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--peche);
  margin: 0 0 12px;
  max-width: none;
}
.encart-auteur p {
  font-size: .96rem;
  color: var(--encre-douce);
  max-width: none;
}
.encart-auteur p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Bloc A lire aussi et section Derniers articles de la page d accueil
   -------------------------------------------------------------------------- */

.lire-aussi {
  background: var(--fond-creme);
  border-top: 1px solid var(--bordure);
  margin-top: var(--rythme);
  padding: var(--rythme) 0;
  --hote: var(--fond-creme);
}
.lire-aussi .surtitre { margin-bottom: 8px; }
.lire-aussi-intro {
  text-align: center;
  color: var(--encre-douce);
  margin: 0 auto;
  max-width: 60ch;
}

.lire-aussi-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.carte-lire {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--arrondi-fiche);
  border-top-left-radius: 0;
  padding: 10px 10px 24px;
  box-shadow: var(--ombre-douce);
  text-decoration: none;
  color: var(--encre);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.carte-lire::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(126, 103, 26, .34);
  border-radius: calc(var(--arrondi-fiche) - 6px);
  border-top-left-radius: 0;
  pointer-events: none;
  z-index: 3;
}
.carte-lire::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: var(--encoche);
  height: var(--encoche);
  background: var(--hote);
  border-right: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  border-bottom-right-radius: var(--encoche);
  z-index: 4;
  pointer-events: none;
}
.carte-lire:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre-planche);
  border-color: rgba(126, 103, 26, .42);
  color: var(--encre);
}

.carte-lire-planche {
  display: block;
  border-radius: 0 14px 0 0;
  overflow: hidden;
  background: var(--fond-creme);
}
.carte-lire-planche img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.9) brightness(1.03);
}
.carte-lire-titre {
  display: block;
  padding: 20px 18px 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.36;
}
.carte-lire:hover .carte-lire-titre { color: var(--bronze); }
.carte-lire-accroche {
  display: block;
  padding: 9px 18px 0;
  font-size: .92rem;
  color: var(--encre-douce);
}

.magazine-lien {
  text-align: center;
  margin: 42px auto 0;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Journal des parutions, employe sur la page auteur et le plan du site
   -------------------------------------------------------------------------- */

.journal-liste {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.journal-liste li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  align-items: baseline;
  padding: 16px 0 18px;
  border-top: 1px solid var(--bordure);
}
.journal-liste li:last-child { border-bottom: 1px solid var(--bordure); }
.journal-angle {
  grid-column: 1 / -1;
  order: -1;
  font-family: var(--carnet);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peche);
}
.journal-liste a {
  font-weight: 700;
  color: var(--encre);
  text-decoration: none;
}
.journal-liste a:hover { color: var(--bronze); text-decoration: underline; }
.journal-date {
  font-family: var(--carnet);
  font-size: .88rem;
  color: var(--encre-douce);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Adaptations du magazine
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .sommaire-grille,
  .lire-aussi-grille { grid-template-columns: repeat(2, 1fr); }
  .article-titre { font-size: 2.5rem; }
  .magazine-entete h1 { font-size: 2.6rem; }
}

@media (max-width: 900px) {
  .page-magazine { padding-top: 108px; }
  .article-titre { font-size: 2.1rem; max-width: none; }
  .magazine-entete h1 { font-size: 2.1rem; }
  .article-corps h2 { font-size: 1.6rem; }
  .article-chapo { font-size: 1.1rem; }
  .encart-auteur { flex-direction: column; gap: 18px; }
}

@media (max-width: 620px) {
  .sommaire-grille,
  .lire-aussi-grille { grid-template-columns: 1fr; }
  .article-planche { padding: 0 18px; }
  .article-corps { font-size: 1rem; }
  .article-corps table { display: block; overflow-x: auto; }
  .article-appel { padding: 26px 20px 24px; }
  .encart-auteur { padding: 24px 20px; }
  .journal-liste li { grid-template-columns: 1fr; }
}

/* La section magazine de la page d accueil se ferme sur un retrait bas,
   faute de bandeau de chiffres pour la terminer comme les autres sections. */
.section-magazine { padding-bottom: var(--rythme); }

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