:root {
  --accent:      #2A5C45;
  --accent-dark: #1e4433;
  --warm:        #ea580c;
  --bg-hero:     #f8fafc;
  --r-bg:        #F5F4EF;
  --r-surface:   #FFFFFF;
  --r-text:      #1A1916;
  --r-muted:     #706E67;
  --r-faint:     #DAD8D0;
  --r-hover:     #F0F0E8;
}

/* ── Navbar ── */
.navbar-brand { font-weight: 700; letter-spacing: .03em; }

/* ── Accueil hero ── */
.hero {
  background: var(--bg-hero);
  border-bottom: 1px solid #e2e8f0;
  padding: 3.5rem 0 2.5rem;
}
.hero h1 { font-size: 2.2rem; font-weight: 700; }
.hero .lead { color: #475569; }

/* ── Cards accueil ── */
.section-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.13);
  color: inherit;
}
.section-card .card-icon { font-size: 2.4rem; margin-bottom: .75rem; }

/* ── Accordéon élèves ── */
.accordion-button:not(.collapsed) { background: #eff6ff; color: #2563eb; }
.accordion-button:focus { box-shadow: none; }
.niveau-badge { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ── Espace Mathilde ── */
.mathilde-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
}

.m-app { background: #fdf7fb; min-height: 100vh; padding-bottom: 2rem; }
.m-topbar {
  background: #fff;
  border-bottom: 1px solid #f0d9ea;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.m-topbar .m-brand { font-weight: 700; color: #c026d3; text-decoration: none; margin-right: auto; }
.m-site-select { max-width: 160px; }
.m-nav-links {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  padding: .5rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f0d9ea;
}
.m-nav-links a {
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 600;
  color: #706E67;
  text-decoration: none;
  padding: .35rem .75rem;
  border-radius: 20px;
}
.m-nav-links a.active, .m-nav-links a:hover { background: #fce7f3; color: #c026d3; }
.m-main { max-width: 720px; margin: 0 auto; padding: 1rem; }

.m-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: 1rem;
  margin-bottom: .75rem;
}

.m-stepper { display: flex; align-items: center; gap: .5rem; }
.m-stepper button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #f0d9ea;
  background: #fdf4ff;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c026d3;
  line-height: 1;
}
.m-stepper input {
  width: 64px;
  text-align: center;
  border: 1px solid #f0d9ea;
  border-radius: 8px;
  padding: .4rem;
  font-weight: 600;
}

.m-badge { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.m-badge.rouge { background: #dc2626; }
.m-badge.orange { background: #ea580c; }
.m-badge.vert { background: #16a34a; }

/* Pastille rouge cliquable : article/menu à vérifier par Mathilde. Cliquer = valider. */
.m-verif-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: none; background: #dc2626; flex-shrink: 0; cursor: pointer;
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.m-verif-dot:hover, .m-verif-dot:active { background: #b91c1c; }
/* Même pastille, état vérifié : coche verte cliquable pour renvoyer à « à vérifier ». */
.m-verif-dot.ok {
  background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.15);
  color: #fff; font-size: .72rem; font-weight: 700; line-height: 18px; text-align: center;
}
.m-verif-dot.ok:hover, .m-verif-dot.ok:active { background: #15803d; }
.m-verif-ok { color: #16a34a; font-weight: 600; }

.m-verif-compteur {
  font-size: .85rem;
  color: #a0568e;
  margin-bottom: .75rem;
}

/* Cases à cocher des fournisseurs possibles (fiche article). */
.m-four-checks { display: flex; flex-wrap: wrap; gap: .35rem .6rem; }
.m-four-check {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .9rem; padding: .15rem .5rem;
  border: 1px solid #f0d9ea; border-radius: 999px; cursor: pointer;
}
.m-four-check.principal { background: #fdf4ff; border-color: #e9a8d6; color: #a0568e; font-weight: 600; }
.m-four-check input { margin: 0; }

/* Sélecteur de fournisseur sur une ligne de commande. */
.m-four-ligne { max-width: 220px; }

/* Grille article × fournisseurs. */
.m-grille-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.06); background: #fff; }
.m-grille { border-collapse: collapse; width: 100%; font-size: .9rem; }
.m-grille th, .m-grille td { border-bottom: 1px solid #f2e6ef; padding: .4rem .5rem; }
.m-grille thead th {
  position: sticky; top: 0; z-index: 3;
  background: #fdf4ff; color: #a0568e; vertical-align: bottom;
}
.m-grille .m-four-nom { font-weight: 700; white-space: nowrap; }
.m-grille .m-col-actions { display: flex; gap: .2rem; justify-content: center; margin-top: .15rem; }
.m-grille .m-col-actions button {
  border: 1px solid #e9a8d6; background: #fff; color: #a0568e;
  width: 22px; height: 22px; border-radius: 6px; line-height: 1; font-weight: 700; padding: 0;
}
.m-grille .m-col-actions button:hover { background: #fce7f3; }
.m-col-nom {
  position: sticky; left: 0; z-index: 2; background: #fff;
  min-width: 11rem; max-width: 16rem; font-weight: 500;
}
.m-grille thead .m-col-nom { z-index: 4; background: #fdf4ff; }
.m-cat-row td {
  position: sticky; left: 0;
  background: #faf0f7; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #a0568e;
}
.m-cell { display: inline-flex; align-items: center; gap: .2rem; margin: 0; cursor: pointer; }
.m-cell input { width: 18px; height: 18px; cursor: pointer; }
.m-star { color: #e0a800; font-size: .85rem; }

/* Barre de filtres (page Articles) : sélecteurs qui s'enroulent sur mobile. */
.m-filtres {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-bottom: .5rem;
}
.m-filtres .form-select { width: auto; min-width: 8.5rem; flex: 0 1 auto; }
@media (max-width: 575px) {
  .m-filtres .form-select { flex: 1 1 calc(50% - .5rem); min-width: 0; }
  .m-filtres #btn-export { margin-left: 0 !important; }
}

.m-alert-banner {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.m-menu-btn {
  border: none;
  background: none;
  color: #a0568e;
  font-size: 1.3rem;
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.m-menu-btn:hover, .m-menu-btn:active { background: #fce7f3; }

.m-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 100;
  align-items: flex-end;
  justify-content: center;
}
.m-modal-backdrop.open { display: flex; }
.m-modal {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 1.25rem;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
}
@media (min-width: 576px) {
  .m-modal-backdrop { align-items: center; }
  .m-modal { border-radius: 16px; }
}

.m-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a0568e;
  margin: 1.25rem 0 .5rem;
}

/* ── Toast (confirmation brève) ── */
.m-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: .5rem .9rem;
  border-radius: .5rem;
  font-size: .85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  z-index: 2000;
}

/* ── Badge « à compléter » (menu avec ingrédients non liés) ── */
.m-badge-completer {
  font-size: .68rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  border-radius: 1rem;
  padding: .1rem .5rem;
  white-space: nowrap;
}

/* ── Vue semaine (planning) ── */
.m-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
  gap: .5rem;
}
.m-week-nav .m-week-label { font-weight: 700; text-align: center; flex-grow: 1; }
.m-week-nav button {
  border: 1px solid #f0d9ea;
  background: #fff;
  border-radius: 8px;
  padding: .4rem .7rem;
  color: #c026d3;
  font-weight: 600;
}
.m-week {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.m-week-day {
  scroll-snap-align: start;
  flex: 0 0 168px;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: .65rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
/* Mode 5 jours (lundi-vendredi) : colonnes flexibles qui remplissent exactement
   la largeur disponible, pour ne jamais déclencher de scrollbar horizontale. */
.m-week.jours-5 { overflow-x: hidden; }
.m-week.jours-5 .m-week-day { flex: 1 1 0; }
.m-week-day.today { outline: 2px solid #c026d3; }
.m-week-day-header {
  font-size: .78rem;
  font-weight: 700;
  color: #a0568e;
  text-transform: capitalize;
  border-bottom: 1px solid #f0d9ea;
  padding-bottom: .35rem;
  margin-bottom: .1rem;
}
.m-week-entry {
  background: #fdf4ff;
  border-radius: 8px;
  padding: .4rem .5rem;
  font-size: .8rem;
  position: relative;
}
.m-week-entry .m-week-entry-remove {
  position: absolute;
  top: .1rem;
  right: .3rem;
  border: none;
  background: none;
  color: #a0568e;
  font-size: .9rem;
  line-height: 1;
}
.m-week-add-btn {
  border: 1px dashed #f0aede;
  background: none;
  border-radius: 8px;
  padding: .4rem;
  color: #c026d3;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Lignes-repas dans une case jour (4 repas/jour) ── */
.m-repas-row {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  padding: .4rem 0;
  border-bottom: 1px dashed #f0d9ea;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
}
.m-repas-row:last-child { border-bottom: none; }
.m-repas-row:active, .m-repas-row:hover { background: #fdf4ff; border-radius: 8px; }
.m-repas-icon { font-size: .95rem; line-height: 1.3; flex-shrink: 0; }
.m-repas-body { min-width: 0; flex-grow: 1; overflow: hidden; }
.m-repas-label {
  font-size: .68rem;
  font-weight: 700;
  color: #a0568e;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-repas-resume {
  font-size: .76rem;
  color: #3a2e33;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.m-repas-resume .text-muted { font-size: .74rem; }
/* un plat par ligne, tronqué individuellement si trop long (le menu complet reste visible) */
.m-plat-ligne {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* plat non relié à une recette : visuel d'erreur */
.m-plat-err { color: #dc2626; font-weight: 600; }
.m-planning-alerte {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-size: .8rem;
  margin-bottom: .6rem;
}
.m-course-hint { display: none; color: #dc2626; font-size: .72rem; margin-top: .25rem; }
.m-course-err .m-course-hint { display: block; }

/* Badge quantité d'un ingrédient dans une recette (proéminent, cliquable pour éditer) */
.m-qte-badge {
  border: none;
  background: #ede7f3;
  color: #6b3f86;
  font-weight: 700;
  font-size: .84rem;
  line-height: 1.2;
  border-radius: 1rem;
  padding: .22rem .7rem;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.m-qte-badge:hover { background: #e0d5ec; }
.m-qte-edit {
  width: 5.5rem;
  border: 1px solid #b596cf;
  background: #fff;
  color: #4a2d5e;
  font-weight: 700;
  font-size: .84rem;
  line-height: 1.2;
  border-radius: 1rem;
  padding: .22rem .7rem;
  flex-shrink: 0;
  align-self: center;
  text-align: center;
}
.m-qte-edit:focus { outline: none; border-color: #6b3f86; box-shadow: 0 0 0 .15rem rgba(107,63,134,.18); }

/* ── Éditeur d'un repas (modale) ── */
.m-course-row { margin-bottom: .7rem; }
.m-course-row label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #a0568e;
  margin-bottom: .2rem;
  display: block;
}

/* ── Résumé semaine (tableau de bord) ── */
.m-week-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid #f0d9ea;
  font-size: .88rem;
}
.m-week-summary-row:last-child { border-bottom: none; }

.m-jour-bloc {
  padding: .55rem 0;
  border-bottom: 1px solid #f0d9ea;
}
.m-jour-bloc:last-child { border-bottom: none; }
.m-jour-titre {
  font-weight: 700;
  font-size: .82rem;
  text-transform: capitalize;
  margin-bottom: .25rem;
}
.m-jour-repas {
  display: flex;
  gap: .4rem;
  font-size: .8rem;
  line-height: 1.35;
  padding: .1rem 0;
}
.m-jour-repas-icon { flex-shrink: 0; }
.m-jour-repas-nom { color: #3a2e33; }
.m-jour-vide { color: #9a8a94; font-size: .8rem; font-style: italic; }
.m-cta-commande {
  display: block;
  text-align: center;
  background: #c026d3;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: .9rem;
  text-decoration: none;
  margin: 1rem 0;
}
.m-cta-commande:hover { background: #a821b3; color: #fff; }

/* ── Commande : provenance article ↔ recettes ── */
.m-recap-entete h4 { color: #7a1785; }
.m-ligne-art { padding: .35rem 0; border-bottom: 1px dashed #eadff0; }
.m-ligne-art:last-child { border-bottom: 0; }
.m-prov { margin: .2rem 0 0 0; }
.m-prov > summary { cursor: pointer; font-size: .82rem; color: #a821b3; list-style: none; }
.m-prov > summary::-webkit-details-marker { display: none; }
.m-prov > summary::before { content: "▸ "; }
.m-prov[open] > summary::before { content: "▾ "; }
.m-prov-list { margin: .25rem 0 .1rem 1.1rem; padding: 0; font-size: .84rem; }
.m-prov-list li { list-style: none; margin-bottom: .1rem; }
.m-prov-base { font-size: .8rem; color: #94a3b8; margin-top: .15rem; }
.m-besoin-exact { font-size: .78rem; color: #b06a00; margin-top: .1rem; }
.m-cond {
  display: inline-block; margin-left: .4rem; padding: .05rem .45rem;
  font-size: .78rem; line-height: 1.35; background: #fff4e0; color: #9a5b00;
  border: 1px solid #f0d9b0; border-radius: .6rem; white-space: normal;
}
.m-prov-line { padding: .2rem 0; border-bottom: 1px dashed #eadff0; }
.m-prov-line:last-child { border-bottom: 0; }

/* ── Reprise de données : incohérence + proposition à valider ── */
.m-reprise {
  background: #fff4e0; border: 1px solid #f0c98a; border-left: 4px solid #d98a2b;
  border-radius: .5rem; padding: .55rem .7rem; color: #7a4a00;
}
.m-curation { border-left: 4px solid #d98a2b; }
.m-curation a { color: #9a5b00; font-weight: 600; text-decoration: none; }
.m-curation a:hover { text-decoration: underline; }
.m-badge-valider {
  display: inline-block; font-size: .72rem; font-weight: 600; vertical-align: middle;
  background: #ffe3b3; color: #8a4b00; border: 1px solid #f0c98a;
  border-radius: .5rem; padding: 0 .4rem; margin-left: .3rem;
}

/* ── Commande : brouillon, contrôles avant validation ── */
.m-cmd-stock { font-size: .78rem; color: #64748b; }
.m-cmd-avalider {
  display: inline-block; margin-left: .35rem; font-size: .76rem; font-weight: 600;
  color: #922b21; text-decoration: none;
}
.m-cmd-avalider:hover { text-decoration: underline; }
.m-cmd-avalider-badge {
  font-size: .72rem; font-weight: 600; color: #922b21; background: #fdecea;
  border: 1px solid #f5b7b1; border-radius: .5rem; padding: 0 .4rem;
}
.m-stock-verif {
  cursor: pointer; background: #f6f2f7; border-radius: .5rem; padding: .3rem .6rem;
  font-size: .9rem; font-weight: 600;
}

/* ── Commande : ingrédients non commandés (non liés) ── */
.m-manques-banner {
  background: #fdecea; border: 1px solid #f5b7b1; border-left: 4px solid #c0392b;
  border-radius: .5rem; padding: .55rem .7rem; margin-bottom: .8rem; color: #922b21;
}
.m-card-manque { border-left: 3px solid #c0392b; }
.m-manque-recette {
  margin-top: .4rem; padding: .35rem .5rem; background: #fdecea; border-radius: .4rem;
  color: #922b21; font-size: .85rem;
}
.m-manque-recette a { color: #922b21; font-weight: 600; text-decoration: none; }
.m-manque-recette a:hover { text-decoration: underline; }

/* ── Print ── */
@media print { nav, footer, .m-topbar, .m-nav-links, .m-no-print { display: none; } }
@media print {
  .m-prov[open] > summary { display: none; }        /* garder le détail, cacher le chevron */
  .m-prov-list { margin-left: 1.1rem; }
  .m-card { break-inside: avoid; }
}

/* ── Footer ── */
footer { color: #94a3b8; font-size: .82rem; }

/* ════════════════════════════════════════
   RECETTES — design éditorial
   ════════════════════════════════════════ */

body.recettes-page { background: var(--r-bg); }

/* Hero titre */
.r-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 1.25rem;
  border-bottom: 1px solid var(--r-faint);
}
.r-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--r-text);
}
.r-subtitle { margin-top: .5rem; color: var(--r-muted); font-size: .9rem; }

/* Filtres */
.r-filters {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem 2rem 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.r-pill {
  background: none;
  border: 1px solid var(--r-faint);
  color: var(--r-muted);
  border-radius: 20px;
  padding: .28rem .85rem;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .03em;
  transition: all .15s;
}
.r-pill:hover { border-color: var(--accent); color: var(--accent); }
.r-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Liste */
.r-list {
  max-width: 800px;
  margin: 1.25rem auto 0;
  padding: 0 2rem 3rem;
}
.r-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .8rem .75rem;
  border-bottom: 1px solid var(--r-faint);
  text-decoration: none;
  color: var(--r-text);
  border-radius: 8px;
  margin: 0 -.75rem;
  transition: background .1s;
}
.r-row:hover { background: var(--r-hover); color: var(--r-text); }
.r-row:hover .r-arrow { opacity: 1; transform: translateX(3px); }

/* Miniature */
.r-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.r-thumb img, .r-thumb-placeholder {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}

.r-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: -.01em;
  margin-bottom: .25rem;
  line-height: 1.2;
}
.r-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--r-muted);
}
.r-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.r-right { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; flex-shrink: 0; }
.r-time { font-size: .72rem; font-weight: 600; color: var(--r-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.r-arrow { font-size: 1rem; color: var(--accent); opacity: .35; transition: opacity .15s, transform .15s; }
.r-empty { padding: 3rem 0; text-align: center; color: var(--r-muted); font-size: .9rem; }

/* ── Fiche recette ── */
.r-fiche-hero {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.r-fiche-hero img,
.r-fiche-photo-placeholder {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.r-fiche-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 2rem;
}
.r-fiche-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .35rem;
}
.r-fiche-titre {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: normal;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}
.r-fiche-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.75rem 2rem 3rem;
}
.r-back {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  color: var(--r-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.r-back:hover { color: var(--accent); }
.r-fiche-meta {
  display: flex;
  gap: 1.5rem;
  font-size: .82rem;
  color: var(--r-muted);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--r-faint);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.r-fiche-desc { font-size: 1rem; color: var(--r-muted); margin-bottom: 1.5rem; font-style: italic; }
.r-fiche-cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
@media (max-width: 600px) { .r-fiche-cols { grid-template-columns: 1fr; } }

.r-fiche-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--r-muted);
  margin-bottom: .75rem;
}
.r-ing-list { list-style: none; font-size: .9rem; line-height: 1.85; padding: 0; }
.r-ing-list li::before { content: '—'; color: var(--accent); margin-right: .5rem; font-weight: bold; }

.r-step-list { list-style: none; counter-reset: steps; font-size: .9rem; padding: 0; }
.r-step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.r-step-list li::before {
  content: counter(steps);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
  padding-top: .05rem;
}
