/* Design system « Atelier » — handoff redesign du 12/08/2026.
   Les NOUVEAUX noms (--paper, --ink, --brass…) sont la référence.
   Les ANCIENS (--c-*) restent définis comme alias : ils sont utilisés par les
   ~800 lignes de composants existants et par les 25 pages du site, qui se
   re-skinnent ainsi d'un seul coup, sans état intermédiaire cassé. */

:root {
  /* ── Palette Atelier ─────────────────────────────────────── */
  --paper:   #F5F4EF;   /* fond principal        */
  --paper2:  #EDEBE3;   /* fond alterné          */
  --ink:     #1F2942;   /* encre indigo          */
  --ink2:    #4A5470;   /* texte courant         */
  --ink3:    #8A90A6;   /* texte atténué         */
  --brass:   #A8863F;   /* laiton — accents      */
  --brass-d: #8C6F31;   /* laiton foncé — hover  */
  --line:    #D8D5C9;   /* filets                */
  --white:   #FFFFFF;
  --max:     1200px;

  /* ── Typo ────────────────────────────────────────────────── */
  --serif: 'Marcellus', Georgia, serif;        /* titres, prix, chiffres */
  --sans:  'Karla', system-ui, sans-serif;     /* corps, UI, boutons     */
  --font:  var(--sans);                        /* alias historique       */

  /* ── Alias de compatibilité (anciens composants) ─────────── */
  --c-primary:   var(--ink);
  --c-primary-d: #141B2E;
  --c-primary-l: var(--ink2);
  --c-accent:    var(--brass-d);
  --c-accent-d:  #6E571F;
  --c-accent-l:  var(--paper2);
  --c-cta:       var(--brass);
  --c-cta-h:     var(--brass-d);
  --cta-rgb:     168, 134, 63;

  --c-bg:     var(--paper);
  --c-bg2:    var(--paper2);
  --c-border: var(--line);
  --c-white:  var(--white);

  --c-text:  var(--ink);
  --c-text2: var(--ink2);
  --c-text3: var(--ink3);

  --c-ok:   #3F6B4A;
  --c-warn: #8C6F31;
  --c-err:  #A33A2E;

  /* ── Angles droits partout ───────────────────────────────── */
  --r-sm: 0; --r-md: 0; --r-lg: 0; --r-xl: 0;

  /* Ombres neutralisées : le design Atelier travaille au filet, pas à l'ombre */
  --shadow-xs: none;
  --shadow-sm: 0 1px 2px rgba(31, 41, 66, .05);
  --shadow-md: 0 6px 22px rgba(31, 41, 66, .08);
  --shadow-lg: 0 14px 40px rgba(31, 41, 66, .12);

  --t: .22s ease;
}

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

html { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { line-height: 1.2; color: var(--c-text); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.125rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--c-text2); }
a { color: var(--c-primary); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 252, 250, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { font-weight: 800; color: var(--c-text); text-decoration: none; letter-spacing: -.02em; }
.brand span { color: var(--c-primary); }
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
/* :not(.btn) — sinon cette règle (0,2,1) écrase .btn-cta (0,1,0) et le CTA perd son blanc. */
.site-header nav a:not(.btn) { color: var(--c-text2); text-decoration: none; font-size: .925rem; font-weight: 500; }
.site-header nav a:not(.btn):hover { color: var(--c-primary); }
.site-header nav a.btn { text-decoration: none; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 0;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-cta { background: var(--c-cta); color: var(--c-white); box-shadow: 0 4px 14px rgba(var(--cta-rgb), .3); }
.btn-cta:hover { background: var(--c-cta-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(var(--cta-rgb), .38); }
.btn-ghost { border-color: var(--c-border); color: var(--c-text); background: var(--c-white); }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { background: var(--c-primary); color: var(--c-white); padding: 72px 0 80px; }
.hero h1 { color: var(--c-white); max-width: 16ch; }
.hero .lede { color: rgba(255, 255, 255, .9); font-size: 1.15rem; max-width: 56ch; }
.hero .body { color: rgba(255, 255, 255, .72); max-width: 62ch; font-size: .975rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .2);
  color: var(--c-white); border-radius: 0;
  padding: 7px 17px; font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 0; background: var(--c-cta); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .17); }
.hero-facts div strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--c-white); }
.hero-facts div span { font-size: .85rem; color: rgba(255, 255, 255, .72); }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 68px 0; }
section.alt { background: var(--c-bg2); }
.section-intro { max-width: 64ch; margin-bottom: 38px; }

/* ── Tables ─────────────────────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: 0;
  overflow: hidden; font-size: .935rem; min-width: 560px;
}
table.data th, table.data td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
table.data thead th { background: var(--c-accent-l); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--c-accent-d); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--c-bg2); }
table.data td.num { font-variant-numeric: tabular-nums; }
.pending { color: var(--c-text3); font-style: italic; }

/* ── Cards ──────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; padding: 26px; box-shadow: var(--shadow-xs);
  transition: border-color var(--t), box-shadow var(--t);
}
.card:hover { border-color: var(--c-primary-l); box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: .35em; }
.card p { font-size: .925rem; margin-bottom: 0; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 0;
  background: var(--c-accent-l); color: var(--c-accent-d);
  font-weight: 800; font-size: .9rem; margin-bottom: 14px;
}

/* ── Swatches ───────────────────────────────────────────── */
.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.swatch { display: flex; align-items: center; gap: 8px; background: var(--c-white); border: 1px solid var(--c-border); border-radius: 0; padding: 5px 13px 5px 5px; font-size: .82rem; color: var(--c-text2); }
.swatch i { width: 20px; height: 20px; border-radius: 0; border: 1px solid rgba(0, 0, 0, .1); display: block; }

/* ── FAQ ────────────────────────────────────────────────── */
details.faq { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 0; padding: 18px 22px; margin-bottom: 12px; }
details.faq summary { font-weight: 700; cursor: pointer; list-style: none; color: var(--c-text); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; float: right; color: var(--c-primary); font-size: 1.3rem; line-height: 1; }
details.faq[open] summary::after { content: '\2212'; }
details.faq p { margin: 14px 0 0; font-size: .935rem; }

/* ── Callout ────────────────────────────────────────────── */
.callout { background: var(--c-accent-l); border-left: 3px solid var(--c-accent); border-radius: 0; padding: 18px 22px; font-size: .93rem; color: var(--c-accent-d); }
.callout strong { color: var(--c-accent-d); }

/* ── Final CTA ──────────────────────────────────────────── */
.cta-band { background: var(--c-accent); color: var(--c-white); text-align: center; }
.cta-band h2 { color: var(--c-white); }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 52ch; margin-inline: auto; }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--c-text); color: rgba(255, 255, 255, .68); padding: 46px 0 34px; font-size: .9rem; }
footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
footer a:hover { color: var(--c-white); text-decoration: underline; }
.footer-cols { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 30px; }
.footer-cols h4 { color: var(--c-white); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 7px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .13); padding-top: 22px; font-size: .82rem; color: rgba(255, 255, 255, .5); }

@media (max-width: 640px) {
  .hero { padding: 48px 0 56px; }
  section { padding: 48px 0; }
}

/* ═══ V1 — composants d'arborescence ═══════════════════════ */

/* Bannière mode démo */
.demo-banner {
  background: var(--c-warn); color: #fff;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  text-align: center; padding: 9px 20px;
}

/* Fil d'Ariane */
.crumbs { background: var(--c-bg2); border-bottom: 1px solid var(--c-border); }
.crumbs ol {
  list-style: none; margin: 0; padding: 12px 0;
  display: flex; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--c-text3);
}
.crumbs li + li::before { content: '›'; margin-right: 8px; color: var(--c-text3); }
.crumbs a { color: var(--c-text2); text-decoration: none; }
.crumbs a:hover { color: var(--c-primary); text-decoration: underline; }
.crumbs li:last-child { color: var(--c-text); font-weight: 600; }

/* En-tête de page intérieure */
.page-head { background: var(--c-bg2); border-bottom: 1px solid var(--c-border); padding: 54px 0 48px; }
.page-head h1 { max-width: 20ch; }
.page-head .lede { font-size: 1.08rem; color: var(--c-text2); max-width: 68ch; }
.hero-facts.light { border-top-color: var(--c-border); }
.hero-facts.light div strong { color: var(--c-primary); font-size: 1.45rem; }
.hero-facts.light div span { color: var(--c-text2); }

/* Cartes catégorie */
.cat-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cat-card {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; padding: 26px; text-decoration: none;
  box-shadow: var(--shadow-xs); transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.cat-card:hover { border-color: var(--c-primary-l); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-card.wide { grid-column: 1 / -1; background: var(--c-accent-l); border-color: var(--c-accent); }
.cat-kicker {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 10px;
}
.cat-card.wide .cat-kicker { color: var(--c-accent-d); }
.cat-card h3 { margin-bottom: .4em; color: var(--c-text); }
.cat-card p { font-size: .92rem; margin-bottom: 14px; }
.cat-meta { margin-top: auto; font-size: .84rem; font-weight: 700; color: var(--c-primary); }

/* Cartes produit */
.prod-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.prod-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; text-decoration: none;
  box-shadow: var(--shadow-xs); transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.prod-card:hover { border-color: var(--c-primary-l); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.prod-thumb {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--c-bg2), var(--c-accent-l));
  border-bottom: 1px solid var(--c-border); position: relative;
}
.prod-thumb::after {
  content: 'Photo pending'; position: absolute; bottom: 10px; right: 12px;
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-text3);
}
.prod-thumb em {
  font-style: normal; font-weight: 700; font-size: .95rem;
  color: var(--c-primary-d); opacity: .55; padding: 0 18px; text-align: center;
}
.prod-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.prod-body h3 { font-size: 1.05rem; margin-bottom: .35em; color: var(--c-text); }
.prod-body p { font-size: .89rem; margin-bottom: 12px; }
.prod-specs { font-size: .8rem; color: var(--c-text3); margin-bottom: 14px; }
.prod-price {
  margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
  font-weight: 800; color: var(--c-primary); font-size: 1rem;
  border-top: 1px solid var(--c-border); padding-top: 13px;
}
.prod-price em { font-style: normal; font-weight: 500; font-size: .78rem; color: var(--c-text3); }

/* Fiche produit */
.product-head { background: var(--c-bg2); border-bottom: 1px solid var(--c-border); padding: 46px 0 52px; }
.product-split { display: grid; gap: 40px; grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr); align-items: start; }
.media-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  aspect-ratio: 1 / 1; border-radius: 0;
  background: linear-gradient(135deg, var(--c-accent-l), var(--c-bg2));
  border: 1px dashed var(--c-border);
}
.media-placeholder span { font-weight: 800; font-size: 1.15rem; color: var(--c-primary-d); opacity: .6; }
.media-placeholder em { font-style: normal; font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; color: var(--c-text3); }
.eyebrow-dark {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 12px;
}
.product-intro h1 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.product-intro .lede { font-size: 1.05rem; color: var(--c-text2); }
.highlights { list-style: none; margin: 0 0 24px; padding: 0; }
.highlights li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .93rem; color: var(--c-text2); }
.highlights li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--c-accent); font-weight: 800;
}
.price-block {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: 0;
  padding: 16px 20px; margin-bottom: 22px;
}
.price-from { display: block; font-size: 1.5rem; font-weight: 800; color: var(--c-primary); }
.price-note { font-size: .82rem; color: var(--c-text3); }

/* Tableau de specs (2 colonnes) */
table.data.spec { min-width: 420px; }
table.data.spec th[scope='row'] {
  background: var(--c-bg2); font-weight: 700; width: 38%;
  font-size: .88rem; text-transform: none; letter-spacing: 0; color: var(--c-text);
}

/* Callout d'alerte */
.callout.warn { background: #FEF6E7; border-left-color: var(--c-warn); color: #7A4A05; }
.callout.warn strong { color: #7A4A05; }

@media (max-width: 820px) {
  .product-split { grid-template-columns: 1fr; gap: 26px; }
}

/* Ligne de total dans un tableau de coût */
table.data tr.total td { background: var(--c-accent-l); border-top: 2px solid var(--c-accent); }
table.data tr.total:hover td { background: var(--c-accent-l); }
.timeline-lead { font-size: 1.02rem; color: var(--c-text); margin-bottom: 20px; }
.timeline-lead strong { color: var(--c-primary); }

/* ═══ Menu principal ═══════════════════════════════════════
   Deux niveaux, zéro JavaScript.
   Desktop : :hover + :focus-within.  Mobile : tiroir piloté par une case à cocher. */

.nav-toggle, .nav-burger, .nav-scrim { display: none; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }

.menu > li > a,
.menu > li > .menu-top {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 0;
  font-size: .925rem; font-weight: 500; color: var(--c-text2);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.menu > li > a:hover,
.menu > li > .menu-top:hover,
.menu > li:focus-within > a,
.menu > li:focus-within > .menu-top { color: var(--c-primary); background: var(--c-bg2); }

.menu > li > a.is-active,
.menu > li.is-open > a,
.menu > li.is-open > .menu-top { color: var(--c-primary); font-weight: 700; }
.menu > li > a.is-active::after,
.menu > li.is-open > .menu-top::after,
.menu > li.is-open > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: -1px;
  height: 2px; background: var(--c-cta); border-radius: 0;
}

/* Chevron sur les entrées à sous-menu */
.has-sub > .menu-top::before {
  content: ''; order: 2; width: 6px; height: 6px; margin-left: 2px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t);
}
.has-sub:hover > .menu-top::before { transform: rotate(225deg) translate(-1px, -1px); }

/* Sous-menu desktop */
.sub {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  opacity: 0; visibility: hidden; pointer-events: none;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; box-shadow: var(--shadow-lg);
  padding: 22px; z-index: 60;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.sub::before {   /* pont invisible : évite que le menu se ferme entre l'entrée et le panneau */
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-sub:hover > .sub,
.has-sub:focus-within > .sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sub-inner { display: flex; gap: 30px; }
.sub-col { display: flex; flex-direction: column; min-width: 168px; }
.sub-col.wide { min-width: 205px; }
.sub-col .sub-h {
  margin: 0 0 10px; font-size: .68rem; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase; color: var(--c-text3);
}
.sub-col > a {
  padding: 7px 10px; margin-left: -10px; border-radius: 0;
  font-size: .92rem; font-weight: 500; color: var(--c-text);
  text-decoration: none; white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.sub-col > a:hover { color: var(--c-primary); background: var(--c-bg2); }
.sub-col > a.is-active { color: var(--c-primary); font-weight: 700; }
.sub-col.promo {
  background: var(--c-accent-l); border-radius: 0;
  padding: 16px 18px; max-width: 232px; min-width: 200px;
}
.sub-col.promo h5 { color: var(--c-accent-d); }
.sub-col.promo p { font-size: .84rem; margin: 0; color: var(--c-text2); line-height: 1.5; }
.sub-cta {
  margin-top: 12px; font-size: .86rem; font-weight: 700;
  color: var(--c-primary); text-decoration: none;
}
.sub-cta:hover { text-decoration: underline; }

.nav-quote { flex-shrink: 0; }

/* ── Mobile : tiroir ─────────────────────────────────────── */
@media (max-width: 940px) {
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 10px;
    border: 1px solid var(--c-border); border-radius: 0;
    background: var(--c-white); cursor: pointer;
  }
  .nav-burger span {
    display: block; height: 2px; background: var(--c-text); border-radius: 0;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-scrim {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(42, 33, 24, .45); opacity: 0; visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
  }
  .nav-toggle:checked ~ .nav-scrim { opacity: 1; visibility: visible; }

  .site-nav {
    position: fixed; top: 0; right: 0; z-index: 60;
    width: min(340px, 88vw); height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 0;
    margin-left: 0; padding: 78px 22px 28px;
    background: var(--c-white); border-left: 1px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); visibility: hidden;
    overflow-y: auto; transition: transform var(--t), visibility var(--t);
  }
  .nav-toggle:checked ~ .site-nav { transform: translateX(0); visibility: visible; }

  .menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; align-self: stretch; }
  .menu > li { border-bottom: 1px solid var(--c-border); }
  .menu > li > a, .menu > li > .menu-top {
    padding: 15px 4px; font-size: 1rem; font-weight: 700; color: var(--c-text);
  }
  .menu > li > a.is-active::after,
  .menu > li.is-open > .menu-top::after,
  .menu > li.is-open > a::after { display: none; }
  .has-sub > .menu-top::before { display: none; }

  /* Sur mobile les sous-menus sont dépliés : pas de second tap à deviner */
  .sub {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 16px;
    background: transparent;
  }
  .sub::before { display: none; }
  .sub-inner { flex-direction: column; gap: 16px; }
  .sub-col, .sub-col.wide { min-width: 0; }
  .sub-col > a { padding: 9px 12px; margin-left: 0; background: var(--c-bg2); margin-bottom: 5px; }
  .sub-col.promo { display: none; }

  .nav-quote { margin-top: 22px; width: 100%; }
}

/* Vraies photos produit (import fournisseur) */
.prod-thumb.has-img { padding: 0; overflow: hidden; }
.prod-thumb.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-thumb.has-img::after { background: rgba(255,255,255,.85); padding: 2px 7px; border-radius: 0; content: 'Supplier photo'; }
.media-placeholder:has(img) { padding: 0; border-style: solid; overflow: hidden; background: var(--c-white); }
.media-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }

/* Chip texte (tailles) — sans pastille couleur */
.swatch.plain { padding: 5px 13px; font-weight: 600; color: var(--c-text); }

/* ═══ Grille produit filtrable ═════════════════════════════
   Desktop ≥1024px : rail de facettes latéral, collant, toujours ouvert.
   Sous 1024px     : barre compacte + tiroir bas.
   `.no-js` (retiré par JS) masque barre et rail : sans JS, tout s'affiche. */

.gridblock.no-js .fbar,
.gridblock.no-js .fpanel,
.gridblock.no-js .fscrim { display: none; }

/* ── Barre au-dessus de la grille ─────────────────────────── */
.fbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 9px 14px; margin-bottom: 18px;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; box-shadow: var(--shadow-xs);
}
.fbtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border: 1px solid var(--c-border); border-radius: 0;
  background: var(--c-white); font: inherit; font-size: .9rem; font-weight: 600;
  color: var(--c-text); cursor: pointer; transition: border-color var(--t), color var(--t);
}
.fbtn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.fbtn em {
  font-style: normal; min-width: 19px; height: 19px; padding: 0 5px;
  display: inline-grid; place-items: center; border-radius: 0;
  background: var(--c-cta); color: #fff; font-size: .72rem; font-weight: 800;
}
.fresult { font-size: .88rem; color: var(--c-text2); white-space: nowrap; }
.fresult b { color: var(--c-text); font-weight: 800; }
.fchips { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; min-width: 0; }
.fchip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 7px 4px 11px; border-radius: 0; font-size: .78rem; font-weight: 600;
  background: var(--c-accent-l); color: var(--c-accent-d); border: 0; cursor: pointer;
  font-family: inherit;
}
.fchip::after { content: '×'; font-size: 1.05rem; line-height: 1; opacity: .55; }
.fchip:hover::after { opacity: 1; }
.fchip i { width: 12px; height: 12px; border-radius: 0; border: 1px solid rgba(0,0,0,.15); }
.fclear, .linklike {
  border: 0; background: none; font: inherit; font-size: .82rem; font-weight: 600;
  color: var(--c-primary); cursor: pointer; text-decoration: underline; padding: 0;
}
.fsort {
  margin-left: auto; font-size: .82rem; color: var(--c-text2);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.fsort select {
  font: inherit; font-size: .85rem; padding: 7px 9px; border: 1px solid var(--c-border);
  border-radius: 0; background: var(--c-white); color: var(--c-text);
}

/* ── Facettes (communes rail / tiroir) ────────────────────── */
.fgroup .fgroup-h {
  margin: 0 0 9px; font-size: .67rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-text3);
}
.fopts { display: flex; flex-wrap: wrap; gap: 6px; }
.fopt {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border: 1px solid var(--c-border); border-radius: 0;
  background: var(--c-white); font: inherit; font-size: .85rem; color: var(--c-text2);
  cursor: pointer; transition: border-color var(--t), background var(--t), color var(--t);
}
.fopt:hover { border-color: var(--c-primary-l); color: var(--c-text); }
.fopt[aria-pressed="true"] {
  background: var(--c-accent); border-color: var(--c-accent); color: #fff; font-weight: 600;
}
.fopt[aria-pressed="true"] em { background: rgba(255,255,255,.22); color: #fff; }
.fopt em {
  font-style: normal; font-size: .71rem; font-weight: 700; color: var(--c-text3);
  background: var(--c-bg2); border-radius: 0; padding: 1px 6px; min-width: 18px;
  text-align: center;
}
.fopt.zero { opacity: .32; }
.fdot { width: 15px; height: 15px; border-radius: 0;
  border: 1px solid rgba(0,0,0,.18); flex: 0 0 auto; }

/* Pastilles couleur : compactes, le nom vit dans title/aria-label et en chip */
.swatches-row { gap: 7px; }
.fopt.fswatch { padding: 4px 8px 4px 5px; gap: 5px; }
.fopt.fswatch .fdot { width: 18px; height: 18px; }
.fopt.fswatch em { font-size: .68rem; padding: 0 4px; }

/* ── Rail desktop ─────────────────────────────────────────── */
.frail-head { display: none; }
.fpanel-head, .fpanel-foot, .fscrim { display: none; }

@media (min-width: 921px) {
  .gridblock:not(.no-js) {
    display: grid; column-gap: 30px; align-items: start;
    grid-template-columns: 250px minmax(0, 1fr);
    grid-template-areas: "rail bar" "rail main";
  }
  .fpanel   { grid-area: rail; }
  .fbar     { grid-area: bar; }
  .gridmain { grid-area: main; }

  .fpanel {
    position: sticky; top: 100px;
    max-height: calc(100dvh - 120px); overflow-y: auto;
    padding: 16px 18px 18px;
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: 0; box-shadow: var(--shadow-xs);
    scrollbar-width: thin;
  }
  .frail-head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
    padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--c-border);
  }
  .frail-head b { font-size: .95rem; }
  .fgroups { display: flex; flex-direction: column; gap: 18px; }
  .fbtn, .fclear-bar { display: none; }     /* pas de bouton : le rail est déjà là */
  .prod-grid { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
}

/* ── Sous 1024px : tiroir bas ─────────────────────────────── */
@media (max-width: 920px) {
  .fpanel {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: 0; box-shadow: var(--shadow-xs);
    margin: -6px 0 20px; padding: 20px 22px; display: none;
  }
  .fpanel.open { display: block; }
  .fgroups { display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 780px) {
  .fbar { position: sticky; top: 68px; z-index: 30; gap: 9px; }
  .fsort { margin-left: 0; width: 100%; }
  .fsort select { flex: 1; }
  .fchips { order: 5; width: 100%; flex: none; }

  .fscrim {
    display: block; position: fixed; inset: 0; z-index: 70;
    background: rgba(42,33,24,.45); opacity: 0; visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
  }
  .fscrim.open { opacity: 1; visibility: visible; }

  .fpanel {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 71;
    margin: 0; border: 0; border-radius: 0;
    max-height: 86dvh; overflow-y: auto;
    padding: 0 0 calc(78px + env(safe-area-inset-bottom));
    transform: translateY(100%); visibility: hidden;
    transition: transform .3s cubic-bezier(.32,.72,0,1), visibility .3s;
    box-shadow: 0 -12px 40px rgba(42,33,24,.22);
  }
  .fpanel.open { transform: translateY(0); visibility: visible; }
  .fpanel-head {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; background: var(--c-white); z-index: 2;
    padding: 16px 20px 12px; border-bottom: 1px solid var(--c-border);
  }
  .fpanel-head::before {
    content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    width: 38px; height: 4px; border-radius: 0; background: var(--c-border);
  }
  .fpanel-head b { font-size: 1.05rem; }
  .fclose {
    border: 0; background: var(--c-bg2); width: 32px; height: 32px; border-radius: 0;
    font-size: 1.3rem; line-height: 1; color: var(--c-text2); cursor: pointer;
  }
  .fgroups { grid-template-columns: 1fr; gap: 22px; padding: 18px 20px 8px; }
  .fopt { padding: 9px 14px; font-size: .9rem; }
  .fopt.fswatch { padding: 6px 11px 6px 7px; }
  .fopt.fswatch .fdot { width: 22px; height: 22px; }
  .fpanel-foot {
    display: flex; gap: 10px; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--c-white); border-top: 1px solid var(--c-border);
  }
  .fpanel-foot .btn { flex: 1; padding: 13px 16px; }
  .fpanel-foot .btn-ghost { flex: 0 0 96px; }
  body.fpanel-lock { overflow: hidden; }
}

/* ── Grille & état vide ───────────────────────────────────── */
.prod-card[hidden] { display: none !important; }
.fempty { text-align: center; padding: 44px 20px; color: var(--c-text2); font-size: .95rem; }

/* Chip texte (tailles) — sans pastille couleur */
.swatch.plain { padding: 5px 13px; font-weight: 600; color: var(--c-text); }

/* ═══ Configurateur du produit héros ═══════════════════════
   Bloc best-seller au-dessus de la grille sur les pages occasion.
   Deux colonnes desktop : wizard à gauche, récap collant à droite. */

.herocfg { margin-bottom: 34px; }
.herocfg-head { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.herocfg-head .badge {
  display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto;
  background: var(--c-cta); color: #fff; border-radius: 0;
  padding: 5px 13px; font-size: .72rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
}
.herocfg-head h2 { margin: 0 0 .25em; }
.herocfg-head p { margin: 0; max-width: 62ch; }

.configurator-root { min-height: 120px; }
.configurator-loading, .configurator-fallback {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; padding: 30px; text-align: center; color: var(--c-text2);
}
.configurator-spinner {
  display: inline-block; width: 22px; height: 22px; margin-bottom: 10px;
  border: 2px solid var(--c-border); border-top-color: var(--c-primary);
  border-radius: 0; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Wizard ───────────────────────────────────────────────── */
.wz { display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
.wz-main {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 0; padding: 24px 26px; box-shadow: var(--shadow-xs);
}
.wz-progress {
  list-style: none; margin: 0 0 22px; padding: 0 0 16px;
  display: flex; gap: 8px; border-bottom: 1px solid var(--c-border);
}
.wz-step { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--c-text3); }
.wz-step + .wz-step::before { content: ''; width: 18px; height: 1px; background: var(--c-border); }
.wz-step-n {
  width: 24px; height: 24px; border-radius: 0; display: grid; place-items: center;
  background: var(--c-bg2); color: var(--c-text3); font-weight: 800; font-size: .78rem;
}
.wz-step.is-on { color: var(--c-text); font-weight: 700; }
.wz-step.is-on .wz-step-n { background: var(--c-accent); color: #fff; }
.wz-step.is-done .wz-step-n { background: var(--c-accent-l); color: var(--c-accent-d); }
.wz-h { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--c-text); font-size: 1.1rem; margin: 0 0 .3em; }
.wz-help { font-size: .9rem; margin-bottom: 20px; }
.wz-field { margin-bottom: 22px; }
.wz-label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
.wz-opt { font-weight: 500; color: var(--c-text3); font-size: .82rem; }
.wz-input, .wz-ta {
  width: 100%; font: inherit; font-size: .93rem; padding: 10px 12px;
  border: 1px solid var(--c-border); border-radius: 0; background: var(--c-white);
}
.wz-ta { resize: vertical; }
.wz-grid2 { display: grid; gap: 0 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.wz-note, .wz-hint { font-size: .82rem; color: var(--c-text3); margin: 8px 0 0; }
.wz-msg { font-size: .88rem; color: var(--c-cta-h); font-weight: 600; }

/* Quantité */
.wz-qty { display: flex; align-items: center; gap: 14px; }
.wz-qty input[type=range] { flex: 1; accent-color: var(--c-cta); height: 26px; }
.wz-qty input[type=number] {
  width: 96px; font: inherit; font-weight: 700; font-size: 1rem; text-align: right;
  padding: 9px 10px; border: 1px solid var(--c-border); border-radius: 0;
}
.wz-tier { margin-top: 10px; font-size: .9rem; color: var(--c-text2); }
.wz-tier s { color: var(--c-text3); }
.wz-tier strong { color: var(--c-text); }
.wz-tier.is-warn { color: var(--c-warn); font-weight: 600; }
.wz-tag {
  display: inline-block; background: var(--c-accent-l); color: var(--c-accent-d);
  border-radius: 0; padding: 1px 8px; font-size: .74rem; font-weight: 800;
}

/* Coloris */
.wz-sws { display: flex; flex-wrap: wrap; gap: 8px; }
.wz-sw {
  width: 34px; height: 34px; padding: 3px; border-radius: 0; cursor: pointer;
  border: 2px solid transparent; background: none; transition: border-color var(--t);
}
.wz-sw i { display: block; width: 100%; height: 100%; border-radius: 0;
  border: 1px solid rgba(0,0,0,.15); }
.wz-sw:hover { border-color: var(--c-border); }
.wz-sw.is-on { border-color: var(--c-accent); }
.wz-colour-name { font-size: .84rem; color: var(--c-text2); margin: 9px 0 0; font-weight: 600; }

/* Cartes d'options */
.wz-cards { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.wz-card {
  position: relative; display: flex; align-items: center; gap: 10px; text-align: left;
  padding: 13px 15px; border: 1px solid var(--c-border); border-radius: 0;
  background: var(--c-white); font: inherit; cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.wz-card:hover { border-color: var(--c-primary-l); }
.wz-card.is-on { border-color: var(--c-accent); background: var(--c-accent-l); }
.wz-card-body { display: flex; flex-direction: column; gap: 2px; }
.wz-card-name { font-weight: 700; font-size: .9rem; color: var(--c-text); }
.wz-card-price { font-size: .8rem; color: var(--c-text2); }
.wz-card-check {
  margin-left: auto; width: 20px; height: 20px; border-radius: 0;
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
  background: var(--c-bg2); color: transparent;
}
.wz-card.is-on .wz-card-check { background: var(--c-accent); color: #fff; }
.wz-sub { margin-top: 10px; }

.wz-nav { display: flex; gap: 10px; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--c-border); }
.wz-nav .btn { min-width: 130px; }
.wz-nav #wz-next { margin-left: auto; }

/* ── Récap ────────────────────────────────────────────────── */
.wz-recap {
  position: sticky; top: 88px;
  background: var(--c-accent-l); border: 1px solid var(--c-border);
  border-radius: 0; padding: 20px 22px; font-size: .9rem;
}
.wz-recap-img { border-radius: 0; overflow: hidden; margin-bottom: 14px; }
.wz-recap-img img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
.wz-recap-title { font-weight: 800; color: var(--c-text); margin: 0 0 12px; font-size: .95rem; }
.wz-r { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.06); color: var(--c-text2); }
.wz-r:last-of-type { border-bottom: 0; }
.wz-r s { color: var(--c-text3); }
.wz-r strong { color: var(--c-text); }
.wz-r-sub { font-size: .82rem; color: var(--c-text3); padding-top: 0; border-bottom: 0; }
.wz-r-hint { color: var(--c-text3); font-weight: 500; }
.wz-r-disc { color: var(--c-ok); font-weight: 700; }
.wz-r-total { border-top: 2px solid var(--c-accent); margin-top: 6px; padding-top: 11px;
  font-size: 1rem; }
.wz-r-total strong { font-size: 1.2rem; color: var(--c-accent-d); }
.wz-recap-vat, .wz-recap-delay { font-size: .8rem; color: var(--c-text2); margin: 10px 0 0; }
.wz-recap-empty { color: var(--c-text2); margin: 0; }
.wz-inc { background: var(--c-white); border: 1px solid var(--c-cta);
  border-radius: 0; padding: 12px 14px; margin-top: 14px; }
.wz-inc p { font-size: .84rem; margin: 0 0 9px; color: var(--c-text); }
.wz-inc-btn {
  width: 100%; border: 0; background: var(--c-cta); color: #fff; font: inherit;
  font-size: .84rem; font-weight: 700; padding: 8px 12px; border-radius: 0;
  cursor: pointer;
}
.wz-inc-btn:hover { background: var(--c-cta-h); }
.wz-guar { margin-top: 14px; font-size: .82rem; }
.wz-guar summary { cursor: pointer; font-weight: 700; color: var(--c-accent-d); }
.wz-guar p { margin: 8px 0 0; font-size: .82rem; }

@media (max-width: 900px) {
  .wz { grid-template-columns: 1fr; }
  .wz-recap { position: static; order: -1; }   /* le prix d'abord sur mobile */
  .wz-main { padding: 20px 18px; }
  .wz-progress { gap: 4px; }
  .wz-step-l { display: none; }
  .wz-step.is-on .wz-step-l { display: inline; }
}

/* Cartes d'options avec visuel (étape 2 du configurateur) */
.wz-cards-visual { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.wz-card-visual { flex-direction: column; align-items: stretch; padding: 0; overflow: hidden; }
.wz-card-img { display: block; background: var(--c-bg2); border-bottom: 1px solid var(--c-border); }
.wz-card-img img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.wz-card-visual .wz-card-body { padding: 12px 14px; }
.wz-card-visual .wz-card-check { position: absolute; top: 10px; right: 10px; margin: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.wz-card-visual.is-on .wz-card-img { border-bottom-color: var(--c-accent); }
.wz-card-icon { flex: 0 0 auto; width: 26px; height: 26px; color: var(--c-primary); }
.wz-card-icon svg { width: 100%; height: 100%; display: block; }
.wz-card.is-on .wz-card-icon { color: var(--c-accent-d); }


/* ═══ ATELIER — overrides finaux ═══════════════════════════
   Placé en fin de feuille : à spécificité égale, la dernière règle gagne.
   C'est ce qui permet de re-skinner les composants existants sans les réécrire. */

/* Titres en serif, poids 400 — jamais de gras sur du Marcellus. */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* Surtitre de section : capitales espacées + filet laiton de 56 px. */
.kicker {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass-d);
}
.kicker::after { content: ''; width: 56px; height: 1px; background: var(--brass); }

/* Boutons rectangulaires, capitales espacées, sans ombre colorée. */
.btn {
  border-radius: 0; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 700; font-size: .9rem; padding: 15px 30px; box-shadow: none;
}
.btn-cta, .btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-cta:hover, .btn-solid:hover { background: var(--brass-d); border-color: var(--brass-d);
  color: var(--white); transform: none; box-shadow: none; }
.btn-ghost, .btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-line:hover { color: var(--brass-d); border-color: var(--brass-d);
  background: transparent; }


/* Éléments circulaires conservés : pastilles de couleur, badges, puces. */
.eyebrow::before, .swatch i, .fdot, .wz-sw, .wz-sw i, .step-n,
.wz-step-n, .wz-card-check, .fbtn em, .prod-thumb::after { border-radius: 50%; }
.eyebrow, .swatch, .fchip, .fopt, .wz-tag, .herocfg-head .badge,
.cat-kicker, .tag { border-radius: 999px; }
.fopt.fswatch .fdot, .wz-sw i { border-radius: 50%; }

/* Header : le fond était figé sur l'ancien crème. */
.site-header { background: color-mix(in srgb, var(--paper) 94%, transparent); }
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--paper); }
}

/* Hero : panneau indigo pleine largeur (structure 2 colonnes = étape suivante). */
.hero { background: var(--ink); }
.hero .lede, .hero .body { color: rgba(245, 244, 239, .82); }
.hero-facts div strong { font-family: var(--serif); font-weight: 400; }

/* Chiffres et prix en serif — signature du design Atelier. */
.hero-facts div strong, .wz-r-total strong, .price-from,
.prod-price, .wz-recap-title, .meter + span { font-family: var(--serif); font-weight: 400; }

/* Tableaux : en-têtes capitales sur paper2, prix online en laiton. */
table.data thead th { background: var(--paper2); color: var(--ink); }
table.data td strong { color: var(--brass-d); }

/* ═══ ATELIER — Hero vidéo plein cadre + factbar ═══════════ */

.hero {
  position: relative; isolation: isolate;
  background: var(--paper); color: var(--ink);
  padding: 104px 0 116px; border-bottom: 1px solid var(--line);
}

/* Le conteneur peint DÉJÀ le poster : si la vidéo ne démarre pas
   (autoplay refusé, preload="none", prefers-reduced-motion), l'arrière-plan
   reste juste — la vidéo ne fait que se superposer. */
.hero-media {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
  background: var(--paper2) url('/media/hero-fan-terracotta.jpg') 64% 42% / cover no-repeat;
}
.hero-vid {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: 64% 42%;
}

/* Voile papier : opaque à gauche sous le texte, nul à droite sur l'éventail.
   Le second dégradé raccorde le bas du hero à la factbar. */
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(97deg,
      rgba(245, 244, 239, .98) 0%,  rgba(245, 244, 239, .96) 24%,
      rgba(245, 244, 239, .74) 40%, rgba(245, 244, 239, .24) 58%,
      rgba(245, 244, 239, 0)   74%),
    linear-gradient(to top,
      rgba(245, 244, 239, .70) 0%,  rgba(245, 244, 239, 0)   26%);
}

@media (prefers-reduced-motion: reduce) { .hero-vid { display: none; } }

.hero .wrap { position: relative; }
.hero-copy { max-width: 34rem; }
.hero h1 { color: var(--ink); max-width: 15ch; margin-bottom: .35em; }
.hero .lede { font-size: 1.15rem; max-width: 38ch; color: var(--ink2); }
.hero .fine { font-size: .93rem; max-width: 42ch; color: var(--ink3); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; border: 0; padding: 0; }

.stamp {
  position: absolute; top: -13px; left: 28px; z-index: 1;
  background: var(--brass-d); color: var(--paper);
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 0; white-space: nowrap;
}

/* Carte prix posée en bas à droite, en léger débord sur l'image. */
.pquote {
  position: absolute; right: 0; bottom: -46px; width: 268px;
  background: var(--ink); color: var(--paper); padding: 26px 28px;
  box-shadow: 0 22px 54px rgba(31, 41, 66, .30);
}
.q1 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.q2 { font-family: var(--serif); font-size: 1.7rem; line-height: 1.2; margin: 6px 0 2px; }
.q2 span { font-size: .9rem; color: #8F97AE; }
.q3 { font-size: .78rem; color: #8F97AE; }

/* ── Factbar ──────────────────────────────────────────────── */
.factbar { background: var(--paper2); border-bottom: 1px solid var(--line); }
.factbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); padding-inline: 0; }
.factbar div { padding: 26px 18px; border-left: 1px solid var(--line); text-align: center; }
.factbar div:first-child { border-left: 0; }
.factbar strong { display: block; font-family: var(--serif); font-weight: 400;
  font-size: 2rem; line-height: 1.1; color: var(--ink); }
.factbar span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3); }

@media (max-width: 1080px) {
  .hero { padding: 84px 0 104px; }
  .pquote { width: 236px; padding: 22px 24px; }
}

/* Sous 900 px la mise en page devient verticale : le texte occupe le haut sur
   voile plein, l'éventail respire dans la réserve du bas. */
@media (max-width: 900px) {
  .hero { padding: 54px 0 300px; }
  .hero-media { background-position: 58% 26%; }
  .hero-vid { object-position: 58% 26%; }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(245, 244, 239, .97) 0%,  rgba(245, 244, 239, .94) 36%,
        rgba(245, 244, 239, .32) 58%, rgba(245, 244, 239, 0)   76%),
      linear-gradient(to top,
        rgba(245, 244, 239, .88) 0%,  rgba(245, 244, 239, 0)   20%);
  }
  .hero-copy { max-width: none; }
  .hero .lede, .hero .fine { max-width: 46ch; }
  .pquote { position: relative; right: auto; bottom: auto;
    width: auto; max-width: 320px; margin-top: 46px; }
  .stamp { left: 22px; }
  .factbar .wrap { grid-template-columns: 1fr 1fr; }
  .factbar div:nth-child(3) { border-left: 0; }
  .factbar div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* Carte prix : le libellé ne doit jamais déborder du panneau. */
.q1 { overflow-wrap: anywhere; }

/* ═══ ATELIER — configurateur : wizard 3 étapes, bloc unique ═══
   Un SEUL panneau : plus de cartes flottantes ni d'écarts gris. Les deux
   colonnes et les sections internes ne sont séparées que par des filets. */

.cfgC {
  display: grid; gap: 0; align-items: stretch;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(31, 41, 66, .09);
}

/* ── Colonne contrôles ────────────────────────────────────── */
.cfgC-ctrl { display: flex; flex-direction: column; min-width: 0; }

/* Bandeau produit — ancre le bloc, visible à toutes les étapes. */
.prodline {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 34px; border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.prodline img { width: 72px; height: 72px; object-fit: cover; flex: 0 0 auto;
  border: 1px solid var(--line); background: var(--white); }
.prodline b { display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.12rem; line-height: 1.25; color: var(--ink); }
.prodline > div span { font-size: .84rem; color: var(--ink2); }
.prodline-ref { margin-left: auto; align-self: flex-start; white-space: nowrap;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }

/* ── Fil d'étapes ─────────────────────────────────────────── */
.wz-progress {
  display: grid; grid-template-columns: repeat(3, 1fr);
  list-style: none; margin: 0; padding: 0;
  border-bottom: 1px solid var(--line); background: var(--paper2);
}
.wz-step {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  padding: 15px 16px; border-left: 1px solid var(--line);
  font-size: .8rem; color: var(--ink3); cursor: default;
}
.wz-step:first-child { border-left: 0; }
.wz-step-n {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--white);
  font-size: .76rem; font-weight: 700; color: var(--ink3);
}
.wz-step-l { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wz-step.is-current { background: var(--white); color: var(--ink); font-weight: 700; }
.wz-step.is-current .wz-step-n { background: var(--ink); border-color: var(--ink);
  color: var(--paper); }
.wz-step.is-done { cursor: pointer; color: var(--ink2); }
.wz-step.is-done:hover { background: var(--white); }
.wz-step.is-done .wz-step-n { background: var(--brass-d); border-color: var(--brass-d);
  color: var(--paper); font-size: 0; }
.wz-step.is-done .wz-step-n::after { content: '✓'; font-size: .72rem; }

/* ── Corps de l'étape ─────────────────────────────────────── */
.wz-body { flex: 1 1 auto; padding: 30px 34px 8px; min-width: 0; }
.wz-h { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--c-text); font-size: 1.32rem; margin: 0 0 6px; }
.wz-help { font-size: .89rem; color: var(--ink2); margin: 0 0 22px; max-width: 52ch; }

/* Les sections ne sont séparées que par un filet : aucun écart gris. */
.wz-field { padding: 20px 0; border-top: 1px solid var(--line); }
.wz-field:first-of-type { padding-top: 0; border-top: 0; }
.wz-label { display: block; margin-bottom: 11px; font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }
.wz-optional { font-weight: 400; letter-spacing: .04em; text-transform: none;
  color: var(--ink3); font-size: .8rem; }
.wz-req { color: var(--brass-d); }

/* ── Quantité : curseur + saisie ──────────────────────────── */
.wz-qty { display: flex; align-items: center; gap: 18px; }
.wz-qty input[type=range] { flex: 1 1 auto; min-width: 0; accent-color: var(--brass-d);
  height: 22px; }
.wz-qty input[type=number] {
  flex: 0 0 auto; width: 104px; padding: 11px 10px; text-align: center;
  border: 1px solid var(--ink); background: var(--white);
  font: 700 1.05rem var(--sans); color: var(--ink); border-radius: 0;
}
.wz-qty input[type=number]:focus-visible { outline: 2px solid var(--brass); outline-offset: -1px; }
.wz-qty-tier { margin-top: 10px; font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brass-d); font-weight: 700; }
.wz-qty-hint { margin-top: 5px; font-size: .78rem; color: var(--ink3); }

/* ── Nuancier ─────────────────────────────────────────────── */
.swatches { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; }
.sw { width: 30px; height: 30px; border-radius: 50%; padding: 0;
  border: 1px solid rgba(0, 0, 0, .15); cursor: pointer; transition: box-shadow var(--t); }
.sw:hover { box-shadow: 0 0 0 2px var(--line); }
.sw.on { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--brass); }
.swname { margin-top: 9px; min-height: 1.2em; font-size: .85rem; color: var(--ink2); }

/* ── Cartes options / conditionnement ─────────────────────── */
.wz-cards { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wz-cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wz-card {
  position: relative; display: flex; align-items: center; gap: 13px; text-align: left;
  padding: 12px; border: 1px solid var(--line); background: var(--white);
  cursor: pointer; font: inherit; color: inherit; border-radius: 0;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.wz-card:hover { border-color: var(--ink3); }
.wz-card.is-selected { border-color: var(--brass-d); background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--brass-d); }
.wz-card-img, .wz-card-icon { flex: 0 0 auto; width: 62px; height: 62px;
  border: 1px solid var(--line); background: var(--paper2); overflow: hidden; }
.wz-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wz-card-icon { display: grid; place-items: center; color: var(--ink3); }
.wz-card-icon svg { width: 26px; height: 26px; }
.wz-card.is-selected .wz-card-icon { color: var(--brass-d); }
.wz-card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wz-card-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.wz-card-hint { font-size: .76rem; color: var(--ink3); }
.wz-card-price { font-family: var(--serif); font-size: .98rem; color: var(--brass-d); }
.wz-card-check {
  position: absolute; top: 7px; right: 8px; width: 19px; height: 19px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem;
  background: var(--brass-d); color: var(--paper);
  opacity: 0; transform: scale(.6); transition: opacity var(--t), transform var(--t);
}
.wz-card.is-selected .wz-card-check { opacity: 1; transform: scale(1); }
.wz-card-sm { padding: 10px; }
.wz-card-sm .wz-card-icon { width: 46px; height: 46px; }
.wz-opt-sub { margin-top: 12px; }

/* ── Champs texte ─────────────────────────────────────────── */
.wz-input { width: 100%; font: inherit; font-size: .93rem; padding: 11px 12px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  border-radius: 0; }
.wz-input:focus-visible { outline: 2px solid var(--brass); outline-offset: -1px; }
.wz-textarea { resize: vertical; }
.wz-grid2 { display: grid; gap: 0 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wz-grid2 .wz-field { border-top: 0; padding: 9px 0; }
.wz-col2 { grid-column: 1 / -1; }
.wz-field-err { margin: 7px 0 0; font-size: .81rem; font-weight: 700; color: var(--c-err); }

.wz-consent { display: flex; gap: 11px; align-items: flex-start;
  padding: 18px 0 4px; border-top: 1px solid var(--line);
  font-size: .86rem; color: var(--ink2); cursor: pointer; }
.wz-consent input { width: 18px; height: 18px; margin: 2px 0 0;
  accent-color: var(--brass-d); flex: 0 0 auto; }

.wz-recapline { margin-top: 18px; padding: 13px 16px; background: var(--paper2);
  border-left: 2px solid var(--brass); font-size: .87rem; color: var(--ink2); }
.wz-recapline b { color: var(--ink); }

/* ── Zone de dépôt ────────────────────────────────────────── */
.drop { position: relative; border: 1px dashed var(--line); background: var(--paper);
  transition: border-color var(--t), background var(--t); }
.drop.over { border-color: var(--brass); background: var(--paper2); }
.drop-input { position: absolute; opacity: 0; width: .1px; height: .1px; }
.drop label { display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 26px 18px; text-align: center; cursor: pointer; color: var(--ink2); }
.drop label svg { color: var(--brass-d); }
.drop label b { color: var(--ink); }
.drop label small { font-size: .76rem; color: var(--ink3); }
.drop-input:focus-visible + label { outline: 2px solid var(--brass); outline-offset: 2px; }

.filelist { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; }
.filelist li { display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  background: var(--paper2); font-size: .84rem; color: var(--ink2); }
.filelist span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-x { margin-left: auto; border: 0; background: none; cursor: pointer;
  font-size: 1.05rem; line-height: 1; color: var(--ink3); padding: 0 2px; }
.file-x:hover { color: var(--brass-d); }
.wz-upload-hint, .wz-bat { margin: 11px 0 0; font-size: .79rem; color: var(--ink3); }
.wz-bat b { color: var(--ink2); }
.wz-nodesign { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }

/* ── Navigation ───────────────────────────────────────────── */
.wz-nav { display: flex; gap: 12px; align-items: center;
  padding: 18px 34px; border-top: 1px solid var(--line); background: var(--paper); }
.wz-next { margin-left: auto; }

/* ── Document de devis ────────────────────────────────────── */
.quote-doc {
  position: relative; background: var(--white);
  border-left: 1px solid var(--line); padding: 40px 40px 34px;
  display: flex; flex-direction: column; min-width: 0;
}
.quote-doc::before { content: ''; position: absolute; inset: 0 0 auto 0;
  height: 4px; background: var(--brass); }
.qd-head { display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  border-bottom: 1px solid var(--ink); padding-bottom: 16px; margin-bottom: 8px; }
.qd-head h3 { font-size: 1.5rem; margin: 0; }
.qd-ref { text-align: right; line-height: 1.6; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); }

.qd-lines { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 0; }
.qd-lines td { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink2); }
.qd-lines td.r { text-align: right; white-space: nowrap; color: var(--ink); font-weight: 700; }
.qd-dim { color: var(--ink3); font-size: .82rem; }
.qd-quote td.r { font-weight: 400; color: var(--ink3); }

.qd-sub { display: flex; justify-content: space-between; padding: 3px 0;
  font-size: .86rem; color: var(--ink2); }
.was { color: var(--ink3); text-decoration: line-through; }
.qd-disc { color: var(--brass-d); font-weight: 700; }
.qd-tot { display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 4px; }
.qd-tot b { font-family: var(--serif); font-weight: 400; font-size: 2.2rem; color: var(--ink); }
.qd-meta { border-top: 1px solid var(--ink); margin-top: 16px; padding-top: 14px;
  display: grid; gap: 6px; font-size: .85rem; color: var(--ink2); }
.qd-tipline { background: var(--paper2); border-left: 2px solid var(--brass);
  padding: 10px 14px; margin-top: 16px; font-size: .85rem; color: var(--ink2); }
.qd-cta { width: 100%; margin-top: 20px; }
.qd-foot { margin: 14px 0 0; font-size: .78rem; color: var(--ink3); text-align: center; }

/* ── Adaptations ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .wz-cards { grid-template-columns: 1fr; }
  .wz-cards-3 { grid-template-columns: 1fr; }
  .quote-doc { padding: 34px 28px 28px; }
  .wz-body { padding: 26px 26px 8px; }
  .prodline, .wz-nav { padding-inline: 26px; }
}

/* Sous 960 px : une seule colonne — le devis passe SOUS les contrôles, toujours
   dans le même bloc (filet horizontal, pas d'écart). */
@media (max-width: 960px) {
  .cfgC { grid-template-columns: 1fr; }
  .quote-doc { border-left: 0; border-top: 1px solid var(--line); }
  .quote-doc::before { display: none; }
}

@media (max-width: 620px) {
  .wz-grid2 { grid-template-columns: 1fr; }
  .wz-step-l { display: none; }
  .wz-step { justify-content: center; padding: 13px 8px; }
  .wz-qty { flex-wrap: wrap; gap: 12px; }
  .wz-qty input[type=range] { order: 2; flex-basis: 100%; }
  .prodline img { width: 56px; height: 56px; }
  .prodline-ref { display: none; }
  .wz-body { padding: 22px 18px 8px; }
  .prodline, .wz-nav { padding-inline: 18px; }
  .quote-doc { padding: 28px 18px 24px; }
  .wz-nav .btn { flex: 1 1 auto; text-align: center; }
}

/* ═══ ATELIER §4 — bloc « All models » ═════════════════════ */

/* ── Cartes produit ───────────────────────────────────────── */

/* Vignette carrée (handoff §4) : le 4/3 rendait la grille irrégulière dès que
   les photos fournisseur n'avaient pas le même ratio. */
.prod-thumb {
  aspect-ratio: 1; background: var(--paper2);
  border-bottom: 1px solid var(--line);
}
.prod-thumb.has-img { padding: 0; overflow: hidden; }

/* Le badge est une pastille de texte, pas un point : il avait été arrondi à
   50 % par la passe de dé-arrondissement globale. */
.prod-thumb::after {
  border-radius: 0; background: rgba(245, 244, 239, .9);
  padding: 3px 8px; bottom: 9px; right: 10px;
  font-size: .64rem; letter-spacing: .12em; color: var(--ink3);
}

/* Éventail filaire — remplace l'ancien titre en <em> sur les modèles sans photo. */
.prod-thumb.is-ph { display: grid; place-items: center; }
.prod-thumb.is-ph .fan-ph { width: 46%; height: auto; color: var(--line); }
.prod-thumb.is-ph::after { content: 'Photo pending'; }

/* Rangée de pastilles des coloris stock, 6 max + « +N ». */
.card-sw { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.cdot {
  width: 15px; height: 15px; border-radius: 50%; flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, .16);
}
.cmore { font-size: .72rem; letter-spacing: .06em; color: var(--ink3); }

.prod-card { box-shadow: none; }
.prod-card:hover { border-color: var(--brass-d); box-shadow: 0 12px 30px rgba(31, 41, 66, .10); }

/* ── Tiroir off-canvas ≤ 920 px ───────────────────────────── */
/* Le handoff demande un tiroir GAUCHE de 320 px. L'implémentation précédente
   était une feuille qui montait du bas, et seulement sous 780 px : on reprend
   la mécanique au bon sens et au bon palier. Ce bloc arrive après les règles
   d'origine — il les remplace par la cascade, sans les supprimer pour autant. */
@media (max-width: 920px) {
  .fscrim {
    display: block; position: fixed; inset: 0; z-index: 70;
    background: rgba(31, 41, 66, .45);            /* scrim indigo 45 % */
    opacity: 0; visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
  }
  .fscrim.open { opacity: 1; visibility: visible; }

  .fpanel {
    display: block; position: fixed; inset: 0 auto 0 0; right: auto; z-index: 71;
    width: min(320px, 88vw); max-height: none; max-width: none;
    margin: 0; border: 0; border-right: 1px solid var(--line);
    overflow-y: auto; background: var(--white);
    padding: 0 0 calc(78px + env(safe-area-inset-bottom));
    transform: translateX(-100%); visibility: hidden;
    transition: transform .3s cubic-bezier(.32, .72, 0, 1), visibility .3s;
    box-shadow: 12px 0 40px rgba(31, 41, 66, .18);
  }
  .fpanel.open { transform: translateX(0); visibility: visible; }

  .fpanel-head {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 2; background: var(--white);
    padding: 18px 20px 14px; border-bottom: 1px solid var(--ink);
  }
  .fpanel-head::before { display: none; }        /* la poignée n'a plus de sens */
  .fpanel-head b { font-size: 1.05rem; font-family: var(--serif); font-weight: 400; }
  .fclose {
    border: 1px solid var(--line); background: var(--white); border-radius: 0;
    width: 32px; height: 32px; font-size: 1.2rem; line-height: 1;
    color: var(--ink2); cursor: pointer;
  }
  .fclose:hover { border-color: var(--brass-d); color: var(--brass-d); }

  .fgroups { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 18px 20px 8px; }

  .fpanel-foot {
    display: flex; gap: 10px; position: fixed; bottom: 0; left: 0;
    width: min(320px, 88vw); z-index: 72;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--white); border-top: 1px solid var(--line);
  }
  .fpanel-foot .btn { flex: 1; padding: 13px 16px; }
  .fpanel-foot .btn-ghost { flex: 0 0 96px; }
  body.fpanel-lock { overflow: hidden; }
}

/* Badge laiton du bouton « Filters » : compteur de filtres actifs. */
.fbtn em {
  font-style: normal; background: var(--brass-d); color: var(--paper);
  min-width: 19px; height: 19px; padding: 0 5px;
  display: inline-grid; place-items: center;
  font-size: .7rem; font-weight: 700; margin-left: 7px;
}

@media (max-width: 620px) {
  .card-sw { gap: 5px; }
  .cdot { width: 13px; height: 13px; }
}

/* État vide : encart pointillé + lien de réinitialisation (handoff §4). */
.fempty {
  border: 1px dashed var(--line); background: var(--paper);
  padding: 34px 26px; text-align: center; color: var(--ink2); font-size: .93rem;
}
.fempty .linklike {
  border: 0; background: none; padding: 0; cursor: pointer; font: inherit;
  color: var(--brass-d); text-decoration: underline; text-underline-offset: 3px;
}
.fempty .linklike:hover { color: var(--ink); }

/* ═══ ATELIER §2.6–2.9 — paliers, process, CTA, footer ═════ */

/* ── §2.6 Quantity breaks ─────────────────────────────────── */
table.data {
  background: var(--white); border: 1px solid var(--line);
  border-collapse: collapse; font-size: .96rem;
}
table.data thead th {
  background: var(--paper2); color: var(--ink3);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 20px; border-bottom: 1px solid var(--ink);
}
table.data td { padding: 14px 20px; border-bottom: 1px solid var(--line); color: var(--ink2); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--paper); }
table.data td s { color: var(--ink3); }
table.data td strong { color: var(--brass-d); font-size: 1.05rem;
  font-family: var(--serif); font-weight: 400; }

/* Callout −10 % : fond blanc, filet gauche laiton (et non plus pavé coloré). */
.callout {
  background: var(--white); border: 1px solid var(--line); border-left: 2px solid var(--brass);
  padding: 18px 22px; font-size: .92rem; color: var(--ink2);
}
.callout strong { color: var(--ink); }

/* ── §2.7 Process — 4 cellules bordées, chiffres romains ──── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); background: var(--white);
}
.step { padding: 30px 26px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; }
.step .n {
  display: block; margin-bottom: 12px; line-height: 1;
  font-family: var(--serif); font-weight: 400; font-size: 2.2rem; color: var(--brass);
}
.step h3 { font-size: 1.1rem; margin-bottom: .4em; color: var(--ink); }
.step p { font-size: .92rem; margin: 0; color: var(--ink2); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3) { border-left: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
}

/* ── §2.8 CTA final — panneau indigo, éventail en filigrane ── */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: var(--ink); color: var(--paper); padding: 100px 0;
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: #C3C8D8; max-width: 56ch; margin-inline: auto; }
.cta-band .kicker { justify-content: center; color: var(--brass); }
.cta-band .kicker::after { background: var(--brass); }
.cta-band .btn-solid {
  background: var(--brass); border-color: var(--brass); color: #fff;
}
.cta-band .btn-solid:hover {
  background: var(--paper); border-color: var(--paper); color: var(--ink);
}
/* Filigrane : `currentColor` hérité de .cta-band, donc il suit le fond. */
.cta-fan {
  position: absolute; right: -90px; bottom: -140px; width: 420px;
  opacity: .14; pointer-events: none;
}
@media (max-width: 760px) {
  .cta-band { padding: 72px 0; }
  .cta-fan { width: 280px; right: -70px; bottom: -100px; }
}

/* ── §2.9 Footer — une ligne, filet haut ──────────────────── */
footer {
  background: transparent; color: var(--ink3);
  border-top: 1px solid var(--line); padding: 40px 0; font-size: .85rem;
}
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--ink2); text-decoration: none; }
footer a:hover { color: var(--brass-d); text-decoration: underline; }

/* ═══ HANDOFF 13/08 — six sections redesignées ═════════════ */

/* ── 1-range ── */
/* ══ §1 — #range : matrice transposée matières × critères ══════ */

.rx-frame { background: var(--white); border: 1px solid var(--line); }

/* Bandeau « par construction » : hors du conteneur défilant, il reste fixe. */
.rx-band {
  display: flex; align-items: center; gap: 22px;
  padding: 20px 24px; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--ink); border-left: 2px solid var(--brass);
  transition: background var(--t);
}
.rx-band:hover { background: var(--paper); }
.rx-band-tag {
  flex: 0 0 auto; font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass-d);
}
.rx-band-title { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.rx-band-note { font-size: .9rem; color: var(--ink2); }
.rx-band-arw { margin-left: auto; font-size: 1.1rem; color: var(--ink3);
  transition: color var(--t), transform var(--t); }
.rx-band:hover .rx-band-arw { color: var(--brass-d); transform: translateX(3px); }

/* Grille : 1 colonne de critères + 4 colonnes matière. */
.rx-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rx-grid {
  display: grid; grid-template-columns: 200px repeat(4, minmax(200px, 1fr));
  min-width: 1080px;
}

/* Colonne de critères : encre pleine — elle ancre la matrice au lieu de se
   fondre dans le fond de section. */
.rx-corner {
  grid-row: span 2; background: var(--ink); color: var(--paper);
  padding: 26px 22px; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 10px;
}
.rx-corner-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; }
.rx-corner-note { font-size: .85rem; line-height: 1.5; color: rgba(245, 244, 239, .72); }
.rx-lab {
  background: var(--ink); color: var(--paper);
  border-top: 1px solid rgba(245, 244, 239, .14);                /* filet interne à la colonne encre */
  padding: 15px 22px; font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.rx-foot { background: var(--ink); border-top: 1px solid rgba(245, 244, 239, .14); }

/* Cellules matière. */
.rx-media { border-left: 1px solid var(--line); }
.rx-img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.rx-name {
  margin: 0; padding: 16px 20px; border-left: 1px solid var(--line);
  font-family: var(--serif); font-weight: 400; font-size: 1.25rem;
  line-height: 1.2; color: var(--ink);
}
.rx-val {
  padding: 15px 20px; border-top: 1px solid var(--line);
  border-left: 1px solid var(--line); font-size: .9rem; color: var(--ink2);
}
.rx-val-first { border-top: 1px solid var(--ink); }   /* filet fort sous les noms */
.rx-num   { font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
  font-variant-numeric: tabular-nums; }
.rx-price { font-family: var(--serif); font-size: 1.2rem; color: var(--brass-d);
  font-variant-numeric: tabular-nums; }

/* Boutons de catégorie : laiton plein — la seule zone pleine couleur de la
   section, donc la seule chose qui se lit comme cliquable de loin. */
.rx-cell-cta { padding: 14px; border-top: 1px solid var(--line);
  border-left: 1px solid var(--line); }
.rx-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--brass); color: var(--white);
  padding: 14px 16px; text-decoration: none;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: background var(--t);
}
.rx-cta:hover { background: var(--ink); color: var(--white); }
.rx-cta:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.rx-hint { display: none; }

/* ── ≤ 960 px : colonnes un peu plus étroites, le défilement s'amorce ─── */
@media (max-width: 960px) {
  .rx-grid { grid-template-columns: 180px repeat(4, minmax(190px, 1fr)); min-width: 1000px; }
  .rx-corner { padding: 22px 18px; }
  .rx-lab { padding-inline: 18px; }
}

/* ── ≤ 760 px : colonne de critères collée, matières au doigt ─────────── */
@media (max-width: 760px) {
  .rx-grid { grid-template-columns: 126px repeat(4, 210px); width: max-content; min-width: 0; }

  .rx-corner, .rx-lab, .rx-foot { position: sticky; left: 0; z-index: 2; }
  .rx-corner { padding: 18px 14px; justify-content: flex-end; }
  .rx-corner-title { font-size: 1.1rem; }
  .rx-corner-note { display: none; }
  .rx-lab { padding: 13px 14px; font-size: .62rem; letter-spacing: .14em; }

  .rx-name { padding: 13px 16px; font-size: 1.1rem; }
  .rx-val  { padding: 13px 16px; font-size: .86rem; }
  .rx-num, .rx-price { font-size: 1.1rem; }
  .rx-cell-cta { padding: 12px; }
  .rx-cta { padding: 14px; font-size: .72rem; letter-spacing: .05em; }

  .rx-band { flex-wrap: wrap; gap: 6px 16px; padding: 16px 18px; }
  .rx-band-tag { flex-basis: 100%; }
  .rx-band-note { flex-basis: 100%; font-size: .86rem; }
  .rx-band-arw { display: none; }

  .rx-hint { display: block; margin: 12px 0 0; font-size: .78rem; color: var(--ink3); }
}

/* ── ≤ 600 px : le cadre part bord à bord, le défilement gagne 48 px ──── */
@media (max-width: 600px) {
  .rx-frame { margin-inline: -24px; border-inline: 0; }
  .rx-hint { margin-inline: 24px; }
}

/* ── 2-included ── */
/* ══ §2 — #included : trois statuts pondérés ═══════════════════ */

.qi-frame { background: var(--white); border: 1px solid var(--line); }
.qi-grid  { display: grid; grid-template-columns: 1.35fr 1.05fr .88fr; }

.qi-col { display: flex; flex-direction: column; padding: 34px 30px 30px; }
.qi-col + .qi-col { border-left: 1px solid var(--line); }
.qi-col-inc  { background: var(--ink); color: var(--paper); padding-inline: 34px; }
.qi-col-ship { padding-inline: 28px; }

/* Emplacement d'icône : carré filet, aligné sur la colonne de texte. */
.qi-ico {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 22px;
  border: 1px solid var(--line); color: var(--brass-d);
}
.qi-ico svg { width: 24px; height: 24px; display: block; }
.qi-col-inc .qi-ico { border-color: rgba(168, 134, 63, .6); color: var(--brass); }

.qi-kicker {
  font-size: .66rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass-d); margin-bottom: 10px;
}
.qi-col-inc .qi-kicker { color: var(--brass); }

.qi-title {
  margin: 0 0 10px; font-family: var(--serif); font-weight: 400;
  font-size: 1.5rem; line-height: 1.2; color: var(--ink);
}
.qi-col-inc .qi-title { font-size: 1.8rem; line-height: 1.15; color: var(--paper); }

.qi-lead { margin: 0 0 22px; font-size: .9rem; line-height: 1.6; color: var(--ink3); max-width: 32ch; }
.qi-col-inc .qi-lead { margin-bottom: 24px; font-size: .92rem;
  color: rgba(245, 244, 239, .72); max-width: 34ch; }

.qi-list { list-style: none; margin: auto 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 13px; }
.qi-list li { display: flex; gap: 12px; font-size: 1rem; line-height: 1.5; color: var(--ink); }
.qi-col-inc .qi-list li { color: var(--paper); }
.qi-dash { color: var(--brass); }
.qi-col-ship .qi-dash { color: var(--ink3); }
.qi-col-ship .qi-list li { font-size: .95rem; }

/* Barème : libellé, filet pointillé, prix. */
.qi-prices { gap: 11px; }
.qi-prices li { display: block; }
.qi-row { display: flex; align-items: baseline; gap: 10px; font-size: .95rem; color: var(--ink); }
.qi-leader { flex: 1; border-bottom: 1px dotted var(--line); }
.qi-price {
  font-family: var(--serif); font-size: 1.15rem; color: var(--brass-d);
  font-variant-numeric: tabular-nums;
}
.qi-bar { display: none; }        /* filet proportionnel : mobile uniquement */

/* Mentions de pied, hors colonnes. */
.qi-notes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  padding: 18px 34px; background: var(--paper2);
  border-top: 1px solid var(--line); font-size: .88rem; color: var(--ink2);
}
.qi-notes strong { color: var(--ink); }

/* ── ≤ 960 px : les trois statuts s'empilent ──────────────────────────── */
@media (max-width: 960px) {
  .qi-grid { grid-template-columns: 1fr; }
  .qi-col { padding: 22px 20px; }
  .qi-col + .qi-col { border-left: 0; border-top: 1px solid var(--line); }
  .qi-col-inc { padding-inline: 20px; }

  .qi-ico { width: 42px; height: 42px; margin-bottom: 0; }
  .qi-ico svg { width: 22px; height: 22px; }

  /* En-tête de bloc : icône à gauche, surtitre + titre à droite. */
  .qi-col { display: grid; grid-template-columns: 42px 1fr; gap: 4px 14px; align-items: center; }
  .qi-ico    { grid-row: span 2; }
  .qi-kicker { grid-column: 2; margin: 0; font-size: .6rem; letter-spacing: .2em; }
  .qi-title  { grid-column: 2; margin: 0; font-size: 1.3rem; }
  .qi-col-inc .qi-title { font-size: 1.5rem; }
  .qi-lead   { grid-column: 1 / -1; margin: 14px 0 0; max-width: none; }
  .qi-list   { grid-column: 1 / -1; margin-top: 14px; }

  /* Statut 01 : la liste se replie en une phrase à puces médianes. */
  .qi-col-inc .qi-lead { display: none; }
  .qi-list-inc { display: block; font-size: .88rem; line-height: 1.7;
    color: rgba(245, 244, 239, .86); }
  .qi-list-inc li { display: inline; font-size: .88rem; }
  .qi-list-inc li::after { content: ' · '; color: var(--brass); }
  .qi-list-inc li:last-child::after { content: ''; }
  .qi-list-inc .qi-dash { display: none; }

  /* Statut 02 : prix triés croissants + filet proportionnel sous chaque ligne. */
  .qi-prices { gap: 13px; }
  .qi-row { font-size: .9rem; }
  .qi-price { font-size: 1.1rem; }
  .qi-leader { display: none; }
  .qi-bar {
    display: block; height: 2px; margin-top: 6px; background: var(--paper2);
  }
  .qi-bar i { display: block; height: 2px; background: var(--brass); }

  /* Statut 03 : le titre et la liste tombent, la phrase suffit et devient la note. */
  .qi-col-ship { display: block; border-left: 2px solid var(--brass); padding: 14px 20px; }
  .qi-col-ship .qi-ico,
  .qi-col-ship .qi-kicker,
  .qi-col-ship .qi-title,
  .qi-list-ship { display: none; }
  .qi-ship-lead { margin: 0; font-size: .86rem; line-height: 1.55; color: var(--ink2); }
  .qi-ship-lead::before { content: 'Freight, duties and local taxes '; font-weight: 700; color: var(--ink); }

  /* Mentions : dans la continuité du bloc 03, même filet laiton. */
  .qi-notes {
    display: block; padding: 0 20px 14px; background: var(--white);
    border-top: 0; border-left: 2px solid var(--brass); margin-top: -1px;
    font-size: .86rem; line-height: 1.55;
  }
  .qi-notes span { display: inline; }
}

@media (max-width: 600px) {
  .qi-col { padding: 20px 18px; }
  .qi-col-inc { padding-inline: 18px; }
}

/* ── 3-techniques ── */
/* ══ §3 — #techniques : colonnes autonomes / matrice glissante ══ */

.tq-scroll { background: var(--white); border: 1px solid var(--line); }
.tq-grid   { display: grid; grid-template-columns: repeat(4, 1fr); }

/* Le rail n'existe qu'en mobile. */
.tq-rail { display: none; }

/* En-têtes de colonne. */
.tq-head {
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px 22px; border-bottom: 1px solid var(--ink);
}
.tq-head + .tq-head, .tq-cell + .tq-cell, .tq-works + .tq-works { border-left: 1px solid var(--line); }
.tq-head-lead { background: var(--ink); color: var(--paper); gap: 14px; }
.tq-head-top  { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tq-ico {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); color: var(--brass-d);
}
.tq-ico svg { width: 24px; height: 24px; display: block; }
.tq-head-lead .tq-ico { border-color: rgba(168, 134, 63, .6); color: var(--brass); }
.tq-flag {
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass);
}
.tq-num  { display: none; }
.tq-name {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: 1.4rem; line-height: 1.15; color: var(--ink);
}
.tq-head-lead .tq-name { color: var(--paper); }
.tq-sub { font-size: .85rem; color: var(--ink3); }
.tq-head-lead .tq-sub { color: rgba(245, 244, 239, .72); }

/* Cellules de critère. */
.tq-cell { padding: 16px 22px; border-bottom: 1px solid var(--line); }
.tq-lbl {
  display: block; margin-bottom: 6px;
  font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink3);
}
.tq-lbl-warn { color: var(--brass-d); }
.tq-val { font-size: .92rem; line-height: 1.45; color: var(--ink2); }
.tq-val-lead { font-size: 1rem; color: var(--ink); }
.tq-val-mute { font-size: .88rem; }

/* Compatibilité, en pied de colonne. */
.tq-works { padding: 16px 22px 18px; background: var(--paper2); }
.tq-works ul { list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px; font-size: .88rem; }
.tq-works li, .tq-legend li { display: flex; align-items: center; gap: 10px; }
.tq-works li i, .tq-legend li i {
  flex: 0 0 auto; width: 11px; height: 11px; border-radius: 50%;
}
li.is-yes  { color: var(--ink); }
li.is-yes  i { background: var(--brass-d); }
li.is-part { color: var(--ink2); }
li.is-part i { border: 1px solid var(--brass-d); }
li.is-no   { color: var(--ink3); }
li.is-no   i { height: 1px; border-radius: 0; background: var(--ink3); }

.tq-legend {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .84rem; color: var(--ink2);
}
.tq-cta { margin-top: 22px; }

/* ── ≤ 960 px : rail collé + défilement des méthodes ──────────────────── */
@media (max-width: 960px) {
  .tq-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-inline: 0; }
  .tq-grid   { grid-template-columns: 136px repeat(4, 214px); width: max-content; }

  .tq-rail {
    position: sticky; left: 0; z-index: 2;
    display: flex; align-items: center;
    padding: 14px 15px; background: var(--ink); color: var(--paper);
    border-top: 1px solid rgba(245, 244, 239, .14);
    font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  }
  .tq-rail-head {
    flex-direction: column; align-items: flex-start; justify-content: flex-end;
    gap: 6px; padding: 18px 15px; border-top: 0;
  }
  .tq-rail-title { font-family: var(--serif); font-weight: 400; font-size: 1.1rem;
    letter-spacing: 0; text-transform: none; line-height: 1.2; }
  .tq-swipe { color: var(--brass); letter-spacing: .14em; }
  .tq-rail-first, .tq-rail-works { border-top: 1px solid var(--brass); }

  .tq-lbl { display: none; }                 /* le rail porte les libellés */
  .tq-head { padding: 16px; gap: 7px; }
  .tq-head-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tq-ico { width: 40px; height: 40px; }
  .tq-num { display: block; font-size: .62rem; font-weight: 700;
    letter-spacing: .18em; color: var(--brass-d); }
  .tq-head-lead .tq-num { color: var(--brass); }
  .tq-name { font-size: 1.2rem; }
  .tq-sub  { font-size: .8rem; line-height: 1.4; }

  .tq-cell  { padding: 14px 16px; }
  .tq-val, .tq-val-lead, .tq-val-mute { font-size: .86rem; }
  .tq-val-lead { font-size: .9rem; }
  .tq-works { padding: 14px 16px 16px; }
  .tq-works ul { font-size: .8rem; gap: 8px; }

  .tq-legend, .tq-cta { padding-inline: 24px; }
  .tq-cta .btn { display: flex; width: 100%; justify-content: space-between;
    background: var(--brass); border-color: var(--brass); color: var(--white); }
  .tq-cta .btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
}

@media (max-width: 600px) {
  .tq-legend, .tq-cta { padding-inline: 0; }
}

/* ── 4-occasions ── */
/* ══ §4 — #occasions : cartes à cartel encre ═══════════════════ */

.oc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.oc-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  transition: border-color var(--t);
}
.oc-card:hover { border-color: var(--brass-d); }

/* Image + cartel débordant. */
.oc-media { position: relative; }
.oc-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 5 / 4; object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.oc-tag {
  position: absolute; left: 20px; bottom: -19px; margin: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px; background: var(--ink); color: var(--paper);
  font-family: var(--serif); font-weight: 400; font-size: 1.2rem; line-height: 1.1;
}
.oc-tag-ico {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid rgba(168, 134, 63, .6); color: var(--brass);
}
.oc-tag-ico svg { width: 14px; height: 14px; display: block; }

/* Le cartel dépasse de 19 px : la description démarre plus bas. */
.oc-desc {
  margin: 0; padding: 34px 22px 18px; flex: 1;
  font-size: .95rem; line-height: 1.6; color: var(--ink2); text-wrap: pretty;
}

/* Réglette de trois chiffres. */
.oc-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--paper2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.oc-fact { display: flex; flex-direction: column; padding: 13px 16px 12px; }
.oc-fact:first-child { padding-left: 22px; }
.oc-fact + .oc-fact { border-left: 1px solid var(--line); }
.oc-fact b {
  font-family: var(--serif); font-weight: 400; font-size: 1.2rem;
  line-height: 1.15; color: var(--ink); font-variant-numeric: tabular-nums;
}
.oc-fact b.is-price { color: var(--brass-d); }
.oc-fact-lbl {
  font-size: .6rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink3);
}

/* Bouton catégorie : ancre = mot-clé de la page cible. */
.oc-cta { padding: 18px 22px 20px; }
.oc-cta a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--brass); color: var(--white);
  padding: 16px 20px; text-decoration: none;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--t);
}
.oc-cta a:hover { background: var(--ink); color: var(--white); }
.oc-cta a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ── ≤ 960 px : deux colonnes ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .oc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Contraste par le dessin, pas par l'aplat. */
  .oc-card { border-color: var(--ink); }
  .oc-img  { border-bottom-color: var(--ink); }

  /* Cartel : sans icône et plus petit, le nom le plus long tient sur une ligne. */
  .oc-tag { left: 12px; bottom: -14px; padding: 7px 12px; font-size: .86rem; }
  .oc-tag-ico { display: none; }

  .oc-desc { padding: 24px 14px 12px; font-size: .82rem; line-height: 1.5; }

  /* Réglette redressée : libellé à gauche, valeur à droite. */
  .oc-facts {
    grid-template-columns: 1fr; background: var(--white);
    border-top: 1px solid var(--ink); border-bottom: 0;
  }
  .oc-fact {
    flex-direction: row-reverse; align-items: baseline;
    justify-content: space-between; gap: 8px; padding: 8px 14px;
  }
  .oc-fact:first-child { padding-left: 14px; }
  .oc-fact + .oc-fact { border-left: 0; border-top: 1px solid var(--line); }
  .oc-fact b { font-size: 1.05rem; }
  .oc-fact-lbl { color: var(--ink); }        /* plus de gris atténué */

  .oc-cta { padding: 12px 14px 14px; }
  .oc-cta a {
    justify-content: center; padding: 13px 10px;
    background: var(--ink); color: var(--paper);
    font-size: .66rem; letter-spacing: .05em;
  }
  .oc-cta a:hover { background: var(--brass-d); color: var(--white); }
}

@media (max-width: 600px) {
  .oc-grid { gap: 12px; }
  .oc-desc { padding-inline: 12px; }
  .oc-fact, .oc-fact:first-child { padding-inline: 12px; }
  .oc-cta { padding: 12px; }
}

/* ── 5-lead-time ── */
/* ══ §5 — #lead-time : frise des jours comptés ═════════════════ */

.lt-frame { background: var(--white); border: 1px solid var(--line); }

/* Frise : le filet du haut dit si l'étape est comptée. */
.lt-flow {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.lt-step {
  position: relative; padding: 22px 22px 24px;
  border-top: 2px solid var(--line);          /* étape hors fenêtre */
}
.lt-step.is-counted { border-top-color: var(--brass); }
.lt-step + .lt-step { border-left: 1px solid var(--line); }

.lt-dot {
  position: absolute; top: -6px; left: 22px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
}
.lt-step.is-counted .lt-dot { background: var(--brass-d); border-color: var(--brass-d); }

.lt-head { display: flex; align-items: baseline; gap: 10px; }
.lt-name {
  font-family: var(--serif); font-size: 1.25rem; line-height: 1.15; color: var(--ink3);
}
.lt-step.is-counted .lt-name { color: var(--ink); }
.lt-num { margin-left: auto; font-family: var(--serif); font-size: .95rem; color: var(--ink3); }
.lt-note {
  display: block; margin-top: 5px;
  font-size: .88rem; line-height: 1.5; color: var(--ink3);
}
.lt-step.is-counted .lt-note { color: var(--ink2); }
.lt-flag {
  display: inline-flex; margin-top: 12px; padding: 6px 11px;
  background: var(--brass); color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
}

/* Bandeau de base du décompte. */
.lt-basis {
  margin: 0; padding: 13px 22px;
  background: var(--paper); border-top: 2px solid var(--brass);
  font-size: .64rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass-d);
}

/* Deux paliers. */
.lt-bands { display: grid; grid-template-columns: 1fr 1fr; }
.lt-band {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
}
.lt-band + .lt-band { border-left: 1px solid var(--line); }
.lt-band-val { display: block; font-family: var(--serif); font-size: 1.25rem;
  line-height: 1.2; color: var(--ink); }
.lt-band-lbl {
  display: block; margin-top: 3px;
  font-size: .62rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink3);
}
.lt-band-days { white-space: nowrap; font-size: .8rem; color: var(--ink3); }
.lt-band-days b {
  font-family: var(--serif); font-weight: 400; font-size: 2rem;
  line-height: 1; color: var(--brass-d); margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

.lt-rule {
  margin: 0; padding: 15px 22px 17px;
  border-top: 1px solid var(--ink);
  font-size: .86rem; line-height: 1.6; color: var(--ink2);
}

/* ── ≤ 960 px : la frise se redresse ─────────────────────────────────── */
@media (max-width: 960px) {
  .lt-flow { grid-template-columns: 1fr; padding: 4px 20px 8px 18px; }

  .lt-step {
    padding: 15px 0 15px 20px;
    border-top: 0; border-left: 2px solid var(--line);
  }
  .lt-step.is-counted { border-top-color: transparent; border-left-color: var(--brass); }
  .lt-step + .lt-step { border-left-width: 2px; }
  /* filet de séparation entre étapes, sans casser le rail */
  .lt-step + .lt-step > .lt-head { padding-top: 0; }
  .lt-step + .lt-step { box-shadow: inset 0 1px 0 var(--line); }

  .lt-dot { top: 19px; left: -6px; }
  .lt-name { font-size: 1.2rem; }
  .lt-num  { font-size: .9rem; }
  .lt-note { font-size: .84rem; }

  .lt-basis { padding-inline: 18px; }
  .lt-bands { grid-template-columns: 1fr; }
  .lt-band { padding: 15px 18px; }
  .lt-band + .lt-band { border-left: 0; border-top: 1px solid var(--line); }
  .lt-band-days b { font-size: 1.75rem; }
  .lt-rule { padding: 13px 18px 15px; font-size: .82rem; }
}

/* ── 6-faq ── */
/* ══ §6 — #faq : accordéon deux colonnes ═══════════════════════ */

.fq-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-content: start;
  background: var(--white); border: 1px solid var(--line);
}
/* Les colonnes s'étirent sur la hauteur de la rangée : c'est ce qui fait courir le
   filet vertical jusqu'au bandeau devis, même quand une colonne est plus courte
   ou qu'une question s'ouvre en face. Ne pas remettre align-self: start ici. */
.fq-col-2 { border-left: 1px solid var(--line); }

.fq { border-bottom: 1px solid var(--line); }
.fq.fq-last { border-bottom: 0; }

.fq summary {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 24px; list-style: none; cursor: pointer;
}
.fq summary::-webkit-details-marker { display: none; }
.fq summary:hover .fq-q { color: var(--brass-d); }
.fq summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }

.fq-num {
  flex: 0 0 auto; font-family: var(--serif); font-size: .95rem;
  line-height: 1.5; color: var(--brass-d);
}
.fq-q {
  flex: 1; font-family: var(--serif); font-size: 1.12rem;
  line-height: 1.35; color: var(--ink); transition: color var(--t);
}
.fq-mark {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid var(--line); color: var(--brass-d);
  font-size: 1.05rem; line-height: 1;
}
.fq[open] .fq-mark { border-color: var(--brass); }
.fq[open] .fq-mark::after { content: '\2212'; }      /* − */
.fq:not([open]) .fq-mark::after { content: '+'; }

.fq p {
  margin: 0; padding: 0 24px 18px 56px;               /* aligné sur la question */
  font-size: .92rem; line-height: 1.65; color: var(--ink2);
}

/* Bandeau devis : traverse les deux colonnes. */
.fq-cta {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 20px;
  padding: 20px 26px; background: var(--ink); color: var(--paper);
  border-top: 1px solid var(--brass);
}
.fq-cta-ico {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(168, 134, 63, .6); color: var(--brass);
}
.fq-cta-ico svg { width: 24px; height: 24px; display: block; }
.fq-cta p { flex: 1; margin: 0; font-size: .95rem; line-height: 1.5;
  color: rgba(245, 244, 239, .86); }
.fq-cta p strong { color: var(--paper); }
.fq-cta a {
  flex: 0 0 auto; display: flex; align-items: center; gap: 9px;
  background: var(--brass); color: var(--white);
  padding: 15px 22px; text-decoration: none;
  font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--t);
}
.fq-cta a:hover { background: var(--brass-d); color: var(--white); }

/* ── ≤ 960 px : une colonne ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .fq-grid { grid-template-columns: 1fr; }
  .fq-col-2 { border-left: 0; border-top: 1px solid var(--line); }

  .fq summary { gap: 12px; padding: 15px 16px; }
  .fq-num { font-size: .88rem; line-height: 1.45; }
  .fq-q   { font-size: 1.05rem; line-height: 1.3; }
  .fq p   { padding: 0 16px 16px 40px; font-size: .88rem; }

  .fq-cta { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 16px 20px; }
  .fq-cta p { display: flex; align-items: center; gap: 14px; }
  .fq-cta a { justify-content: space-between; padding: 15px 18px; font-size: .74rem; }
}

/* §4 — en l'absence de prises de vue en situation, un cadre neutre plutôt
   qu'un packshot détourné (qui ferait tripler la même photo sur la page). */
.oc-ph { display: grid; place-items: center; width: 100%; aspect-ratio: 5 / 4;
  background: var(--paper2); border-bottom: 1px solid var(--line); }
.oc-ph .fan-ph { width: 34%; height: auto; color: var(--line); }

/* ═══ HANDOFF 13/08 — #configurator : zone 0, coque, devis ═══ */
/* ═══ #configurator ═══════════════════════════════════════════════ */

/* Le bloc est un seul panneau continu : un cadre, des filets, aucune carte flottante. */
.cfgC {
  display: grid; grid-template-columns: minmax(0, 1fr) 400px;
  background: var(--white); border: 1px solid var(--line);
}
.cfgC > .cfg0, .cfgC > .cfgS-steps { grid-column: 1 / -1; }/* ── Zone 0 ─────────────────────────────────────────────────────── *//* bandeau : mobile uniquement */

/* ── Fil d'étapes ───────────────────────────────────────────────── */
.cfgS-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--ink);
}
.cfgS-step { display: flex; align-items: center; gap: 13px; padding: 16px 22px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink3); }
.cfgS-step + .cfgS-step { border-left: 1px solid var(--line); }
.cfgS-n {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 27px; height: 27px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ink3);
  font-family: var(--serif); font-size: .92rem;
}
.cfgS-step.is-current { background: var(--ink); color: var(--paper); }
.cfgS-step.is-current .cfgS-n { background: var(--brass); border-color: var(--brass); color: var(--white); }
.cfgS-step.is-done { color: var(--ink); }
.cfgS-step.is-done .cfgS-n { background: var(--brass-d); border-color: var(--brass-d); color: var(--white); }

/* ── Corps d'étape et navigation ────────────────────────────────── */
.cfgC-ctrl { padding: 28px; }
.cfgS-h { margin: 0 0 7px; font-family: var(--serif); font-weight: 400;
  font-size: 1.45rem; line-height: 1.15; color: var(--ink); }
.cfgS-help { margin: 0 0 26px; font-size: .9rem; line-height: 1.55; color: var(--ink3); }

.cfgS-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
}
.cfgS-back, .cfgS-next {
  border: 1px solid var(--ink); padding: 14px 26px; cursor: pointer;
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; transition: background var(--t), color var(--t);
}
.cfgS-back { background: transparent; color: var(--ink); }
.cfgS-back:hover { border-color: var(--brass-d); color: var(--brass-d); }
.cfgS-next { background: var(--ink); color: var(--paper); padding-inline: 30px; }
.cfgS-next:hover { background: var(--brass-d); border-color: var(--brass-d); color: var(--white); }

/* ── Champs ─────────────────────────────────────────────────────── */
.cfgF { margin-bottom: 26px; }
.cfgF:last-child { margin-bottom: 0; }
.cfgF-label {
  display: block; margin-bottom: 8px;
  font-size: .66rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink3);
}
.cfgF-label span { text-transform: none; letter-spacing: 0; font-weight: 400; }
.cfgF-input, .cfgF-qty input[type="number"] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0;
  background: var(--white); font-family: var(--sans); font-size: .95rem; color: var(--ink);
}
.cfgF-input:focus-visible, .cfgF-qty input:focus-visible { outline: 1px solid var(--ink); outline-offset: 0; }
.cfgF-area { resize: vertical; }

.cfgF-qty { display: grid; grid-template-columns: minmax(0, 1fr) 130px; gap: 16px; align-items: center; }
.cfgF-qty input[type="range"] { width: 100%; accent-color: var(--brass-d); }
.cfgF-qty input[type="number"] { font-family: var(--serif); font-size: 1.15rem; text-align: right; }
.cfgF-tier {
  margin: 13px 0 0; padding: 11px 14px; background: var(--paper);
  border-left: 2px solid var(--brass); font-size: .86rem; color: var(--ink2);
}
.cfgF-tier b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: var(--brass-d); }

.cfgF-sw { display: flex; flex-wrap: wrap; gap: 9px; }
.cfgF-sw .sw {
  width: 30px; height: 30px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 1px solid var(--line);
}
.cfgF-sw .sw.on { border-color: var(--ink); box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--brass-d); }
.cfgF-swname { margin: 11px 0 0; font-size: .86rem; color: var(--ink2); }

.cfgF-drop {
  position: relative; display: flex; align-items: center; gap: 18px;
  padding: 20px; border: 1px dashed #C9C5B4; background: var(--white);
  transition: border-color var(--t);
}
.cfgF-drop:hover, .cfgF-drop.is-over { border-color: var(--brass); }
.cfgF-drop-ico {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); color: var(--brass-d);
}
.cfgF-drop-ico svg { width: 24px; height: 24px; display: block; }
.cfgF-drop b { display: block; font-weight: 400; font-size: .95rem; color: var(--ink); }
.cfgF-drop u { color: var(--brass-d); text-underline-offset: 3px; }
.cfgF-drop > span > span { display: block; margin-top: 3px; font-size: .82rem; color: var(--ink3); }
.cfgF-drop-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.cfgF-files { list-style: none; margin: 12px 0 0; padding: 0; }
.cfgF-files li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0;
  border-top: 1px solid var(--paper2); font-size: .86rem; color: var(--ink2); }
.cfgF-proof { margin: 12px 0 0; padding-left: 14px; border-left: 2px solid var(--brass);
  font-size: .86rem; line-height: 1.55; color: var(--ink2); }
.cfgF-proof b { color: var(--ink); }
.cfgF-err { margin: 10px 0 0; font-size: .84rem; color: var(--c-err); }

/* ── Panneau devis : la seule zone sombre du bloc ───────────────── */
.cfgQ { background: var(--ink); color: var(--paper); border-left: 1px solid var(--line); }
.cfgQ-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 26px; border-bottom: 1px solid rgba(245, 244, 239, .14);
}
.cfgQ-kicker { display: block; margin-bottom: 5px; font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.cfgQ-name { display: block; font-family: var(--serif); font-size: 1.4rem; line-height: 1.15; }
.cfgQ-ref { text-align: right; font-size: .78rem; line-height: 1.5; color: rgba(245, 244, 239, .7); }

.cfgQ-lines { width: 100%; border-collapse: collapse; margin: 6px 0 0; }
.cfgQ-lines td { padding: 13px 26px; vertical-align: top; font-size: .92rem; }
.cfgQ-lines tr + tr td { border-top: 1px solid rgba(245, 244, 239, .14); }
.cfgQ-lines td:last-child { text-align: right; white-space: nowrap;
  font-family: var(--serif); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.cfgQ-lines .qd-dim { display: block; margin-top: 2px; font-size: .8rem; color: rgba(245, 244, 239, .55); }

.cfgQ-subs { padding: 12px 26px 0; }
.cfgQ-subs p { display: flex; justify-content: space-between; gap: 12px; margin: 0;
  padding: 7px 0; font-size: .86rem; color: rgba(245, 244, 239, .8); }
.cfgQ-was { text-decoration: line-through; color: rgba(245, 244, 239, .55); }
.cfgQ-disc { color: var(--brass); font-weight: 700; }

.cfgQ-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin: 16px 26px 0; padding-top: 16px; border-top: 1px solid var(--brass);
  font-size: .86rem; color: rgba(245, 244, 239, .8);
}
.cfgQ-total b { font-family: var(--serif); font-weight: 400; font-size: 2.2rem;
  line-height: 1; color: var(--paper); font-variant-numeric: tabular-nums; }

.cfgQ-meta { list-style: none; margin: 14px 0 0; padding: 0 26px; }
.cfgQ-meta li { position: relative; padding: 9px 0 9px 20px; border-top: 1px solid rgba(245, 244, 239, .14);
  font-size: .86rem; line-height: 1.5; color: rgba(245, 244, 239, .82); }
.cfgQ-meta li::before { content: '—'; position: absolute; left: 0; color: var(--brass); }
.cfgQ-meta li:empty { display: none; }          /* data-artwork vide = pas de ligne */
.cfgQ-meta b { color: var(--paper); }
.cfgQ-meta li:first-child b { font-family: var(--serif); font-weight: 400;
  font-size: 1.1rem; color: var(--brass); }

.cfgQ-tip {
  margin: 16px 26px 0; padding: 12px 14px; background: rgba(168, 134, 63, .16);
  border-left: 2px solid var(--brass); font-size: .86rem; line-height: 1.5;
  color: rgba(245, 244, 239, .85);
}
.cfgQ-tip b { font-family: var(--serif); font-weight: 400; color: var(--brass); }

.cfgQ-cta { padding: 18px 26px 26px; }
.cfgQ-cta a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--brass); color: var(--white); padding: 17px 22px; text-decoration: none;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: background var(--t);
}
.cfgQ-cta a:hover { background: var(--brass-d); color: var(--white); }
.cfgQ-foot { margin: 12px 0 0; font-size: .78rem; line-height: 1.5; color: rgba(245, 244, 239, .55); }

.cfgQ-bar { display: none; }                    /* barre collante : mobile uniquement */

/* ── ≤ 1080 px : la colonne devis se resserre ───────────────────── */
@media (max-width: 1080px) {
  .cfgC { grid-template-columns: minmax(0, 1fr) 340px; }
  .cfgQ-total b { font-size: 1.9rem; }
}

/* ── ≤ 960 px : le devis passe sous les contrôles ───────────────── */
@media (max-width: 960px) {
  .cfgC { grid-template-columns: minmax(0, 1fr); }
  .cfgQ { border-left: 0; border-top: 1px solid var(--ink); }/* Zone 0 : bandeau laiton, identité sur encre, puis les médias *//* Fiche technique repliée : elle reste indexable, elle ne coûte plus 300 px */

  .cfgC-ctrl { padding: 18px 16px; }
  .cfgS-step { padding: 12px 10px; gap: 9px; font-size: .64rem; }
  .cfgS-n { width: 22px; height: 22px; font-size: .8rem; }
  .cfgS-back { padding-inline: 18px; }
  .cfgS-next { flex: 1; }

  .cfgQ-total b { font-size: 1.9rem; }

  /* Rappel de prix collant : le total suit l'acheteur pendant la configuration */
  .cfgQ-bar {
    position: sticky; bottom: 0; z-index: 5;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--ink); border-top: 1px solid var(--brass);
  }
  .cfgQ-bar > span { flex: 1; }
  .cfgQ-bar-lbl { display: block; font-size: .55rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
  .cfgQ-bar b { font-family: var(--serif); font-weight: 400; font-size: 1.4rem;
    line-height: 1.1; color: var(--paper); }
  .cfgQ-bar-sub { display: block; font-size: .72rem; color: rgba(245, 244, 239, .6); }
  .cfgQ-bar-sub b { font-size: .95rem; color: var(--brass); }
  .cfgQ-bar a {
    flex: 0 0 auto; background: var(--brass); color: var(--white);
    padding: 13px 16px; text-decoration: none;
    font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  }
}

/* ── ≤ 620 px ───────────────────────────────────────────────────── */
@media (max-width: 620px) {
  .cfgF-qty { grid-template-columns: minmax(0, 1fr) 104px; gap: 12px; }
  .cfgQ-lines td, .cfgQ-subs, .cfgQ-meta { padding-inline: 16px; }
  .cfgQ-total { margin-inline: 16px; }
  .cfgQ-cta { padding: 16px; }
}/* Un cadre encre plutôt qu'un rectangle noir si la vidéo ne démarre pas. */
@media (prefers-reduced-motion: reduce) {
}

/* Le tiroir de navigation mobile est garé hors écran (translateX) et créait un
   débordement horizontal de 340 px sur toutes les pages. Il faut le clipper sur
   `body` : un élément `fixed` ignore l'`overflow` de `html`. `clip` plutôt que
   `hidden`, qui créerait un conteneur de défilement et casserait le header
   `position: sticky`. */
body { overflow-x: clip; }

/* ═══ HANDOFF v2 — #configurator zone 0 (hero) ═══════════ */
/* ── Zone 0 : rangée média + colonne identité/fiche ─────────────── */
/* Bandeau d'accroche en tête de zone — désormais visible sur toutes les
   tailles : il porte « Best seller » sans rien poser sur la vidéo. */
.cfg0-flag {
  display: flex; align-items: baseline; gap: 10px;
  margin: 0; padding: 8px 24px; background: var(--brass); color: var(--white);
}
.cfg0-flag span:first-child {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}
.cfg0-flag span + span { font-size: .68rem; color: rgba(255, 255, 255, .88); }

.cfg0-media {
  display: grid;
  grid-template-columns: 384px 192px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  height: 384px;                                    /* la vidéo est carrée : 384 × 384 */
}

.cfg0-vid { grid-area: 1 / 1 / 3 / 2; width: 100%; height: 100%; object-fit: cover;
  display: block; background: var(--ink); }
.cfg0-vid-tag {
  grid-area: 1 / 1 / 3 / 2; align-self: end; justify-self: start;
  padding: 8px 13px; background: var(--ink); color: var(--brass);
  font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

.cfg0-shots {
  grid-area: 1 / 2 / 3 / 3; display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}
.cfg0-shots img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cfg0-shots img + img { border-top: 1px solid var(--line); }

/* Haut de colonne : identité sur encre */
.cfg0-id {
  grid-area: 1 / 3 / 2 / 4;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 18px 24px; border-left: 1px solid var(--line);
  background: var(--ink); color: var(--paper);
}
/* Le titre tient sur UNE ligne : la taille s'adapte à la largeur disponible
   plutôt que de passer à la ligne, et on interdit le retour explicitement. */
.cfg0-title {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem, 1.72vw, 1.6rem); line-height: 1.1; color: var(--paper);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}


/* Bas de colonne : fiche technique sur blanc, elle prend tout le reste */
.cfg0-spec {
  grid-area: 2 / 3 / 3 / 4; min-height: 0; overflow: auto;
  padding: 16px 24px 18px; border-left: 1px solid var(--line); background: var(--white);
}
.cfg0-spec-head {
  display: block; margin-bottom: 4px;
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass-d);
}
.cfg0-spec ul { list-style: none; margin: 0; padding: 0; }
.cfg0-spec li { display: flex; align-items: baseline; gap: 14px; padding: 8px 0; }
.cfg0-spec li + li { border-top: 1px solid var(--paper2); }
.cfg0-spec b {
  flex: 0 0 108px; font-size: .57rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink3);
}
.cfg0-spec span { font-size: .86rem; line-height: 1.35; color: var(--ink); }
@media (max-width: 1080px) {
  .cfg0-media { grid-template-columns: 300px 150px minmax(0, 1fr); height: 300px; }
  .cfg0-title { font-size: 1.6rem; }
  .cfg0-spec b { flex-basis: 96px; }
}

@media (max-width: 960px) {
  /* Bandeau laiton en coiffe, puis identité encre, puis les médias, puis la fiche */
  .cfg0-flag { justify-content: space-between; padding: 9px 16px; }

  .cfg0-media { display: flex; flex-direction: column; height: auto; }
  .cfg0-id { order: 1; display: block; padding: 18px 16px 20px; border-left: 0; }
  /* En colonne, la largeur est celle de l'écran : le titre peut revenir à la
     ligne, il n'écrase plus rien. On lève donc le nowrap du desktop. */
  .cfg0-title { margin: 0; font-size: 1.8rem; white-space: normal; overflow: visible; }
  .cfg0-vid { order: 2; aspect-ratio: 1 / 1; height: auto; border-top: 1px solid var(--line); }
  .cfg0-vid-tag { display: none; }
  .cfg0-shots {
    order: 3; grid-template-rows: none; grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0; border-top: 1px solid var(--line);
  }
  .cfg0-shots img { aspect-ratio: 1 / 1; height: auto; }
  .cfg0-shots img + img { border-top: 0; border-left: 1px solid var(--line); }
  .cfg0-spec {
    order: 4; overflow: visible; padding: 14px 16px 16px;
    border-left: 0; border-top: 1px solid var(--line);
  }
  .cfg0-spec li { display: flex; justify-content: space-between; }
  .cfg0-spec b { flex: 0 0 auto; }
  .cfg0-spec span { text-align: right; }
}

@media (max-width: 620px) {
  .cfg0-title { font-size: 1.6rem; }
}

/* Accroche contextuelle : absente sur la home (elle doublonnait la fiche et
   créait le blanc), conservée sur les pages catégorie et occasion où elle
   explique pourquoi le best-seller s'affiche là. */
.cfg0-lede { margin: 10px 0 0; font-size: .86rem; line-height: 1.5;
  color: rgba(245, 244, 239, .72); }
.cfg0-id > div { min-width: 0; }

/* Un cadre encre plutôt qu'un rectangle noir si la vidéo ne démarre pas. */
.cfg0-vid { background: var(--ink) center/cover no-repeat; }
@media (prefers-reduced-motion: reduce) {
  .cfg0-vid { display: none; }
  .cfg0-shots { grid-area: 1 / 1 / 3 / 3; border-left: 0; }
}

/* Pricing et Artwork ont quitté le header : ils vivent ici. Le footer reste
   sur une ligne — trois groupes dans le même flux, qui se replient ensemble. */
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink2); text-decoration: none; }
.footer-links a:hover { color: var(--brass-d); text-decoration: underline;
  text-underline-offset: 3px; }
@media (max-width: 760px) { footer .wrap { flex-direction: column; gap: 14px; } }

/* ═══ Marque — logo image, verrou horizontal ═══════════════ */
/* Le logo fourni est empilé : il ne tient ni dans le header (69 px) ni dans le
   footer. On sert donc une recomposition horizontale du même fichier. */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 200px; height: auto; }
.brand:hover img { opacity: .78; }
.brand-sm img { width: 165px; }

.footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 620px) {
  .brand img { width: 168px; }
  .brand-sm img { width: 152px; }
}

/* Sortie de grille : élargir la sélection sans repasser par le menu.
   Dans .gridmain, donc sous les cartes et jamais sous le rail de facettes. */
.grid-all { margin: 34px 0 0; text-align: center; }
.gridblock [data-empty]:not([hidden]) ~ .grid-all { margin-top: 12px; }

/* ═══ Pages légales : prose longue, mesure courte ═══════════ */
.legal { max-width: 74ch; }
.legal h2 {
  font-family: var(--serif); font-weight: 400; font-size: 1.45rem;
  margin: 44px 0 14px; padding-top: 22px; border-top: 1px solid var(--c-border);
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.12rem;
  margin: 26px 0 8px;
}
.legal p, .legal li { color: var(--c-text2); line-height: 1.72; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--c-primary); text-underline-offset: 3px; }
.legal b { color: var(--c-text); font-weight: 600; }

/* Fiche d'identité : deux colonnes sur desktop, empilée en mobile. */
.legal-dl {
  display: grid; grid-template-columns: minmax(140px, 190px) 1fr;
  gap: 2px 20px; margin: 0 0 20px;
  background: var(--c-white); border: 1px solid var(--c-border); padding: 18px 20px;
}
.legal-dl dt {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-text3, var(--c-text2)); padding: 7px 0; align-self: center;
}
.legal-dl dd { margin: 0; padding: 7px 0; color: var(--c-text); }
@media (max-width: 620px) {
  .legal-dl { grid-template-columns: 1fr; gap: 0; }
  .legal-dl dt { padding-bottom: 0; }
  .legal-dl dd { padding-top: 2px; padding-bottom: 12px; }
}

.legal-date {
  margin-top: 14px; font-size: .85rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--c-text2);
}

/* ═══ Bloc « Fresh from the workshop » (home) ═══════════════ */
.wk-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(6, 1fr);
}
.wk-grid img {
  width: 100%; height: auto; display: block;
  background: var(--c-white); border: 1px solid var(--c-border);
}
.wk-note { margin-top: 18px; color: var(--c-text2); max-width: 72ch; }
@media (max-width: 980px) { .wk-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .wk-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══ Formulaire devis de la home (compose un email, rien vers le serveur) ═ */
.qf-split {
  display: grid; gap: 44px; align-items: start;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}
.qf-intro h2 { margin: 12px 0 14px; }
.qf-intro p { color: var(--c-text2); max-width: 46ch; }
.qf-points { list-style: none; margin: 22px 0 0; padding: 0; }
.qf-points li {
  position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--c-text2);
}
.qf-points li::before { content: "—"; position: absolute; left: 0; color: var(--brass-d); }

.qf-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  padding: 28px; box-shadow: var(--shadow-xs);
}
.qf-grid {
  display: grid; gap: 16px 18px; grid-template-columns: 1fr 1fr; margin-bottom: 22px;
}
.qf-field { display: block; min-width: 0; }
.qf-field > span {
  display: block; margin-bottom: 6px;
  font-size: .76rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--c-text2); font-weight: 600;
}
.qf-field em { text-transform: none; letter-spacing: 0; font-style: normal;
  font-weight: 400; color: var(--c-text3); }
.qf-wide { grid-column: 1 / -1; }
.qf-card .wz-input:focus-visible, .qf-card .wz-ta:focus-visible {
  outline: 2px solid var(--brass); outline-offset: -1px;
}
.qf-note { margin: 14px 0 0; font-size: .85rem; color: var(--c-text2); }
.qf-note a { color: var(--c-accent); }

@media (max-width: 900px) {
  .qf-split { grid-template-columns: 1fr; gap: 26px; }
  .qf-grid { grid-template-columns: 1fr; }
}

/* ═══ Bandeau hero des pages catégorie et occasion ═════════ */
/* L'image ne porte QUE le titre et le chapô. La barre de chiffres sort de la
   zone image et garde son fond uni d'origine. */
.page-head { position: relative; isolation: isolate; overflow: hidden;
  background: var(--paper2); border-bottom: 0; }
.ph-media { position: absolute; inset: 0; z-index: -1; }
.ph-media img { width: 100%; height: 100%; object-fit: cover;
  object-position: 62% center; display: block; }
.ph-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg,
      rgba(245, 244, 239, .97) 0%,  rgba(245, 244, 239, .94) 26%,
      rgba(245, 244, 239, .66) 44%, rgba(245, 244, 239, .16) 64%,
      rgba(245, 244, 239, 0)   80%),
    linear-gradient(to top, rgba(245, 244, 239, .45) 0%, rgba(245, 244, 239, 0) 30%);
}
.page-head:has(.ph-media) { padding: 86px 0 78px; }
.page-head:has(.ph-media) h1 { max-width: 17ch; }
.page-head:has(.ph-media) .lede { max-width: 46ch; }

/* Barre de chiffres : fond d'origine, filet bas, jamais d'image derrière. */
.page-facts { background: var(--paper2); border-bottom: 1px solid var(--line); }
.page-facts .hero-facts { margin-top: 0; padding: 26px 0; border-top: 0; }

@media (max-width: 900px) {
  .page-head:has(.ph-media) { padding: 54px 0 52px; }
  .ph-media img { object-position: 58% center; }
  .ph-scrim {
    background: linear-gradient(180deg, rgba(245, 244, 239, .97) 0%,
                rgba(245, 244, 239, .92) 55%, rgba(245, 244, 239, .78) 100%);
  }
  .page-head:has(.ph-media) .lede { max-width: none; }
}

/* ═══ Fiche produit — template 14/08 ═══════════════════════ */
.product-head { background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 44px 0 52px; }
.pr-split { display: grid; gap: 44px; align-items: start;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }

/* Conçu pour UNE photo : grand cadre blanc à filet, net et suffisant seul. */
.pr-photo { margin: 0; background: var(--white); border: 1px solid var(--line);
  padding: 20px; }
.pr-photo img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; }
.pr-photo-ph { display: grid; place-items: center; aspect-ratio: 1;
  color: var(--line); text-align: center; }
.pr-photo-ph svg { width: 42%; height: auto; }
.pr-photo-ph figcaption { font-size: .8rem; color: var(--ink3); padding: 0 24px 18px; }
.pr-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pr-thumbs img { width: 74px; height: 74px; object-fit: cover;
  border: 1px solid var(--line); background: var(--white); }

.pr-chips { list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px; }
.pr-chips li { padding: 6px 13px; border: 1px solid var(--line);
  background: var(--white); font-size: .8rem; color: var(--ink2); }

.pr-price { margin: 22px 0 4px; padding: 15px 18px;
  background: var(--white); border-left: 2px solid var(--brass); }
.pr-price b { display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.7rem; line-height: 1.1; color: var(--ink); }
.pr-price span { font-size: .85rem; color: var(--ink2); }
.pr-price-ask b { color: var(--brass-d); }
.pr-trust { margin: 14px 0 0; font-size: .8rem; color: var(--ink3); }

/* Designs en stock — la grille n'existe que s'il y a plusieurs photos */
.pr-designs { display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.pr-design { margin: 0; background: var(--white); border: 1px solid var(--line);
  padding: 12px; }
.pr-design img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; }

/* Specs : table deux colonnes th/td, lignes remplies uniquement */
table.data.spec th { width: 220px; text-align: left; font-size: .72rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink3); background: transparent; border-bottom: 1px solid var(--line);
  padding: 13px 18px; }
table.data.spec td { color: var(--ink); }

/* Occasions liées */
.pr-occs { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pr-occ { display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border: 1px solid var(--line);
  transition: border-color var(--t), box-shadow var(--t); }
.pr-occ:hover { border-color: var(--brass-d); box-shadow: 0 12px 30px rgba(31,41,66,.10); }
.pr-occ-media img { display: block; width: 100%; aspect-ratio: 5 / 2.2;
  object-fit: cover; }
.pr-occ-body { display: block; padding: 16px 20px 18px; }
.pr-occ-body b { display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.pr-occ-body span { font-size: .85rem; color: var(--ink2); }

/* Mini-FAQ produit : réutilise les styles .fq de la home */
.pr-faq { max-width: 760px; }

@media (max-width: 900px) {
  .pr-split { grid-template-columns: 1fr; gap: 26px; }
  .pr-occs { grid-template-columns: 1fr; }
  table.data.spec th { width: 40%; }
}
