/* =====================================================================
   Guide Compléments — feuille de style
   Palette : vert forêt profond, sauge, crème, accent terracotta.
   ===================================================================== */
:root {
  --ink: #1b2521;
  --ink-soft: #4d5a54;
  --muted: #76827c;
  --forest: #1f3b36;
  --forest-2: #2c524b;
  --sage: #e7eee8;
  --sage-2: #d3e0d6;
  --cream: #faf7f1;
  --paper: #ffffff;
  --accent: #c8773f;
  --accent-dark: #a65e2c;
  --gold: #e0a93a;
  --line: #e3e0d8;
  --good: #2f7a57;
  --bad: #b54a3a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 35, 30, .05), 0 8px 24px rgba(20, 35, 30, .07);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img, svg { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: var(--forest-2); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; color: var(--forest); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }
.section { padding: 72px 0; }
.section-sage { background: var(--sage); }
.section-forest { background: var(--forest); color: #e8efe9; }
.section-forest h2, .section-forest h3 { color: #fff; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-forest .section-head p { color: #c7d6cc; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.section-forest .eyebrow { color: var(--gold); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--forest); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }

/* --- Topbar & header ------------------------------------------------ */
.topbar { background: var(--forest); color: #cfdcd3; font-size: .82rem; text-align: center; padding: 7px 16px; }
.topbar a { color: #fff; }
.site-header { background: rgba(250, 247, 241, .94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--forest); }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--forest); color: var(--gold); display: grid; place-items: center; font: 700 1.4rem/1 var(--serif); }
.logo-text { font: 700 1.25rem/1 var(--serif); letter-spacing: -.01em; }
.logo-text em { font-style: italic; font-weight: 400; color: var(--accent-dark); margin-left: 2px; }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: var(--gold); color: var(--forest); }
.logo-light .logo-text em { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { text-decoration: none; color: var(--ink); font-size: .95rem; font-weight: 500; padding: 8px 12px; border-radius: 999px; }
.main-nav a:hover { background: var(--sage); color: var(--forest); }
.main-nav a[aria-current="page"] { color: var(--forest); background: var(--sage); }
.main-nav .nav-cta { background: var(--accent); color: #fff; margin-left: 6px; }
.main-nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); margin: 5px 0; transition: .2s; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); padding: 10px 16px 18px; display: none; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav .nav-cta { margin: 6px 0 0; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Boutons, pastilles, étoiles --------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background .15s, color .15s, transform .15s; font-family: inherit; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-2); color: #fff; }
.btn-ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: #fff; }
.btn-light { background: #fff; color: var(--forest); }
.btn-sm { padding: 8px 16px; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.pill { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; color: var(--pill, var(--forest)); background: color-mix(in srgb, var(--pill, var(--forest)) 12%, white); }

.stars { position: relative; display: inline-block; width: 90px; height: 17px; vertical-align: -2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 17'%3E%3Cpath d='M9 1l2.4 5 5.4.6-4 3.7 1.1 5.4L9 13l-4.9 2.7 1.1-5.4-4-3.7L6.6 6z' fill='%23ddd6c8'/%3E%3C/svg%3E") repeat-x 0 0 / 18px 17px; }
.stars-fill { position: absolute; inset: 0 auto 0 0; overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 17'%3E%3Cpath d='M9 1l2.4 5 5.4.6-4 3.7 1.1 5.4L9 13l-4.9 2.7 1.1-5.4-4-3.7L6.6 6z' fill='%23e0a93a'/%3E%3C/svg%3E") repeat-x 0 0 / 18px 17px; }
.stars.lg { width: 130px; height: 24px; background-size: 26px 24px; }
.stars.lg .stars-fill { background-size: 26px 24px; }

/* --- Hero accueil -------------------------------------------------- */
.hero { padding: 64px 0 72px; background:
  radial-gradient(900px 400px at 85% 10%, rgba(224, 169, 58, .16), transparent 60%),
  radial-gradient(700px 500px at 0% 100%, rgba(63, 138, 140, .12), transparent 60%), var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: .9rem; color: var(--ink-soft); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--good); }
.hero-card { background: var(--paper); border-radius: 22px; box-shadow: var(--shadow); padding: 26px; border: 1px solid var(--line); }
.hero-card h2 { font-size: 1.1rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.podium { list-style: none; margin: 0; padding: 0; }
.podium li { display: grid; grid-template-columns: 34px 64px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.podium li:first-child { border-top: 0; }
.podium .rank { font: 700 1.4rem/1 var(--serif); color: var(--accent); }
.podium .product-visual { width: 64px; height: 64px; }
.podium a { font-weight: 600; text-decoration: none; color: var(--ink); line-height: 1.3; }
.podium a:hover { color: var(--accent-dark); }
.podium small { display: block; color: var(--muted); font-size: .82rem; }
.podium .score { font: 700 1.3rem/1 var(--serif); color: var(--forest); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

/* --- Piliers / objectifs -------------------------------------------- */
.goal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.goal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-decoration: none; color: var(--ink); transition: transform .15s, box-shadow .15s; }
.goal:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.goal-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 12px; background: var(--sage); }
.goal h3 { font-size: 1.1rem; margin-bottom: 4px; }
.goal p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* --- Cartes produits ------------------------------------------------ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.product-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card[hidden] { display: none; }
.product-card-media { display: grid; place-items: center; background: linear-gradient(160deg, var(--sage), #f4f1ea); padding: 20px; }
.product-card-media .product-visual, .product-card-media .product-photo { width: 150px; height: 150px; object-fit: contain; }
.product-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-body h3 { margin: 4px 0 0; font-size: 1.18rem; }
.product-card-body h3 a { text-decoration: none; color: var(--forest); }
.product-card-score { margin: 0; font-size: .95rem; }
.product-card-summary { font-size: .93rem; color: var(--ink-soft); margin: 0; flex: 1; }
.product-card-price { font-size: .9rem; color: var(--muted); margin: 0; }
.product-card-price strong { color: var(--ink); font-size: 1.05rem; }
.product-card .btn { align-self: flex-start; margin-top: 6px; }

/* --- Filtres & comparateur ----------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-btn { border: 1px solid var(--line); background: var(--paper); padding: 8px 16px; border-radius: 999px; font: 500 .92rem var(--sans); cursor: pointer; color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 720px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { background: var(--sage); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--forest); white-space: nowrap; }
.compare-table th button { all: unset; cursor: pointer; display: inline-flex; gap: 6px; align-items: center; }
.compare-table th button::after { content: "↕"; opacity: .45; }
.compare-table th[aria-sort="ascending"] button::after { content: "↑"; opacity: 1; }
.compare-table th[aria-sort="descending"] button::after { content: "↓"; opacity: 1; }
.compare-table tbody tr:hover { background: #fbfaf6; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table a { font-weight: 600; text-decoration: none; }
.score-badge { display: inline-block; min-width: 46px; text-align: center; padding: 4px 8px; border-radius: 8px; background: var(--forest); color: #fff; font-weight: 700; }

/* --- Page avis produit --------------------------------------------- */
.breadcrumb { font-size: .86rem; color: var(--muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--muted); }
.review-hero { padding: 26px 0 48px; }
.review-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: start; }
.review-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.review-summary { font-size: 1.12rem; color: var(--ink-soft); }
.scorecard { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.scorecard-visual { display: grid; place-items: center; background: linear-gradient(160deg, var(--sage), #f4f1ea); border-radius: 14px; padding: 14px; margin-bottom: 18px; }
.scorecard-visual .product-visual, .scorecard-visual .product-photo { width: 150px; height: 150px; object-fit: contain; }
.scorecard-total { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.scorecard-total strong { font: 700 2.8rem/1 var(--serif); color: var(--forest); }
.scorecard-total span { color: var(--muted); }
.criteria { list-style: none; padding: 0; margin: 16px 0 20px; }
.criteria li { font-size: .88rem; margin-bottom: 9px; }
.criteria .row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.bar { height: 6px; background: var(--sage); border-radius: 99px; overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--forest-2), var(--good)); border-radius: 99px; }
.scorecard .btn { width: 100%; }
.scorecard-price { text-align: center; font-size: .86rem; color: var(--muted); margin: 10px 0 0; }
.scorecard-price strong { color: var(--ink); }
@media (max-width: 960px) { .review-hero-grid { grid-template-columns: minmax(0, 1fr); } .scorecard { position: static; } }

.quick-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin: 26px 0 0; }
.fact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.fact small { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.fact strong { font-size: 1.02rem; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 36px 0; }
.pros-cons > div { border-radius: var(--radius); padding: 22px 24px; }
.pros { background: #eaf4ee; }
.cons { background: #f8ece8; }
.pros h2, .cons h2 { font-size: 1.15rem; font-family: var(--sans); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { position: relative; padding-left: 28px; margin-bottom: 9px; font-size: .96rem; }
.pros li::before, .cons li::before { position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 700; color: #fff; }
.pros li::before { content: "✓"; background: var(--good); }
.cons li::before { content: "–"; background: var(--bad); }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

.verdict { background: var(--forest); color: #e8efe9; border-radius: 20px; padding: 30px 32px; margin: 40px 0; position: relative; overflow: hidden; }
.verdict::after { content: "+"; position: absolute; right: -10px; bottom: -70px; font: 700 15rem/1 var(--serif); color: rgba(255, 255, 255, .05); }
.verdict h2 { color: #fff; }
.verdict .btn { margin-top: 8px; }
.verdict-score { font: 700 1rem var(--sans); color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }

.who { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.who > div { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.who h3 { font-family: var(--sans); font-size: 1rem; }
.who ul { margin: 0; padding-left: 20px; font-size: .95rem; }
@media (max-width: 700px) { .who { grid-template-columns: 1fr; } }

/* --- Contenu éditorial (avis + articles) --------------------------- */
.prose { font-size: 1.05rem; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose .lead { font-size: 1.2rem; color: var(--ink-soft); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0 1.6em; font-size: .95rem; background: var(--paper); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.prose th, .prose td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: var(--sage); color: var(--forest); font-size: .85rem; }
.prose tr:last-child td { border-bottom: 0; }
.prose blockquote { margin: 1.4em 0; padding: 14px 22px; border-left: 4px solid var(--accent); background: var(--paper); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
@media (max-width: 640px) { .prose table { display: block; overflow-x: auto; white-space: nowrap; } }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; padding: 20px 0 60px; }
.article-side { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 18px; }
.side-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; font-size: .93rem; }
.side-box h2 { font-size: 1.05rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.side-box ol { padding-left: 18px; margin: 0; }
.side-box li { margin-bottom: 6px; }
.side-box a { text-decoration: none; }
.side-cta { background: var(--forest); color: #e8efe9; border: 0; }
.side-cta h2 { color: var(--gold); }
@media (max-width: 960px) { .article-layout { grid-template-columns: 1fr; } .article-side { position: static; } }

.article-header { padding: 26px 0 10px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.author { display: inline-flex; align-items: center; gap: 8px; }
.author-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--forest); color: var(--gold); display: grid; place-items: center; font: 700 .9rem var(--serif); }

/* --- Blog ---------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); transition: box-shadow .2s, transform .2s; position: relative; overflow: hidden; }
.post-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--pill, var(--forest)); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.post-card h3 { font-size: 1.25rem; margin: 0; }
.post-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }
.post-card small { color: var(--muted); }
.post-card[hidden] { display: none; }

/* --- Encadrés ---------------------------------------------------- */
.aff-box { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: linear-gradient(135deg, #fff, #fbf3ea); border: 1px solid #efd9c4; border-radius: 20px; padding: 26px 28px; margin: 36px 0; }
.aff-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-dark); }
.aff-box h3 { margin: 6px 0 6px; }
.aff-box p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.aff-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; max-width: 280px; text-align: center; }
.aff-promo { font-size: .85rem !important; }
.aff-disclosure { font-size: .75rem !important; color: var(--muted) !important; }
@media (max-width: 760px) { .aff-box { grid-template-columns: 1fr; } .aff-actions { max-width: none; } }

.health-notice { background: #fff8e6; border: 1px solid #f0dca5; border-radius: var(--radius-sm); padding: 14px 18px; font-size: .88rem; color: #6b5a28; margin: 28px 0; }
.health-notice strong { display: block; margin-bottom: 2px; color: #57461a; }

.faq { margin: 44px 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: var(--sans); font-size: 1.02rem; }
.faq-q { all: unset; box-sizing: border-box; width: 100%; display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; cursor: pointer; font-weight: 600; color: var(--forest); }
.faq-q:focus-visible { outline: 3px solid var(--accent); }
.faq-icon { flex: 0 0 22px; height: 22px; border-radius: 50%; background: var(--sage); position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 6px; right: 6px; top: 10px; height: 2px; background: var(--forest); transition: transform .2s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-a p { color: var(--ink-soft); margin: 0 0 18px; }

/* --- Stats / méthodo ---------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.stat strong { display: block; font: 700 2.6rem/1 var(--serif); color: var(--gold); }
.stat span { color: #c7d6cc; font-size: .95rem; }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.method { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 20px; }
.method b { display: block; color: var(--gold); font: 700 1.6rem/1 var(--serif); margin-bottom: 8px; }
.method p { color: #c7d6cc; font-size: .94rem; margin: 0; }
.method h3 { font-size: 1.05rem; margin-bottom: 6px; }

.cta-band { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 40px; box-shadow: var(--shadow); }
.cta-band ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 28px; } }

/* --- Outils interactifs ------------------------------------------ */
.tool { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 34px; }
.progress { height: 6px; background: var(--sage); border-radius: 99px; overflow: hidden; margin-bottom: 26px; }
.progress span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .3s; }
.step-count { font-size: .85rem; color: var(--muted); margin-bottom: 6px; }
.quiz-q h2 { font-size: 1.55rem; }
.quiz-q p.hint { color: var(--muted); font-size: .92rem; }
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 18px 0 8px; }
.choice { all: unset; box-sizing: border-box; border: 2px solid var(--line); border-radius: 14px; padding: 16px 18px; cursor: pointer; background: #fff; transition: border-color .15s, background .15s; display: flex; gap: 12px; align-items: flex-start; }
.choice:hover { border-color: var(--sage-2); background: #fbfcfa; }
.choice:focus-visible { outline: 3px solid var(--accent); }
.choice[aria-pressed="true"] { border-color: var(--forest); background: var(--sage); }
.choice-emoji { font-size: 1.5rem; line-height: 1; }
.choice strong { display: block; }
.choice small { color: var(--muted); font-size: .86rem; }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.result-head { text-align: center; max-width: 620px; margin: 0 auto 28px; }
.routine { display: grid; gap: 14px; }
.routine-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; background: #fff; }
.routine-item .product-visual { width: 80px; height: 80px; }
.routine-item h3 { margin: 0 0 2px; font-size: 1.1rem; }
.routine-item p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.routine-item .prio { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-dark); }
.routine-total { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; background: var(--sage); border-radius: 14px; padding: 16px 20px; margin-top: 16px; font-weight: 600; }
@media (max-width: 600px) { .routine-item { grid-template-columns: 56px 1fr; } .routine-item .product-visual { width: 56px; height: 56px; } .routine-item .btn { grid-column: 1 / -1; } .tool { padding: 22px; } }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.field { margin-bottom: 20px; }
.field label, .field .label { display: block; font-weight: 600; margin-bottom: 8px; }
.field input[type="number"], .field select, .field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; background: #fff; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); outline: none; box-shadow: 0 0 0 3px rgba(31, 59, 54, .12); }
.range-row { display: flex; align-items: center; gap: 14px; }
.range-row input[type="range"] { flex: 1; accent-color: var(--forest); }
.range-row output { min-width: 64px; text-align: right; font-weight: 700; color: var(--forest); }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { display: inline-flex; margin: 0; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { padding: 9px 15px; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 500; font-size: .93rem; background: #fff; }
.seg input:checked + span { background: var(--forest); color: #fff; border-color: var(--forest); }
.seg input:focus-visible + span { outline: 3px solid var(--accent); }
.calc-result { background: var(--forest); color: #e8efe9; border-radius: 20px; padding: 28px; }
.calc-result h2 { color: #fff; font-size: 1.2rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .08em; }
.big-number { font: 700 3.4rem/1 var(--serif); color: var(--gold); }
.big-number small { font-size: 1.2rem; color: #e8efe9; }
.calc-lines { list-style: none; padding: 0; margin: 18px 0 0; }
.calc-lines li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .95rem; }
.calc-lines li strong { color: #fff; text-align: right; }
.calc-note { font-size: .82rem; color: #b9c9be; margin: 16px 0 0; }
@media (max-width: 800px) { .calc-grid { grid-template-columns: 1fr; } }

/* --- Pages simples & formulaires ---------------------------------- */
.page-hero { padding: 48px 0 30px; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 700px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.notice { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; }
.notice-ok { background: #eaf4ee; color: #1f5a3f; }
.notice-err { background: #f8ece8; color: #7c2e22; }
.hp { position: absolute !important; left: -9999px !important; }
.promo-code { display: inline-flex; align-items: center; gap: 12px; border: 2px dashed var(--accent); padding: 12px 18px; border-radius: 14px; background: #fff; font: 700 1.5rem var(--serif); color: var(--forest); }
.promo-code button { font: 600 .85rem var(--sans); }
.offer-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.offer { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.offer strong { display: block; font: 700 1.8rem/1.1 var(--serif); color: var(--accent-dark); margin-bottom: 6px; }

/* --- Footer ------------------------------------------------------ */
.site-footer { background: #172d29; color: #b9c9be; padding: 60px 0 30px; margin-top: 40px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h2 { color: #fff; font: 700 .85rem var(--sans); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #d9e4dc; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-about { margin-top: 14px; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 22px; font-size: .8rem; color: #8fa397; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } body { font-size: 16px; } .section { padding: 52px 0; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }

/* =====================================================================
   Fiches compléments (site informationnel)
   ===================================================================== */
.c-icon { --c: var(--forest); flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; line-height: 1; background: color-mix(in srgb, var(--c) 14%, white); }
.c-icon.lg { width: 64px; height: 64px; font-size: 2rem; border-radius: 18px; }
.c-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.c-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; text-decoration: none; color: var(--ink); transition: box-shadow .2s, transform .2s; }
.c-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.c-card[hidden] { display: none; }
.c-card h3 { margin: 0; font-size: 1.2rem; }
.c-card p { margin: 0; font-size: .93rem; color: var(--ink-soft); flex: 1; }

.evidence { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.ev-bars { display: inline-flex; gap: 3px; align-items: flex-end; }
.ev-bars i { display: block; width: 6px; border-radius: 2px; background: var(--line); }
.ev-bars i:nth-child(1) { height: 7px; } .ev-bars i:nth-child(2) { height: 10px; } .ev-bars i:nth-child(3) { height: 13px; } .ev-bars i:nth-child(4) { height: 16px; }
.ev-4 .ev-bars i.on { background: var(--good); }
.ev-3 .ev-bars i.on { background: #6a9a3a; }
.ev-2 .ev-bars i.on { background: var(--gold); }
.ev-1 .ev-bars i.on { background: var(--bad); }
.section-forest .evidence { color: #e8efe9; }
.ev-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 6px 24px; margin-top: 18px; font-size: .88rem; color: var(--ink-soft); }
.ev-legend p { margin: 0; display: flex; gap: 10px; align-items: center; }
.ev-legend .evidence { min-width: 150px; }

.podium li { grid-template-columns: 52px 1fr auto; }
.podium .c-icon { width: 46px; height: 46px; font-size: 1.35rem; }
.hero-card-foot { margin: 12px 0 0; font-size: .9rem; }
.hero-card-foot a { text-decoration: none; font-weight: 600; }

.section-title { margin-top: 34px; }
.benefits { display: grid; gap: 12px; margin: 16px 0 10px; }
.benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.benefit-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.benefit-head h3 { margin: 0; font-size: 1.05rem; font-family: var(--sans); }
.benefit p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.who-warn { background: #fff8e6 !important; border-color: #f0dca5 !important; }

.scorecard-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.scorecard-head small, .ev-block small, .brief-toc small { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.scorecard-head strong { font: 700 1.4rem/1.2 var(--serif); color: var(--forest); }
.ev-block { background: var(--sage); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; }
.ev-block .evidence { margin: 6px 0; font-size: .92rem; }
.ev-block p { margin: 0; font-size: .85rem; color: var(--ink-soft); }
.brief { margin: 0 0 16px; font-size: .9rem; }
.brief dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: 10px; }
.brief dd { margin: 2px 0 0; font-weight: 600; }
.brief-toc { border-top: 1px solid var(--line); padding-top: 12px; margin-bottom: 16px; font-size: .88rem; }
.brief-toc ol { margin: 6px 0 0; padding-left: 18px; }
.brief-toc li { margin-bottom: 4px; }
.brief-toc a { text-decoration: none; }
.post-card .post-title { font-size: 1.25rem; margin: 0; }
.routine-item .c-icon { width: 64px; height: 64px; font-size: 1.8rem; }
.routine-item { grid-template-columns: 64px 1fr auto; }
@media (max-width: 600px) { .routine-item { grid-template-columns: 52px 1fr; } .routine-item .c-icon { width: 52px; height: 52px; } }

/* --- Bannière cookies ------------------------------------------------ */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; display: flex; justify-content: center; pointer-events: none; }
.consent-inner { pointer-events: auto; width: 100%; max-width: 760px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 40px rgba(20, 35, 30, .22); padding: 20px 22px; }
.consent-title { font: 700 1.1rem/1.3 var(--serif); color: var(--forest); margin: 0 0 6px; }
.consent-text { font-size: .9rem; color: var(--ink-soft); margin: 0 0 14px; }
.consent-details { border-top: 1px solid var(--line); margin-bottom: 14px; }
.consent-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.consent-row small { display: block; font-size: .82rem; color: var(--muted); }
.consent-row input { width: 20px; height: 20px; accent-color: var(--forest); flex: 0 0 auto; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
@media (max-width: 560px) { .consent { left: 8px; right: 8px; bottom: 8px; } .consent-actions .btn { flex: 1 1 45%; } }
.link-btn { all: unset; cursor: pointer; color: #d9e4dc; }
.link-btn:hover { color: var(--gold); }
.link-btn:focus-visible { outline: 3px solid var(--accent); }
.legal-table th { width: 38%; }
.todo { background: #fff3cd; color: #7a5a00; padding: 0 4px; border-radius: 4px; }

.logo-img { height: 44px; width: auto; }
.site-footer .logo-img { height: 64px; background: var(--cream); padding: 8px 12px; border-radius: 999px; box-sizing: content-box; }

/* --- Images à la une --------------------------------------------------- */
.hero-img { margin: 18px 0 8px; border-radius: 18px; overflow: hidden; background: var(--sage); aspect-ratio: 16 / 9; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card.has-img { padding-top: 0; }
.post-card-img { display: block; margin: 0 -24px 6px; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sage); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.c-card.has-img { padding-top: 0; overflow: hidden; }
.c-card-img { display: block; margin: 0 -22px 4px; width: calc(100% + 44px); aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage); }
.c-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.c-card:hover .c-card-img img { transform: scale(1.04); }
.article-hero { max-width: 820px; margin-top: 22px; }

/* --- Encadré partenaire (affiliation) ------------------------------------ */
.partner-box { margin: 34px 0; padding: 24px 26px; border-radius: 20px; background: linear-gradient(135deg, #fff, #f3f6f1); border: 1px solid var(--sage-2); }
.partner-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); background: #fbeee3; padding: 3px 10px; border-radius: 999px; }
.partner-box h3 { margin: 10px 0 6px; font-size: 1.25rem; }
.partner-box > p { font-size: .98rem; color: var(--ink-soft); margin: 0 0 10px; }
.partner-points { list-style: none; padding: 0; margin: 0 0 16px; }
.partner-points li { position: relative; padding-left: 26px; margin-bottom: 6px; font-size: .95rem; }
.partner-points li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--good); color: #fff; font-size: .7rem; font-weight: 700; display: grid; place-items: center; margin-top: 3px; }
.partner-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.partner-foot small { color: var(--muted); font-size: .85rem; }
.prose .partner-disclosure, .partner-disclosure { font-size: .78rem; color: var(--muted); margin: 14px 0 0; }
.partner-box.has-img { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 24px; align-items: start; }
.partner-img { display: block; border-radius: 14px; overflow: hidden; background: #f2f2f2; }
.partner-img img { width: 100%; height: auto; }
@media (max-width: 640px) { .partner-box.has-img { grid-template-columns: 1fr; } .partner-img { max-width: 220px; } }

/* --- Chiffres clés (articles) ------------------------------------------ */
.key-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 16px 0 26px; }
.key-figures > div { background: var(--forest); color: #e8efe9; border-radius: 14px; padding: 16px 18px; }
.key-figures strong { display: block; font: 700 1.7rem/1.1 var(--serif); color: var(--gold); margin-bottom: 4px; }
.key-figures span { font-size: .86rem; line-height: 1.35; display: block; }
