/* =========================================================================
   « Ce soir on mange quoi » — feuille de style principale
   Concue pour le mobile d'abord : environ 80 % du trafic vient de Pinterest.
   Aucune police ni ressource externe : le site s'affiche partout, tout de
   suite, et rien ne fuit vers un serveur tiers.
   ========================================================================= */

:root {
  --fond: #fbf8f4;
  --fond-alt: #f4ede4;
  --carte: #ffffff;
  --encre: #2a2521;
  --encre-doux: #6d635a;
  --accent: #c8452f;
  --accent-fonce: #a5361f;
  --accent-clair: #fbeae6;
  --vert: #4a7c59;
  --bordure: #ebe1d5;
  --ombre: 0 1px 2px rgba(42, 37, 33, .05), 0 8px 24px rgba(42, 37, 33, .06);
  --ombre-forte: 0 2px 4px rgba(42, 37, 33, .07), 0 16px 40px rgba(42, 37, 33, .10);
  --rayon: 14px;
  --rayon-l: 22px;
  --police: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --police-titre: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --icone-imprimante: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9V2h12v7'/%3E%3Cpath d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/%3E%3Crect x='6' y='14' width='12' height='8'/%3E%3C/svg%3E");
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--fond);
  color: var(--encre);
  font-family: var(--police);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--police-titre); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }

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

.conteneur { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.conteneur--etroit { max-width: 720px; }

.saut-contenu {
  position: absolute; left: -9999px; top: 0; background: var(--encre); color: #fff;
  padding: 12px 18px; z-index: 100; border-radius: 0 0 var(--rayon) 0;
}
.saut-contenu:focus { left: 0; }

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

/* ---------- En-tete ---------- */
.entete {
  background: rgba(251, 248, 244, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--bordure);
  position: sticky; top: 0; z-index: 50;
}
.entete__interieur {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px; flex-wrap: wrap;
}
.marque {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--police-titre); font-size: 1.15rem; font-weight: 600;
  color: var(--encre); text-decoration: none; letter-spacing: -.01em;
}
.marque__icone { font-size: 1.3rem; }
.marque:hover { color: var(--accent); }

.nav { display: flex; gap: 4px; }
.nav a {
  color: var(--encre-doux); text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: 7px 13px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav a:hover { background: var(--fond-alt); color: var(--encre); }
.nav a.actif { background: var(--accent-clair); color: var(--accent-fonce); }

/* ---------- Boutons ---------- */
.bouton {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font: inherit; font-weight: 600;
  font-size: .98rem; text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .12s, box-shadow .15s, background .15s;
}
.bouton--principal { background: var(--accent); color: #fff; box-shadow: var(--ombre); }
.bouton--principal:hover { background: var(--accent-fonce); color: #fff; transform: translateY(-1px); box-shadow: var(--ombre-forte); }
.bouton--discret { background: transparent; color: var(--encre); border-color: var(--bordure); }
.bouton--discret:hover { background: var(--carte); border-color: var(--encre-doux); color: var(--encre); }
.bouton[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Heros ---------- */
.heros {
  background: linear-gradient(170deg, var(--fond-alt) 0%, var(--fond) 78%);
  padding: 56px 0 48px; text-align: center; border-bottom: 1px solid var(--bordure);
}
.heros__oeil {
  text-transform: uppercase; letter-spacing: .09em; font-size: .74rem; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
}
.heros__titre { font-size: clamp(2.1rem, 7vw, 3.4rem); margin-bottom: .3em; letter-spacing: -.02em; }
.heros__texte {
  font-size: 1.1rem; color: var(--encre-doux); max-width: 34em; margin: 0 auto 28px;
}
.heros__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.heros__rassurance { margin-top: 22px; font-size: .87rem; color: var(--encre-doux); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section--alt { background: var(--fond-alt); }
.section__titre { font-size: clamp(1.6rem, 4.5vw, 2.1rem); text-align: center; }
.section__titre--page { text-align: left; }
.section__intro {
  text-align: center; color: var(--encre-doux); max-width: 40em; margin: 0 auto 36px;
}
.section__titre--page + .section__intro { text-align: left; margin-left: 0; }

/* ---------- Grille de cartes ---------- */
.grille {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media (min-width: 560px) { .grille { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grille { grid-template-columns: repeat(3, 1fr); } }
.grille--menus { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grille--menus { grid-template-columns: repeat(2, 1fr); } }

.carte {
  background: var(--carte); border-radius: var(--rayon-l); overflow: hidden;
  box-shadow: var(--ombre); border: 1px solid var(--bordure);
  transition: transform .16s ease, box-shadow .16s ease;
}
.carte:hover { transform: translateY(-3px); box-shadow: var(--ombre-forte); }
.carte__lien { display: block; color: inherit; text-decoration: none; height: 100%; }
.carte__visuel { aspect-ratio: 3 / 2; overflow: hidden; background: var(--fond-alt); }
.carte__image { width: 100%; height: 100%; object-fit: cover; }
.carte__image--vide {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.carte__image--vide span {
  font-family: var(--police-titre); font-size: 3rem; color: rgba(255, 255, 255, .85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.carte__texte { padding: 18px 20px 22px; }
.carte__jour {
  text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700;
  color: var(--accent); margin: 0 0 6px;
}
.carte__titre { font-size: 1.16rem; margin: 0 0 8px; }
.carte__meta {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: .87rem; color: var(--encre-doux); margin: 0;
}
.carte__chapo { margin: 10px 0 0; font-size: .93rem; color: var(--encre-doux); }
.carte--menu .carte__texte { padding: 26px 24px; }

/* Barre « vous êtes N » au-dessus des dîners */
.barre-convives {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px 12px; margin: -14px 0 30px;
}
.barre-convives__label { font-weight: 600; }
.barre-convives .convives { margin: 0; }
.barre-convives__note {
  width: 100%; text-align: center; font-size: .84rem; color: var(--encre-doux);
}

/* Aperçu nutritionnel : une ligne, discrète, jamais au premier plan */
.carte__macros {
  margin: 7px 0 0; font-size: .72rem; line-height: 1.5;
  color: var(--encre-doux); opacity: .85; font-variant-numeric: tabular-nums;
}

/* Choix des dîners : un bandeau SOUS le lien, jamais par-dessus.
   C'est ce qui garantit qu'un clic sur la case ne peut pas ouvrir la recette. */
.carte--jour { display: flex; flex-direction: column; }
.carte--jour .carte__lien { flex: 1; }
.carte__choix {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 12px 20px; border-top: 1px solid var(--bordure);
  background: var(--fond-alt); font-size: .84rem; font-weight: 600;
  color: var(--encre); transition: background .15s, color .15s;
}
.carte__choix:hover { background: var(--accent-clair); }
.carte__choix input {
  width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; margin: 0; flex: none;
}
.carte__choix-non { display: none; }
.carte__choix:has(input:not(:checked)) .carte__choix-oui { display: none; }
.carte__choix:has(input:not(:checked)) .carte__choix-non { display: inline; }

.carte--exclu { box-shadow: none; }
.carte--exclu .carte__visuel { filter: grayscale(1); opacity: .35; }
.carte--exclu .carte__texte { opacity: .45; }
.carte--exclu .carte__titre { text-decoration: line-through; }
.carte--exclu:hover { transform: none; }
.carte--exclu .carte__choix { color: var(--encre-doux); font-weight: 500; }

/* ---------- Fil d'Ariane ---------- */
.fil { font-size: .85rem; color: var(--encre-doux); margin: 26px 0 20px; }
.fil a { color: var(--encre-doux); }
.fil span[aria-hidden] { margin: 0 5px; opacity: .6; }

/* ---------- Page recette ---------- */
.recette { padding-bottom: 60px; }
.recette__entete { max-width: 46em; }
.recette__titre { font-size: clamp(1.9rem, 5.5vw, 2.8rem); letter-spacing: -.015em; }
.recette__chapo { font-size: 1.08rem; color: var(--encre-doux); }
.etiquettes { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 14px 0 0; }
.etiquettes li {
  background: var(--fond-alt); color: var(--encre-doux); border-radius: 999px;
  padding: 4px 12px; font-size: .78rem; font-weight: 500;
}
.recette__visuel {
  margin: 28px 0; border-radius: var(--rayon-l); overflow: hidden; aspect-ratio: 16 / 9;
  box-shadow: var(--ombre);
}
.recette__image { width: 100%; height: 100%; object-fit: cover; }
.recette__image--vide { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.recette__image--vide span {
  font-family: var(--police-titre); font-size: 5rem; color: rgba(255, 255, 255, .85);
  text-shadow: 0 3px 12px rgba(0, 0, 0, .18);
}

.reperes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--bordure); border: 1px solid var(--bordure);
  border-radius: var(--rayon); overflow: hidden; margin-bottom: 36px;
}
@media (min-width: 620px) { .reperes { grid-template-columns: repeat(4, 1fr); } }
.repere { background: var(--carte); padding: 16px 10px; text-align: center; }
.repere__valeur { display: block; font-weight: 700; font-size: 1.15rem; }
.repere__nom {
  display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--encre-doux); margin-top: 3px;
}

.recette__corps { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .recette__corps { grid-template-columns: 340px 1fr; gap: 52px; } }

.bloc-ingredients {
  background: var(--carte); border: 1px solid var(--bordure); border-radius: var(--rayon-l);
  padding: 26px 24px; box-shadow: var(--ombre);
}
@media (min-width: 900px) { .bloc-ingredients { position: sticky; top: 84px; } }
.bloc__entete h2 { margin-bottom: 2px; font-size: 1.35rem; }
.bloc__note { font-size: .85rem; color: var(--encre-doux); margin-bottom: 16px; }

/* ---------- Reglage du nombre de personnes ---------- */
.convives {
  display: inline-flex; align-items: center; gap: 4px; margin: 4px 0 16px;
  background: var(--fond-alt); border: 1px solid var(--bordure); border-radius: 999px; padding: 4px;
}
.convives__bouton {
  /* 44px au doigt : en dessous, on rate la cible sur telephone.
     Reduit a 34px des qu'on a de la place (souris = pointage precis). */
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--carte);
  color: var(--encre); font-size: 1.15rem; font-weight: 700; line-height: 1; cursor: pointer;
  box-shadow: var(--ombre); transition: background .15s;
}
@media (min-width: 720px) { .convives__bouton { width: 34px; height: 34px; } }
.convives__bouton:hover:not(:disabled) { background: var(--accent); color: #fff; }
.convives__bouton:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }
.convives__valeur { padding: 0 10px; font-size: .95rem; white-space: nowrap; }
.convives__valeur output { font-weight: 700; font-size: 1.05rem; }

/* ---------- Reglages de la liste de courses ---------- */
.reglages {
  background: var(--carte); border: 1px solid var(--bordure); border-radius: var(--rayon-l);
  padding: 20px 22px 22px; margin-bottom: 24px; box-shadow: var(--ombre);
}
.reglages__ligne + .reglages__ligne { margin-top: 20px; border-top: 1px solid var(--bordure); padding-top: 18px; }
.reglages__titre { font-size: 1rem; margin: 0 0 10px; font-family: var(--police); font-weight: 600; }
.dineurs { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 2px; }
.dineur {
  display: flex; align-items: baseline; gap: 10px; padding: 7px 4px; cursor: pointer;
  border-radius: 8px; transition: background .12s;
}
.dineur:hover { background: var(--fond-alt); }
.dineur input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; cursor: pointer; }
.dineur__jour { font-weight: 600; min-width: 5.2em; font-size: .9rem; }
.dineur__plat { color: var(--encre-doux); font-size: .9rem; }
.dineur input:not(:checked) ~ .dineur__jour,
.dineur input:not(:checked) ~ .dineur__plat { opacity: .45; text-decoration: line-through; }
.dineur--tous { font-weight: 600; background: var(--accent-clair); }
.dineur--tous:hover { background: var(--accent-clair); }
.courses__vide { text-align: center; color: var(--encre-doux); padding: 30px 0; }
.courses__jours {
  font-size: .72rem; color: var(--encre-doux); background: var(--fond-alt);
  border-radius: 999px; padding: 2px 9px; white-space: nowrap; letter-spacing: .02em;
}

.liste-cochable { list-style: none; padding: 0; margin: 0 0 20px; }
.liste-cochable li { border-bottom: 1px solid var(--bordure); }
.liste-cochable li:last-child { border-bottom: 0; }
.liste-cochable label {
  display: flex; align-items: flex-start; gap: 11px; padding: 11px 2px; cursor: pointer;
}
.liste-cochable input[type="checkbox"] {
  width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--accent); flex: none; cursor: pointer;
}
.liste-cochable input:checked + span { text-decoration: line-through; color: var(--encre-doux); opacity: .65; }
/* Lien-outil : une action de service (imprimer), pas un appel a l'action.
   Volontairement discret pour ne pas rivaliser avec le bouton principal ni
   avec le bloc d'inscription. */
.lien-outil {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 0; padding: 6px 0; margin: 0;
  font: inherit; font-size: .88rem; color: var(--encre-doux);
  cursor: pointer; text-decoration: underline;
  text-decoration-color: var(--bordure); text-underline-offset: 4px;
}
.lien-outil::before {
  content: ""; width: 15px; height: 15px; flex: none; opacity: .75;
  background: currentColor;
  -webkit-mask: var(--icone-imprimante) center / contain no-repeat;
  mask: var(--icone-imprimante) center / contain no-repeat;
}
.lien-outil:hover { color: var(--accent); text-decoration-color: var(--accent); }
.outils-page { margin: 22px 0 0; text-align: center; }


.bloc-etapes h2 { font-size: 1.5rem; margin-bottom: 18px; }
.etapes { list-style: none; counter-reset: etape; padding: 0; margin: 0; }
.etapes li {
  counter-increment: etape; position: relative; padding: 0 0 22px 52px; margin: 0;
}
.etapes li::before {
  content: counter(etape); position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent-clair);
  color: var(--accent-fonce); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.etapes li:not(:last-child)::after {
  content: ""; position: absolute; left: 17px; top: 38px; bottom: 6px;
  width: 1.5px; background: var(--bordure);
}

.astuce {
  background: var(--accent-clair); border-radius: var(--rayon); padding: 20px 22px;
  margin-top: 8px; border-left: 4px solid var(--accent);
}
.astuce h3 { font-size: 1rem; margin-bottom: 6px; color: var(--accent-fonce); }
.astuce p { margin: 0; font-size: .95rem; }

/* ---------- Nutrition ---------- */
.nutrition, .recap {
  margin-top: 48px; padding: 28px 26px; background: var(--carte);
  border: 1px solid var(--bordure); border-radius: var(--rayon-l);
}
.nutrition h2, .recap h2 { font-size: 1.35rem; margin-bottom: 3px; }
.nutrition__note { font-size: .87rem; color: var(--encre-doux); margin-bottom: 20px; }
.nutrition__grille {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 18px;
}
@media (min-width: 640px) { .nutrition__grille { grid-template-columns: repeat(5, 1fr); } }
.macro {
  background: var(--fond-alt); border-radius: var(--rayon); padding: 15px 10px; text-align: center;
}
.macro--energie { background: var(--accent-clair); }
.macro__valeur { display: block; font-weight: 700; font-size: 1.28rem; }
.macro--energie .macro__valeur { color: var(--accent-fonce); }
.macro__nom {
  display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--encre-doux); margin-top: 3px;
}
.nutrition__source { font-size: .8rem; color: var(--encre-doux); margin: 0; }

.retour { margin-top: 36px; }
.retour a { font-weight: 600; text-decoration: none; }
.retour a:hover { text-decoration: underline; }

/* ---------- Page menu ---------- */
.menu { padding-bottom: 20px; }
.menu__entete { text-align: center; max-width: 44em; margin: 0 auto 40px; }
.menu__oeil {
  text-transform: uppercase; letter-spacing: .09em; font-size: .74rem; font-weight: 700;
  color: var(--accent); margin-bottom: 10px;
}
.menu__titre { font-size: clamp(1.9rem, 5.5vw, 2.9rem); letter-spacing: -.015em; }
.menu__chapo { font-size: 1.06rem; color: var(--encre-doux); }
.menu__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.semaine {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media (min-width: 560px) { .semaine { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .semaine { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Liste de courses ---------- */
.courses { padding-bottom: 60px; }
.courses__entete { margin-bottom: 34px; }
.courses__entete h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
.courses__chapo { color: var(--encre-doux); }
.courses__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 14px; }
.courses__astuce { font-size: .88rem; color: var(--encre-doux); margin: 0; }
.rayon {
  background: var(--carte); border: 1px solid var(--bordure); border-radius: var(--rayon-l);
  padding: 8px 22px 12px; margin-bottom: 18px; box-shadow: var(--ombre);
}
.rayon__titre {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--accent);
  padding: 16px 0 6px; margin: 0; border-bottom: 2px solid var(--accent-clair);
}
.liste-cochable--courses label { justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.liste-cochable--courses .courses__nom { flex: 1; min-width: 8em; }
.liste-cochable--courses .courses__quantite {
  color: var(--encre-doux); font-variant-numeric: tabular-nums; font-size: .93rem;
  white-space: nowrap; font-weight: 600;
}
.liste-cochable--courses input:checked ~ .courses__nom,
.liste-cochable--courses input:checked ~ .courses__quantite {
  text-decoration: line-through; opacity: .55;
}
.courses__pied { font-size: .87rem; color: var(--encre-doux); margin-top: 26px; }

/* ---------- Bloc email ---------- */
.bloc-email { background: var(--encre); color: #f7f2ec; padding: 54px 0; }
.bloc-email__interieur { text-align: center; }
.bloc-email__titre { color: #fff; font-size: clamp(1.5rem, 4.5vw, 2rem); }
.bloc-email__texte { color: #cdc2b6; max-width: 34em; margin: 0 auto 26px; }
.formulaire { max-width: 30em; margin: 0 auto; }
.formulaire__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.formulaire__ligne { display: flex; gap: 10px; flex-direction: column; }
@media (min-width: 520px) { .formulaire__ligne { flex-direction: row; } }
.formulaire__champ {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: 1.5px solid #4a423b;
  background: #35302a; color: #fff; font: inherit; font-size: 1rem; min-width: 0;
}
.formulaire__champ::placeholder { color: #8d8177; }
.formulaire__champ:focus { border-color: var(--accent); outline: none; background: #3d372f; }
.formulaire__mention { font-size: .8rem; color: #9d9186; margin: 16px 0 0; }
.formulaire__mention a { color: #cdc2b6; }
.formulaire__mention a:hover { color: #fff; }
.cadre-invisible { display: none; width: 0; height: 0; border: 0; }
.inscription-merci { max-width: 34em; margin: 0 auto; }
.inscription-merci:focus { outline: none; }
.formulaire__hors-ligne {
  font-size: .82rem; color: #ffd9d0; background: rgba(200, 69, 47, .22);
  border-radius: var(--rayon); padding: 9px 14px; margin: 14px 0 0; display: inline-block;
}

/* ---------- Comment ca marche ---------- */
.etapes-site {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 26px; grid-template-columns: 1fr;
}
@media (min-width: 760px) { .etapes-site { grid-template-columns: repeat(3, 1fr); } }
.etapes-site li { text-align: center; }
.etapes-site h3 { font-size: 1.13rem; margin: 12px 0 6px; }
.etapes-site p { color: var(--encre-doux); font-size: .95rem; margin: 0; }
.etapes-site__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--carte);
  border: 1.5px solid var(--bordure); font-family: var(--police-titre);
  font-size: 1.3rem; font-weight: 700; color: var(--accent);
}

/* ---------- Pages de texte ---------- */
.page-texte { padding-bottom: 70px; }
.page-texte h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: .4em; }
.page-texte h2 { font-size: 1.3rem; margin: 2em 0 .5em; }
.page-texte__date { font-size: .85rem; color: var(--encre-doux); }
.page-texte__resume {
  background: var(--accent-clair); border-left: 4px solid var(--accent);
  border-radius: var(--rayon); padding: 18px 22px; margin: 24px 0 32px;
}
.page-texte ul { padding-left: 22px; }
.page-texte li { margin-bottom: .5em; }

/* ---------- Pied de page ---------- */
.pied {
  background: var(--fond-alt); border-top: 1px solid var(--bordure);
  padding: 44px 0 40px; text-align: center; margin-top: 20px;
}
.pied__marque { font-family: var(--police-titre); font-size: 1.15rem; font-weight: 600; margin-bottom: 2px; }
.pied__baseline { color: var(--encre-doux); font-size: .95rem; margin-bottom: 20px; }
.pied__liens { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-bottom: 22px; }
.pied__liens a { color: var(--encre-doux); text-decoration: none; font-size: .92rem; }
.pied__liens a:hover { color: var(--accent); text-decoration: underline; }
.pied__nutrition { font-size: .78rem; color: var(--encre-doux); max-width: 46em; margin: 0 auto; }
