/* Réemploi 74 — feuille de style */
:root {
  --paper: #F4F6F1;
  --surface: #FFFFFF;
  --surface-2: #E9EEE7;
  --ink: #17261F;
  --ink-soft: #2E4237;
  --muted: #5A6B62;
  --line: #D7DED8;
  --line-strong: #7A8A80;
  --moss: #1E4D3B;
  --leaf: #2F7D5B;
  --leaf-ink: #FFFFFF;
  --leaf-soft: #DDEFE4;
  --copper: #9E5429;
  --copper-ink: #FFFFFF;
  --copper-soft: #F6E6DA;
  --focus: #2F7D5B;
  --danger: #B3261E;
  --danger-soft: #FBE9E7;
  --ok: #2E7D4F;
  --display: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, "Courier New", monospace;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(23, 38, 31, 0.08);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0F1A15; --surface: #16241D; --surface-2: #1D2E25;
    --ink: #E9EFEA; --ink-soft: #CBD8CF; --muted: #A5B5AB; --line: #27362E; --line-strong: #66796E;
    --moss: #C8E6D3; --leaf: #6FCF9A; --leaf-ink: #0F1A15; --leaf-soft: #1C3A2C;
    --copper: #E09A6C; --copper-ink: #0F1A15; --copper-soft: #3A2718;
    --focus: #6FCF9A; --danger: #F28B82; --danger-soft: #3A1F1F; --ok: #8BD3A5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}
:root[data-theme="dark"] {
  --paper: #0F1A15; --surface: #16241D; --surface-2: #1D2E25;
  --ink: #E9EFEA; --ink-soft: #CBD8CF; --muted: #A5B5AB; --line: #27362E; --line-strong: #66796E;
  --moss: #C8E6D3; --leaf: #6FCF9A; --leaf-ink: #0F1A15; --leaf-soft: #1C3A2C;
  --copper: #E09A6C; --copper-ink: #0F1A15; --copper-soft: #3A2718;
  --focus: #6FCF9A; --danger: #F28B82; --danger-soft: #3A1F1F; --ok: #8BD3A5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 17.5px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.1; text-wrap: balance; margin: 0; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.2vw, 60px); font-variation-settings: "opsz" 96, "wdth" 100; }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 6px; }
li::marker { color: var(--muted); }
strong { font-weight: 600; }
code, .mono { font-family: var(--mono); font-size: 0.92em; }
.eyebrow { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf); }
.eyebrow.copper { color: var(--copper); }
.measure { max-width: 66ch; }
.muted { color: var(--muted); }
.small { font-size: 15px; }
[hidden] { display: none !important; }

/* ---------- Layout ---------- */
.wrap { max-width: 1160px; margin: 0 auto; padding-inline: 20px; }
section.band { padding-block: 72px; }
section.band.tight { padding-block: 48px; }
section.band.alt { background: var(--surface); border-block: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } section.band { padding-block: 52px; } }
.section-head { display: grid; gap: 10px; margin-bottom: 32px; max-width: 70ch; }
.section-head p { font-size: 19px; color: var(--ink-soft); margin: 0; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 19px; }
.brand small { display: block; font-family: var(--body); font-weight: 400; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
.brand svg { width: 38px; height: 38px; flex: none; }
nav.main { margin-left: auto; display: flex; align-items: center; gap: 4px; }
nav.main a { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink-soft); text-decoration: none; padding: 12px 11px; border-radius: 8px; }
nav.main a:hover { background: var(--surface-2); color: var(--ink); }
nav.main a[aria-current="page"] { color: var(--leaf); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
nav.main .btn { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; color: var(--ink); font-family: var(--display); font-weight: 600; cursor: pointer; }
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  nav.main { display: none; position: absolute; left: 0; right: 0; top: 68px; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 12px 20px 16px; gap: 2px; box-shadow: var(--shadow); }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 10px; font-size: 16px; }
  nav.main .btn { margin: 8px 0 0; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .12s ease, background .15s ease, border-color .15s ease; line-height: 1.1;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--leaf); color: var(--leaf-ink); border-color: var(--leaf); }
.btn.copper { background: var(--copper); color: var(--copper-ink); border-color: var(--copper); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--ink-soft); }
.btn.small { padding: 10px 14px; font-size: 14.5px; min-height: 42px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.link-arrow { font-family: var(--display); font-weight: 600; text-decoration: none; }
.link-arrow::after { content: " →" / ""; }

/* ---------- Hero ---------- */
.hero { padding-block: 56px 64px; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; align-items: center; }
.hero h1 { margin-top: 14px; }
.hero .lede { font-size: 20px; color: var(--ink-soft); margin: 20px 0 26px; max-width: 56ch; }
.hero .photo { position: relative; }
.hero .photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.hero .photo .tag { position: absolute; left: 18px; bottom: 18px; background: var(--surface); color: var(--ink); border-radius: 10px; padding: 10px 14px; font-family: var(--display); font-weight: 600; font-size: 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; }
.hero .photo .tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--leaf); }
.hero .aside { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; font-size: 15px; color: var(--muted); }
.hero .aside span::before { content: "✓ " / ""; color: var(--leaf); font-weight: 700; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; gap: 28px; } .hero { padding-block: 36px 48px; } }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.voie { position: relative; overflow: hidden; padding: 30px; }
.voie::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--leaf); }
.voie.rachat::before { background: var(--copper); }
.voie ul { list-style: none; padding: 0; margin: 14px 0 20px; }
.voie li { padding-left: 26px; position: relative; margin-bottom: 8px; }
.voie li::before { content: "✓" / ""; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
.voie.rachat li::before { color: var(--copper); }

/* ---------- Promesse ---------- */
.promesse { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.promesse div { padding: 22px 0 0; border-top: 3px solid var(--leaf); }
.promesse h3 { font-size: 20px; margin-bottom: 6px; }
.promesse p { margin: 0; color: var(--ink-soft); }
@media (max-width: 760px) { .promesse { grid-template-columns: 1fr; } }

/* ---------- Impact stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 26px 0 22px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px; display: grid; gap: 6px; align-content: start; }
.stat .v { font-family: var(--display); font-size: 40px; font-weight: 800; color: var(--moss); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat .l { color: var(--ink-soft); font-size: 16px; }
.stat .s { font-size: 13px; color: var(--muted); }
.stat .s a { color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--leaf); display: block; margin-bottom: 8px; letter-spacing: -0.02em; }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.step .delai { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 12.5px; background: var(--leaf-soft); color: var(--moss); padding: 3px 8px; border-radius: 6px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Full-bleed photo band ---------- */
.bleed { position: relative; min-height: 380px; display: grid; align-items: end; overflow: hidden; }
.bleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bleed .overlay { position: relative; background: linear-gradient(to bottom, rgba(15, 26, 21, 0.10) 0, rgba(15, 26, 21, 0.82) 100px, rgba(15, 26, 21, 0.92) 100%); color: #fff; width: 100%; padding: 120px 0 44px; }
.bleed .eyebrow { color: #BFE6CF; }
.bleed .overlay .wrap { display: grid; gap: 10px; }
.bleed h2 { color: #fff; max-width: 22ch; }
.bleed p { color: #fff; max-width: 60ch; font-size: 18px; margin: 0; }

/* ---------- Media + text ---------- */
.media { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.media img { border-radius: 18px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.media.flip img { order: -1; }
@media (max-width: 860px) { .media { grid-template-columns: 1fr; } .media.flip img { order: 0; } }

/* ---------- Certificate mock ---------- */
.cert { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; font-family: var(--mono); font-size: 13.5px; box-shadow: var(--shadow); max-width: 460px; }
.cert .head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--line); padding-bottom: 10px; margin-bottom: 12px; font-family: var(--display); font-weight: 700; font-size: 15px; }
.cert dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0; }
.cert dt { color: var(--muted); }
.cert dd { margin: 0; word-break: break-all; }
.cert .foot { margin-top: 12px; font-size: 12px; color: var(--muted); font-family: var(--body); }

/* ---------- Tables ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); margin: 16px 0 24px; }
table { border-collapse: collapse; width: 100%; font-size: 16px; }
th, td { padding: 12px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { font-family: var(--display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); }
tr:last-child td { border-bottom: 0; }
td.n, th.n { text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Callout ---------- */
.callout { border-left: 4px solid var(--leaf); background: var(--leaf-soft); padding: 14px 18px; border-radius: 0 12px 12px 0; margin: 18px 0 22px; }
.callout.copper { border-left-color: var(--copper); background: var(--copper-soft); }
.callout.warn { border-left-color: var(--copper); background: var(--copper-soft); }
.callout p:last-child { margin: 0; }
.callout a { color: var(--moss); }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 18px; padding: 14px 36px 14px 0; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 10px; font-size: 26px; color: var(--leaf); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 16px; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Page (inner) ---------- */
.page-head { padding-block: 48px 8px; }
.page-head .eyebrow { display: block; margin-bottom: 10px; }
.page-head p.lede { font-size: 20px; color: var(--ink-soft); max-width: 62ch; margin-top: 14px; }
.prose { max-width: 70ch; }
.prose h3 { margin: 34px 0 10px; }
.prose h4 { margin: 22px 0 6px; }
.prose ul, .prose ol { max-width: 68ch; }

/* ---------- Forms ---------- */
form.demande { display: grid; gap: 28px; max-width: 820px; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px 8px; margin: 0; background: var(--surface); }
legend { font-family: var(--display); font-weight: 700; font-size: 19px; padding: 0 8px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--display); font-weight: 600; font-size: 15px; }
.field .hint { font-size: 14px; color: var(--muted); }
.field .err { font-size: 14px; color: var(--danger); display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); outline: 2px solid var(--danger); outline-offset: 1px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); color: var(--ink); min-height: 46px;
}
textarea { min-height: 96px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .row, .row.three { grid-template-columns: 1fr; } }
.check { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.check > .err { display: none; flex-basis: 100%; font-size: 14px; color: var(--danger); }
.check.invalid > .err { display: block; }
.check.invalid input { outline: 2px solid var(--danger); outline-offset: 2px; }
.form-status { font-size: 15.5px; color: var(--danger); margin: 0; font-weight: 600; }
.form-status:empty { display: none; }
.remise { display: grid; gap: 10px; margin-bottom: 14px; }
.remise label { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.remise input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--leaf); }
.remise .why { font-size: 14px; color: var(--muted); display: block; }
.check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--leaf); }
.check label { font-size: 16px; }
.equip { border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 4px; margin-bottom: 16px; background: var(--paper); position: relative; }
.equip .equip-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.equip .equip-head h4 { margin: 0; }
.equip .remove { background: none; border: 0; color: var(--muted); font: inherit; cursor: pointer; text-decoration: underline; min-height: 40px; padding: 6px 8px; }
.photos { display: grid; gap: 8px; }
.photos input[type="file"] { font: inherit; }
.thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--display); font-size: 13px; font-weight: 600; background: var(--surface-2); border-radius: 999px; padding: 6px 12px; }
.form-foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.form-note { font-size: 14px; color: var(--muted); }

/* ---------- Confirmation / Suivi ---------- */
.code-box { background: var(--surface); border: 2px dashed var(--leaf); border-radius: 14px; padding: 22px 26px; display: grid; gap: 6px; margin: 22px 0; max-width: 520px; }
.code-box .code { font-family: var(--mono); font-size: 30px; font-weight: 600; letter-spacing: 0.06em; color: var(--moss); }
.timeline { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 0; max-width: 560px; }
.timeline li { position: relative; padding: 0 0 22px 34px; }
.timeline li::before { content: ""; position: absolute; left: 8px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--line); border: 2px solid var(--surface); box-shadow: 0 0 0 2px var(--line); }
.timeline li::after { content: ""; position: absolute; left: 13px; top: 20px; bottom: -4px; width: 2px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.timeline li.done::before { background: var(--leaf); box-shadow: 0 0 0 2px var(--leaf); }
.timeline li.current::before { background: var(--copper); box-shadow: 0 0 0 2px var(--copper); }
.timeline li .t { font-family: var(--display); font-weight: 600; }
.timeline li .d { font-size: 14px; color: var(--muted); }
.demo-note { font-size: 14px; color: var(--muted); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; background: var(--surface); max-width: 62ch; }

/* ---------- Offers (sauvegarde) ---------- */
.offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.offer { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 12px; align-content: start; }
.offer.featured { border-color: var(--leaf); box-shadow: var(--shadow); }
.offer .price { font-family: var(--display); font-size: 34px; font-weight: 800; color: var(--moss); letter-spacing: -0.02em; line-height: 1; }
.offer .price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.offer ul { list-style: none; padding: 0; margin: 4px 0 0; }
.offer li { padding-left: 24px; position: relative; margin-bottom: 8px; font-size: 16px; }
.offer li::before { content: "✓" / ""; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
@media (max-width: 760px) { .offers { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site { background: var(--moss); color: #E9EFEA; padding-block: 52px 32px; margin-top: 72px; }
:root[data-theme="dark"] footer.site, :root:not([data-theme="light"]) footer.site { background: var(--surface); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) footer.site { background: var(--moss); } }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
footer.site h4 { color: inherit; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; opacity: .8; }
footer.site a { color: inherit; text-decoration: none; opacity: .92; }
footer.site a:hover { text-decoration: underline; opacity: 1; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
footer.site .brand { color: inherit; }
footer.site .brand small { color: inherit; opacity: .75; }
footer.site .legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.18); font-size: 14px; opacity: .8; display: flex; flex-wrap: wrap; gap: 8px 24px; }
@media (max-width: 860px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .cols { grid-template-columns: 1fr; } }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -9999px; top: 8px; background: var(--surface); color: var(--ink); padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 12px; }
main:focus, [tabindex="-1"]:focus { outline: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Credits list ---------- */
.credits { columns: 2; column-gap: 32px; font-size: 15px; }
@media (max-width: 640px) { .credits { columns: 1; } }

/* ---------- Champs à compléter (pages légales) ---------- */
.todo { background: var(--copper-soft); color: var(--copper); padding: 0 5px; border-radius: 4px; font-family: var(--mono); font-size: 0.88em; white-space: normal; overflow-wrap: anywhere; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.legal-note { display: flex; gap: 12px; align-items: flex-start; background: var(--copper-soft); border-radius: 12px; padding: 14px 18px; margin: 18px 0 26px; font-size: 15.5px; max-width: 70ch; }
.legal-note .todo { flex: none; margin-top: 3px; white-space: nowrap; }
.chips-cats { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.chips-cats span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-family: var(--display); font-weight: 600; font-size: 15px; }
sup { font-size: 0.7em; line-height: 0; }
.lot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 18px; }
@media (max-width: 720px) { .lot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .lot-grid { grid-template-columns: 1fr; } }
.photo-credit { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ---------- Production ---------- */
html.prod .demo-note { display: none; }
