/* ============================================================
   NABYCOOK — Site Phase 1 (socle institutionnel)
   Charte Adinkra v2.0 · Agence Mr Attractor
   Feuille de style commune aux 5 pages.
   Grille 8 px · Mobile first · Zero debordement horizontal
   ============================================================ */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- 2. Jetons ---------- */
:root {
  --vert-profond: #0E3D14;
  --vert-profond-2: #14501C;
  --vert-feuille: #4C8B2F;
  --vert-anis: #C3D94F;
  --terracotta: #C8703D;   /* aplats et traits decoratifs */
  --terracotta-d: #A9522A; /* texte : contraste AA sur creme */
  --or: #D4A24C;
  --or-d: #97701F;         /* texte : contraste AA sur creme */
  --creme: #F7F2E7;
  --carte: #FFFDF7;        /* jamais de blanc pur */
  --texte: #22301F;
  --muted: #5C6B54;
  --sable: #E6DFCB;

  --r-s: 12px;
  --r-m: 18px;
  --r-l: 28px;

  --ombre: 0 4px 18px rgba(14, 61, 20, .07);
  --ombre-2: 0 10px 34px rgba(14, 61, 20, .12);

  --serif: 'Pacifico', 'Segoe Script', cursive;
  --sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max: 1120px;
  --gouttiere: 24px;
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--texte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gouttiere); }
.wrap-etroit { max-width: 760px; }

h1, h2, h3, h4 { line-height: 1.22; font-weight: 700; color: var(--vert-profond); }
h1 { font-size: clamp(30px, 6vw, 46px); }
h2 { font-size: clamp(24px, 4.4vw, 34px); }
h3 { font-size: clamp(19px, 2.6vw, 22px); }
h4 { font-size: 17px; font-weight: 600; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--vert-profond); }
.script { font-family: var(--serif); font-weight: 400; }

.surtitre {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 8px;
}
.lead { font-size: 18px; color: var(--muted); max-width: 68ch; }
.centre { text-align: center; }
.centre .lead { margin-left: auto; margin-right: auto; }

section { padding: 64px 0; }
section.serre { padding: 48px 0; }
.fond-creme { background: var(--creme); }
.fond-carte { background: var(--carte); }
.fond-vert { background: var(--vert-profond); color: var(--creme); }
.fond-vert h2, .fond-vert h3 { color: var(--vert-anis); }
.fond-vert .surtitre { color: var(--or); }
.fond-vert .lead, .fond-vert p { color: rgba(247, 242, 231, .88); }
.fond-vert strong { color: #FFFFFF; }

/* ---------- 4. Bandeau maquette ---------- */
.bandeau-maquette {
  background: var(--terracotta-d); color: #FFF6EF;
  font-size: 14px; font-weight: 500; text-align: center;
  padding: 12px var(--gouttiere);
}
.bandeau-maquette b { color: #FFFFFF; font-weight: 700; }

/* ---------- 5. En-tete ---------- */
.entete {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 242, 231, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sable);
}
.entete-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}
.marque { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.marque img {
  width: 56px; height: 56px; object-fit: contain;
  /* Le logo HD fourni par Nabintou est un PNG en RGBA, mais son fond
     blanc est opaque : sans ce melange, un rectangle blanc apparait
     sur le creme de l'en-tete. A retirer le jour ou on recoit un
     vrai detourage (.ai, .eps, .svg ou PNG a fond transparent). */
  mix-blend-mode: multiply;
}
.marque .nom { font-family: var(--serif); font-size: 22px; color: var(--vert-profond); line-height: 1; }
.marque .sous { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.burger {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--sable); border-radius: var(--r-s);
  cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--vert-profond); position: relative; transition: background .2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--vert-profond); transition: transform .2s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.entete.ouvert .burger span { background: transparent; }
.entete.ouvert .burger span::before { transform: translateY(6px) rotate(45deg); }
.entete.ouvert .burger span::after { transform: translateY(-6px) rotate(-45deg); }

.nav { display: none; }
.entete.ouvert .nav {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--carte);
  border-bottom: 1px solid var(--sable);
  box-shadow: var(--ombre-2);
  padding: 8px var(--gouttiere) 24px;
}
.nav ul { list-style: none; }
.nav a {
  display: flex; align-items: center; min-height: 48px;
  text-decoration: none; font-size: 17px; font-weight: 500;
  color: var(--vert-profond);
  border-bottom: 1px solid var(--sable);
}
.nav li:last-child a { border-bottom: none; }
.nav a[aria-current="page"] { color: var(--vert-feuille); font-weight: 600; }
.nav .bouton { justify-content: center; margin-top: 16px; border-bottom: none; }

/* Seuil monte de 900 a 1140 px avec l'arrivee du 6e onglet : en dessous,
   les intitules se cassaient sur deux lignes. Le menu deroulant tient mieux. */
@media (min-width: 1140px) {
  .burger { display: none; }
  /* Rangee unique : sans le flex ici, le bouton d'adhesion passait
     sous les liens et s'etirait sur toute la largeur de l'en-tete. */
  .nav, .entete.ouvert .nav {
    display: flex; align-items: center; position: static; background: none;
    border: none; box-shadow: none; padding: 0;
  }
  .nav ul { display: flex; align-items: center; gap: 8px; }
  .nav a {
    min-height: 44px; padding: 0 14px; border-bottom: none;
    font-size: 16px; border-radius: var(--r-s);
  }
  .nav a:hover { background: rgba(76, 139, 47, .1); }
  .nav a[aria-current="page"] { background: rgba(76, 139, 47, .14); }
  .nav .bouton { margin: 0 0 0 8px; }
}

/* ---------- 6. Boutons ---------- */
.bouton {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px;
  border: 2px solid transparent; border-radius: 999px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.bouton:active { transform: translateY(1px); }
.bouton-1 { background: var(--vert-feuille); color: #FFFFFF; box-shadow: 0 6px 18px rgba(76, 139, 47, .3); }
.bouton-1:hover { background: var(--vert-profond-2); }
.bouton-2 { background: transparent; color: var(--vert-profond); border-color: var(--vert-profond); }
.bouton-2:hover { background: rgba(14, 61, 20, .07); }
.bouton-3 { background: var(--vert-anis); color: var(--vert-profond); }
.bouton-3:hover { background: #D3E76A; }
/* Sur les fonds sombres, le bouton contour vert profond etait invisible.
   Le hero est concerne au meme titre que les sections .fond-vert. */
.fond-vert .bouton-2, .hero .bouton-2 { color: var(--creme); border-color: rgba(247, 242, 231, .55); }
.fond-vert .bouton-2:hover, .hero .bouton-2:hover { background: rgba(247, 242, 231, .12); }
.boutons { display: flex; flex-wrap: wrap; gap: 16px; }
.centre .boutons { justify-content: center; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--vert-profond);
  color: var(--creme);
  padding: 64px 0 72px;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--vert-feuille) 0%, transparent 70%);
  opacity: .38; pointer-events: none;
}
.hero .motif {
  position: absolute; left: -40px; bottom: -40px; width: 240px; opacity: .12;
  color: var(--vert-anis); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(195, 217, 79, .16); border: 1px solid rgba(195, 217, 79, .4);
  color: var(--vert-anis);
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { color: var(--creme); max-width: 20ch; }
.hero .accroche {
  font-family: var(--serif); color: var(--vert-anis);
  font-size: clamp(26px, 5.2vw, 40px); line-height: 1.3;
  margin-bottom: 16px; max-width: 18ch;
}
.hero p { color: rgba(247, 242, 231, .88); font-size: 18px; max-width: 56ch; margin-top: 16px; }
.hero .boutons { margin-top: 32px; }

.hero-grille { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .hero-grille { grid-template-columns: 1.05fr .95fr; gap: 48px; } }
.hero .photo-slot { border-color: rgba(195, 217, 79, .5); background: rgba(195, 217, 79, .1); color: rgba(247, 242, 231, .82); }
.hero .photo-slot b, .hero .photo-slot svg { color: var(--vert-anis); }

.hero-page { padding: 48px 0 56px; }
.hero-page h1 { max-width: 24ch; }

/* ---------- 8. Cartes et grilles ---------- */
.grille { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grille-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .grille-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .grille-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grille-4 { grid-template-columns: repeat(4, 1fr); } }

.carte {
  background: var(--carte); border: 1px solid var(--sable);
  border-radius: var(--r-m); padding: 32px 24px;
  box-shadow: var(--ombre);
  display: flex; flex-direction: column;
}
.carte h3 { margin-bottom: 8px; }
.carte p { color: var(--muted); font-size: 16px; }
.carte .lien-carte { margin-top: auto; padding-top: 16px; }
.carte-lien {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-weight: 600; font-size: 16px; color: var(--vert-feuille); text-decoration: none;
}
.carte-lien:hover { color: var(--vert-profond); text-decoration: underline; }
.mini-icone { display: inline-flex; width: 18px; height: 18px; flex: none; }
.mini-icone svg { width: 100%; height: 100%; }

.icone {
  width: 56px; height: 56px; border-radius: var(--r-s);
  background: rgba(195, 217, 79, .28);
  display: flex; align-items: center; justify-content: center;
  color: var(--vert-profond); margin-bottom: 16px; flex: none;
}
.icone svg { width: 28px; height: 28px; }

/* ---------- 9. Acces rapides ---------- */
.acces { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: -40px; position: relative; z-index: 2; }
@media (min-width: 860px) { .acces { grid-template-columns: repeat(3, 1fr); } }
.acces a {
  display: flex; align-items: center; gap: 16px;
  background: var(--carte); border: 1px solid var(--sable);
  border-radius: var(--r-m); padding: 24px; min-height: 96px;
  text-decoration: none; box-shadow: var(--ombre);
  transition: transform .15s, box-shadow .15s;
}
.acces a:hover { transform: translateY(-2px); box-shadow: var(--ombre-2); }
.acces .icone { width: 48px; height: 48px; margin: 0; }
.acces .icone svg { width: 24px; height: 24px; }
.acces .t { font-weight: 600; color: var(--vert-profond); font-size: 17px; }
.acces .d { display: block; font-size: 14px; color: var(--muted); font-weight: 300; }

/* ---------- 10. Distinctions ---------- */
.distinctions { background: var(--vert-profond-2); padding: 24px 0; }
.distinctions ul {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 12px 32px; justify-content: center; align-items: center;
}
.distinctions li {
  display: flex; align-items: center; gap: 8px;
  color: var(--creme); font-size: 14px; font-weight: 500;
}
.distinctions svg { width: 18px; height: 18px; color: var(--or); flex: none; }

/* ---------- 11. Chiffres d'impact ---------- */
.chiffre { text-align: center; padding: 24px 16px; }
.chiffre .n {
  font-family: var(--serif); font-size: clamp(34px, 6vw, 48px);
  color: var(--vert-feuille); line-height: 1.1; display: block;
}
.fond-vert .chiffre .n { color: var(--vert-anis); }
.chiffre .l { font-size: 15px; color: var(--muted); font-weight: 500; }
.fond-vert .chiffre .l { color: rgba(247, 242, 231, .82); }

/* ---------- 12. Partenaires et presse ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.logo-slot {
  width: 148px; height: 80px; border-radius: var(--r-s);
  background: var(--carte); border: 1px dashed var(--sable);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.presse { list-style: none; display: grid; gap: 16px; }
.presse li {
  background: var(--carte); border-left: 4px solid var(--or);
  border-radius: 0 var(--r-s) var(--r-s) 0; padding: 16px 24px;
}
.presse .src { display: block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--or-d); margin-bottom: 4px; }
.presse .cit { font-size: 16px; color: var(--texte); }

/* ---------- 12 bis. Agenda et chemin de l'association ---------- */
.rdv-date {
  display: inline-block; align-self: flex-start;
  background: var(--vert-anis); color: var(--vert-profond);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.rdv-lieu { font-size: 15px; font-weight: 600; color: var(--vert-feuille); margin-bottom: 8px; }

.chemin { list-style: none; counter-reset: none; }
.chemin li {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 32px; position: relative;
}
.chemin li:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 40px; bottom: 0;
  width: 2px; background: var(--sable);
}
.chemin .an {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  background: var(--vert-profond); color: var(--vert-anis);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; position: relative; z-index: 1;
}
.chemin h3 { margin-bottom: 4px; }

/* ---------- 13. Temoignages ---------- */
.temoin { background: var(--carte); border: 1px solid var(--sable); border-radius: var(--r-m); padding: 32px 24px; }
.temoin .q { font-family: var(--serif); font-size: 20px; color: var(--vert-feuille); line-height: 1.45; margin-bottom: 16px; }
.temoin .a { font-size: 15px; font-weight: 600; color: var(--vert-profond); }
.temoin .r { font-size: 14px; color: var(--muted); font-weight: 300; }

/* ---------- 14. Adhesions ---------- */
.formule {
  background: var(--carte); border: 2px solid var(--sable);
  border-radius: var(--r-l); padding: 32px 24px;
  display: flex; flex-direction: column;
}
.formule.vedette { border-color: var(--vert-feuille); box-shadow: var(--ombre-2); }
.formule .etiquette {
  align-self: flex-start; background: var(--vert-anis); color: var(--vert-profond);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.formule .nom { font-family: var(--serif); font-size: 28px; color: var(--vert-profond); line-height: 1.2; }
.formule .prix { font-size: 32px; font-weight: 700; color: var(--vert-feuille); margin: 16px 0 8px; }
.formule .prix small { font-size: 16px; font-weight: 400; color: var(--muted); }
.formule .desc { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.formule ul { list-style: none; margin-bottom: 24px; }
.formule li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 16px; }
.formule li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--vert-anis); border: 2px solid var(--vert-feuille);
}
.formule .bouton { margin-top: auto; }
.qr {
  width: 132px; height: 132px; border-radius: var(--r-s);
  border: 1px dashed var(--sable); background: var(--creme);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 12px; color: var(--muted); padding: 8px;
  margin-top: 16px;
}

/* ---------- 15. Emplacements photo ---------- */
.photo-slot {
  width: 100%; border-radius: var(--r-m);
  border: 2px dashed var(--vert-feuille);
  background: rgba(195, 217, 79, .14);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.photo-slot svg { width: 32px; height: 32px; color: var(--vert-feuille); }
.photo-slot b { color: var(--vert-profond); font-weight: 600; display: block; font-size: 15px; }
/* Emplacement occupe par une vraie photo : plus de cadre en pointilles. */
.photo-slot.photo-remplie {
  border: 0; background: none; padding: 0; overflow: hidden;
  box-shadow: var(--ombre-2);
}
.photo-slot.photo-remplie img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r-m);
}
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }

/* ---------- 16. Marqueurs "a fournir" ---------- */
.afournir {
  border-bottom: 2px dotted var(--terracotta);
  background: rgba(200, 112, 61, .1);
  padding: 0 3px; border-radius: 3px;
}
.bloc-afournir { position: relative; border: 1px dashed var(--terracotta); border-radius: var(--r-m); padding: 32px 24px 24px; background: rgba(200, 112, 61, .05); }
.etiq-afournir {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--terracotta-d); color: #FFF6EF;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.fond-vert .afournir { background: rgba(212, 162, 76, .2); border-bottom-color: var(--or); }

/* ---------- 17. Encart ---------- */
.encart {
  background: var(--carte); border-left: 6px solid var(--vert-anis);
  border-radius: 0 var(--r-m) var(--r-m) 0; padding: 24px;
}
.encart h3 { margin-bottom: 8px; }
.fond-vert .encart { background: rgba(247, 242, 231, .08); border-left-color: var(--or); }

/* ---------- 18. Formulaire ---------- */
.champ { margin-bottom: 16px; }
.champ label { display: block; font-size: 15px; font-weight: 600; color: var(--vert-profond); margin-bottom: 8px; }
.champ input, .champ textarea, .champ select {
  width: 100%; min-height: 48px; padding: 12px 16px;
  background: var(--carte); border: 1px solid var(--sable);
  border-radius: var(--r-s); font-size: 16px; font-weight: 300;
}
.champ textarea { min-height: 132px; resize: vertical; }
.champ input:focus, .champ textarea:focus, .champ select:focus {
  outline: 2px solid var(--vert-feuille); outline-offset: 1px; border-color: var(--vert-feuille);
}
.aide { font-size: 14px; color: var(--muted); margin-top: 8px; }

.coord { list-style: none; display: grid; gap: 16px; }
.coord li { display: flex; align-items: flex-start; gap: 16px; }
.coord .icone { width: 44px; height: 44px; margin: 0; }
.coord .icone svg { width: 22px; height: 22px; }
.coord .k { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.coord .v { font-size: 17px; font-weight: 500; color: var(--vert-profond); text-decoration: none; word-break: break-word; }
.coord a.v:hover { text-decoration: underline; }

/* ---------- 19. Integration externe ---------- */
.embed-slot {
  border: 2px dashed var(--vert-feuille); border-radius: var(--r-m);
  background: rgba(195, 217, 79, .12); padding: 40px 24px; text-align: center;
}
.embed-slot h4 { margin-bottom: 8px; }
.embed-slot p { color: var(--muted); font-size: 15px; max-width: 52ch; margin: 0 auto 16px; }

/* ---------- 20. Pied de page ---------- */
.pied { background: var(--vert-profond); color: rgba(247, 242, 231, .82); padding: 56px 0 32px; font-size: 15px; }
.pied-grille { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .pied-grille { grid-template-columns: 2fr 1fr 1fr; } }
.pied h4 { color: var(--vert-anis); font-family: var(--serif); font-weight: 400; font-size: 20px; margin-bottom: 16px; }
.pied ul { list-style: none; }
.pied li { margin-bottom: 8px; }
.pied a { color: rgba(247, 242, 231, .82); text-decoration: none; display: inline-flex; align-items: center; min-height: 32px; }
.pied a:hover { color: var(--vert-anis); text-decoration: underline; }
.pied .sociaux { display: flex; gap: 12px; margin-top: 16px; }
.pied .sociaux a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(247, 242, 231, .28);
  display: inline-flex; align-items: center; justify-content: center;
}
.pied .sociaux svg { width: 20px; height: 20px; }
.pied .bas {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(247, 242, 231, .16);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 14px; color: rgba(247, 242, 231, .62);
}
.pied .marque-pied { font-family: var(--serif); font-size: 26px; color: var(--vert-anis); margin-bottom: 8px; }

/* ---------- 21. Divers ---------- */
.saut-contenu {
  position: absolute; left: -9999px; top: 0;
  background: var(--vert-anis); color: var(--vert-profond);
  padding: 12px 24px; border-radius: 0 0 var(--r-s) 0; font-weight: 600; z-index: 100;
}
.saut-contenu:focus { left: 0; }
:focus-visible { outline: 3px solid var(--vert-feuille); outline-offset: 2px; }

/* ---------- 22. Impression ---------- */
@media print {
  body { background: #FFFFFF; font-size: 12pt; }
  .entete, .burger, .nav, .bandeau-maquette, .saut-contenu, .hero .motif { display: none !important; }
  section { padding: 16px 0; }
  .carte, .formule, .temoin, .encart, .presse li, .photo-slot, .bloc-afournir, .chiffre, section, table, tr {
    break-inside: avoid; overflow: visible;
  }
  .hero, .fond-vert, .distinctions, .pied, .formule.vedette, .etiquette, .icone {
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  a { text-decoration: none; }
}
