:root {
  --brm-cream: #FAF8F5;
  --brm-bone: #EFEAE0;
  --brm-graphite: #1A1714;
  --brm-noir: #0A0907;
  --brm-text: #2A2118;
  --brm-muted: #8A8278;
  --brm-line: rgba(255,255,255,0.08);
  --brm-line-dark: rgba(0,0,0,0.08);
  --brm-red: #B5322A;
  --brm-green: #2d6b3f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--brm-text);
  background: var(--brm-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.label { font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

.checker {
  height: 22px; width: 100%;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  background-color: #000;
}
.checker.thin { height: 14px; background-size: 14px 14px; background-position: 0 0, 0 7px, 7px -7px, -7px 0; }

nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px; color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  transition: background 0.3s, padding 0.3s;
}
nav.top .cyl-switcher {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
nav.top.scrolled { background: rgba(10,9,7,0.95); padding: 12px 48px; backdrop-filter: blur(10px); }
nav.top .logo-wrap { display: flex; align-items: center; gap: 18px; }
nav.top .logo-wrap img { height: 42px; width: auto; }
nav.top .divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
nav.top .badge {
  font-family: 'Instrument Sans', sans-serif; font-weight: 700;
  letter-spacing: 0.22em; font-size: 12px;
}
nav.top ul { display: flex; gap: 36px; list-style: none; }
nav.top a { color: #fff; text-decoration: none; font-size: 13px; opacity: 0.85; transition: opacity 0.2s; }
nav.top a:hover { opacity: 1; }

/* Sélecteur de langue — collé au panier sur la droite */
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto; padding-left: 0;
  border-left: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.5);
  padding: 4px 6px; transition: color 0.2s;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.active { color: #fff; }
.lang-sep { color: rgba(255,255,255,0.25); font-size: 10px; }
@media (max-width: 980px) {
  .lang-switch { margin-left: auto; padding-left: 0; }
}
@media (max-width: 720px) {
  .lang-switch {
    margin-left: 6px; padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.12);
    gap: 3px;
  }
  .lang-btn { padding: 3px 2px; font-size: 10px; letter-spacing: 0.12em; }
  .lang-sep { font-size: 9px; }
  nav.top .badge { font-size: 9px; letter-spacing: 0.18em; }
  nav.top .divider { height: 22px; }
  nav.top .logo-wrap { gap: 10px; }
  nav.top .logo-wrap img { height: 28px; }
}
@media (max-width: 380px) {
  nav.top { padding: 10px 14px; }
  nav.top .badge { display: none; }
  nav.top .divider { display: none; }
}

.btn {
  padding: 16px 28px; font-family: 'Instrument Sans', sans-serif; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s ease;
}
.btn-light { background: #fff; color: var(--brm-noir); }
.btn-light:hover { background: var(--brm-cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--brm-noir); color: #fff; }
.btn-dark:hover { background: #2A2118; }
.btn-red { background: var(--brm-red); color: #fff; }
.btn-red:hover { background: #d44339; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.section-header .label { color: var(--brm-muted); display: block; margin-bottom: 16px; }
.section-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1.05;
}
.section-header p { color: rgba(255,255,255,0.6); margin-top: 18px; font-size: 17px; }

footer {
  background: var(--brm-noir); color: rgba(255,255,255,0.55);
  padding: 64px 48px 32px; border-top: 1px solid var(--brm-line);
  font-family: 'Instrument Sans', sans-serif;
}
footer .footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer .footer-grid .col h4 {
  color: #fff; font-family: 'Instrument Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; margin: 0 0 18px 0;
}
footer .footer-grid .col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px; line-height: 1.9;
  text-decoration: none; transition: color 0.2s;
}
footer .footer-grid .col a:hover { color: #fff; }
footer .footer-grid .col p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
footer .footer-grid .col-brand .brand-foot {
  font-weight: 700; color: #fff;
  letter-spacing: 0.26em; font-size: 12px;
  margin-bottom: 16px;
}
footer .footer-grid .col-brand .footer-tag {
  font-size: 12px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
footer .footer-grid .col-brand .footer-logo {
  width: 32px; height: auto;
  margin-bottom: 18px;
  display: block;
  opacity: 0.85;
}
footer .footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
footer .footer-bottom p {
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin: 0;
}
footer .footer-bottom .footer-legal-inline {
  display: flex; gap: 18px; flex-wrap: wrap;
}
footer .footer-bottom .footer-legal-inline a {
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
footer .footer-bottom .footer-legal-inline a:hover { color: #fff; }

@media (max-width: 980px) {
  footer { padding: 48px 28px 24px; }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  footer .footer-grid .col-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* CART LINK in topnav — placé tout à droite après FR/EN */
.cart-link {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s;
  margin-left: 16px;
}
.cart-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.cart-link.active { border-color: rgba(255,255,255,0.4); }
.cart-link svg { display: block; }
.cart-link .cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--brm-red); color: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0; line-height: 1;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-link .cart-count.has-items { opacity: 1; transform: scale(1); }
@media (max-width: 760px) {
  .cart-link { width: 34px; height: 34px; }
  .cart-link svg { width: 16px; height: 16px; }
}

/* LEGAL PAGES (mentions légales, CGV, confidentialité) */
.legal-page {
  background: var(--brm-cream);
  min-height: calc(100vh - 200px);
  padding: 140px 32px 100px;
}
.legal-inner {
  max-width: 820px; margin: 0 auto;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--brm-text);
  font-size: 15px; line-height: 1.75;
}
.legal-inner .legal-label {
  display: block; text-align: center;
  color: var(--brm-muted); margin-bottom: 16px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.legal-inner h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.02em; text-align: center;
  margin: 0 0 60px 0; line-height: 1.05;
}
.legal-inner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; letter-spacing: -0.01em;
  margin: 56px 0 18px 0; line-height: 1.2;
}
.legal-inner h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  margin: 32px 0 12px 0;
  color: var(--brm-text);
}
.legal-inner p { margin: 0 0 16px 0; }
.legal-inner ul { padding-left: 20px; margin: 0 0 18px 0; }
.legal-inner li { margin-bottom: 8px; }
.legal-inner strong { color: var(--brm-text); font-weight: 600; }
.legal-inner a { color: var(--brm-text); text-decoration: underline; text-underline-offset: 3px; }
.legal-inner a:hover { color: var(--brm-red); }
.legal-inner hr {
  border: 0; border-top: 1px solid var(--brm-line-dark);
  margin: 48px 0;
}
.legal-meta {
  text-align: center; color: var(--brm-muted);
  font-size: 12px; margin-top: 60px;
  padding-top: 32px; border-top: 1px solid var(--brm-line-dark);
}

/* PRODUCT PAGE — hero split */
.p-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #1d1916 0%, var(--brm-noir) 70%);
  color: #fff;
  display: flex; align-items: flex-start; /* l'image colle au haut */
  padding: 110px 48px 60px;
  position: relative; overflow: hidden;
}
.p-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(181,50,42,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.p-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  max-width: 1400px; width: 100%; margin: 0 auto;
  align-items: start; /* alignement haut pour que l'image remonte */
  position: relative; z-index: 2;
}
.p-hero .breadcrumb {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brm-muted); margin-bottom: 14px;
}
.p-hero .breadcrumb a { color: var(--brm-muted); text-decoration: none; }
.p-hero .breadcrumb a:hover { color: #fff; }
.p-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.85; letter-spacing: -0.05em;
  margin-bottom: 6px;
}
.p-hero .tagline {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); color: var(--brm-muted);
  margin-bottom: 14px;
}
.p-hero .lede { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 460px; margin-bottom: 20px; line-height: 1.5; }
.p-hero .price-block {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding: 12px 18px; background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--brm-red); margin-bottom: 14px;
}
.p-hero .price-block .from {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brm-muted);
}
.p-hero .price-block .price {
  font-family: 'Instrument Serif', serif; font-size: 34px; color: #fff;
}
.p-hero .price-block .ttc { font-size: 12px; color: var(--brm-muted); }
.p-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.p-hero-img {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 0;
}
.p-hero-img img {
  max-height: 72vh; width: auto; max-width: 100%;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.7));
}

/* FINANCING BLOCK — sur page produit (compact) */
.fin-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px; margin-bottom: 16px;
  max-width: 480px;
}
.fin-block .fin-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.fin-block .fin-tag {
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brm-red); font-weight: 700;
}
.fin-block .fin-rate {
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brm-muted);
}
.fin-block .fin-monthly {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px;
}
.fin-block .fin-monthly .amt {
  font-family: 'Instrument Serif', serif; font-size: 28px; color: #fff;
}
.fin-block .fin-monthly .per {
  font-size: 12px; color: var(--brm-muted);
}
.fin-block .fin-slider-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px;
}
.fin-block .fin-pill {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 10px 8px; cursor: pointer;
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; transition: all 0.2s;
}
.fin-block .fin-pill:hover { border-color: rgba(255,255,255,0.4); }
.fin-block .fin-pill.active { background: var(--brm-red); border-color: var(--brm-red); }
.fin-block .fin-note { font-size: 11px; color: var(--brm-muted); line-height: 1.5; }
.fin-block .fin-note a { color: rgba(255,255,255,0.7); }

/* FINANCING BLOCK — version repliable (v2) */
.fin-block:has(.fin-teaser) { background: transparent; border: none; padding: 0; margin-bottom: 14px; }
.fin-block .fin-teaser {
  display: flex; align-items: center; gap: 8px;
  width: 100%; max-width: 480px; padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85); cursor: pointer; text-align: left;
  font-family: 'Instrument Sans', sans-serif; font-size: 12.5px; letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.fin-block .fin-teaser:hover { border-color: rgba(181,50,42,0.55); background: rgba(181,50,42,0.06); }
.fin-block .fin-teaser-lead { color: var(--brm-muted); }
.fin-block .fin-teaser-amt { color: #fff; font-weight: 600; }
.fin-block .fin-teaser-per { color: var(--brm-muted); font-size: 11.5px; letter-spacing: 0.06em; }
.fin-block .fin-teaser-arrow { margin-left: auto; color: var(--brm-red); font-size: 10px; transition: transform 0.25s; }
.fin-block .fin-teaser[aria-expanded="true"] .fin-teaser-arrow { transform: rotate(180deg); }
.fin-block .fin-details {
  max-width: 480px; padding: 14px 14px 12px;
  border: 1px solid rgba(255,255,255,0.1); border-top: none;
  background: rgba(255,255,255,0.02);
}
.fin-block .fin-details[hidden] { display: none; }
.fin-block .fin-details .fin-slider-wrap { margin-bottom: 10px; }
.fin-block .fin-details .fin-note { margin: 0; }

/* COLOR PICKER — sur page produit (finition du bloc, compact) */
.color-picker {
  margin-bottom: 16px; max-width: 480px;
}
.color-picker .cp-label {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brm-muted); margin-bottom: 10px;
}
.cp-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.cp-swatch {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 6px 8px; cursor: pointer; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: all 0.2s; font-family: inherit;
}
.cp-swatch:hover { border-color: rgba(255,255,255,0.4); }
.cp-swatch.active { border-color: var(--brm-red); background: rgba(181,50,42,0.1); }
.cp-swatch .sw {
  width: 30px; height: 30px; border-radius: 50%;
  box-shadow: inset 0 -3px 8px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
}
.cp-swatch .cp-name {
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1.2; text-align: center;
}
.cp-swatch .cp-extra {
  font-size: 11px; color: var(--brm-muted);
}
.cp-swatch.active .cp-extra { color: rgba(255,255,255,0.85); }
.cp-swatch .sw.blanc { background: linear-gradient(135deg, #ffffff, #d8d8d8); border: 1px solid rgba(255,255,255,0.3); }
.cp-swatch .sw.jaune { background: linear-gradient(135deg, #ffd633, #d4a017); }
.cp-swatch .sw.orange { background: linear-gradient(135deg, #ff8a3d, #d65a14); }
.cp-swatch .sw.rouge { background: linear-gradient(135deg, #d44339, #8a1f17); }
.cp-swatch .sw.bleu { background: linear-gradient(135deg, #6cc4ff, #2c80c2); }
.cp-swatch .sw.vert { background: linear-gradient(135deg, #9ddc4a, #4f8e1e); }
.cp-swatch .sw.sw-rainbow {
  background: conic-gradient(from 90deg, #ff3b30, #ff9500, #ffcc00, #4cd964, #5ac8fa, #5856d6, #ff2d55, #ff3b30);
}

/* Color picker custom block (visible quand finition=custom) */
.cp-custom-block {
  display: none;
  margin-top: 14px; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  align-items: center; gap: 14px;
}
.cp-custom-block.show { display: flex; }
.cp-custom-block .cp-label-inline {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brm-muted); flex: 1;
}
.cp-custom-block input[type="color"] {
  -webkit-appearance: none; appearance: none;
  width: 56px; height: 56px;
  border: none; border-radius: 50%;
  padding: 0; cursor: pointer; background: none;
  overflow: hidden; /* clip les angles carrés du swatch interne */
  box-shadow: 0 0 0 2px rgba(255,255,255,0.2); /* remplace le border sans prendre de place */
}
.cp-custom-block input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; border-radius: 50%; }
.cp-custom-block input[type="color"]::-webkit-color-swatch { border: none; border-radius: 50%; }
.cp-custom-block input[type="color"]::-moz-color-swatch { border: none; border-radius: 50%; }
.cp-custom-hex {
  font-family: 'Instrument Sans', sans-serif; font-size: 13px; color: #fff;
  letter-spacing: 0.06em;
}
.cp-custom-note {
  font-size: 11px; color: var(--brm-muted); margin-top: 8px;
  font-style: italic;
}

@media (max-width: 540px) {
  .cp-row { grid-template-columns: repeat(4, 1fr); }
}
/* override remplacé plus haut */

/* GALLERY PRODUIT */
.p-gallery {
  background: var(--brm-noir); color: #fff; padding: 140px 48px;
}
.p-gallery-main {
  max-width: 1200px; margin: 0 auto;
  background: radial-gradient(ellipse at center, #1d1916 0%, transparent 70%);
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.p-gallery-main img { max-height: 100%; max-width: 100%; }
.p-thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.p-thumb {
  aspect-ratio: 1; background: #14110e; border: 1px solid var(--brm-line);
  cursor: pointer; transition: border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.p-thumb img { max-width: 100%; max-height: 100%; }
.p-thumb.active, .p-thumb:hover { border-color: var(--brm-red); }

/* SPECS GRID */
.p-specs {
  background: var(--brm-graphite); color: #fff; padding: 140px 48px;
}
.p-specs-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 80px;
}
.spec-item {
  border-top: 1px solid var(--brm-line); padding-top: 22px;
}
.spec-item .k {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brm-muted); margin-bottom: 8px;
}
.spec-item .v {
  font-family: 'Instrument Serif', serif; font-size: 28px;
}
.spec-item .v-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* COMPATIBILITÉ — "ce qui rentre dedans" */
.p-fits {
  background: var(--brm-cream); padding: 140px 48px;
}
.p-fits-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.p-fits .label { color: var(--brm-muted); display: block; margin-bottom: 18px; }
.p-fits h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 24px;
}
.p-fits > .p-fits-inner > .p-fits-text > p { font-size: 16px; color: var(--brm-text); margin-bottom: 28px; line-height: 1.7; max-width: 460px; }
.fits-list { list-style: none; }
.fits-list li {
  display: grid; grid-template-columns: 160px 1fr; gap: 18px;
  padding: 14px 0; border-top: 1px solid var(--brm-line-dark);
}
.fits-list li:last-child { border-bottom: 1px solid var(--brm-line-dark); }
.fits-list .k {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brm-muted);
}
.fits-list .v { font-size: 15px; color: var(--brm-text); }
.p-fits-visual {
  background: #fff; aspect-ratio: 4/3; padding: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brm-line-dark);
}
.p-fits-visual img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* COMPARATOR — refondu */
.p-compare {
  background: var(--brm-bone); padding: 110px 48px; color: var(--brm-text);
}
.p-compare h2 {
  font-family: 'Instrument Serif', serif; text-align: center;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.compare-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.compare-card {
  position: relative;
  background: #fff;
  padding: 40px 28px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center; display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s, border-color 0.3s;
  overflow: hidden;
}
.compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}
/* Modèle courant — carte sombre, traitement signature */
.compare-card.current {
  background: linear-gradient(180deg, var(--brm-noir) 0%, #1a1210 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(181,50,42,0.18);
}
.compare-card.current:hover {
  box-shadow: 0 30px 60px rgba(181,50,42,0.28);
  transform: translateY(-10px);
}
.compare-card .current-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--brm-red); color: #fff;
  padding: 5px 12px; line-height: 1;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(181,50,42,0.4);
  z-index: 2;
}
.compare-card .img-wrap {
  aspect-ratio: 1; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(0,0,0,0.025) 0%, transparent 65%);
}
.compare-card.current .img-wrap {
  background: radial-gradient(circle at center, rgba(181,50,42,0.15) 0%, transparent 65%);
}
.compare-card .img-wrap img {
  max-height: 100%; max-width: 82%;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.15));
}
.compare-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 60px; letter-spacing: -0.04em; line-height: 0.9;
  margin-bottom: 6px;
}
.compare-card .arch {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brm-muted); margin: 0 0 22px;
}
.compare-card.current .arch { color: rgba(255,255,255,0.55); }
.compare-card .price-row {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; margin-bottom: 4px;
}
.compare-card .monthly-row {
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--brm-muted); margin-bottom: 24px;
}
.compare-card.current .monthly-row { color: rgba(255,255,255,0.6); }
.compare-card .btn { margin-top: auto; justify-content: center; }
.compare-card.current .btn {
  background: var(--brm-red); color: #fff; border-color: var(--brm-red);
}
.compare-card.current .btn:hover { background: #d44339; border-color: #d44339; }

/* MOBILE — layout horizontal, carte compacte */
@media (max-width: 980px) {
  .p-compare { padding: 60px 24px; }
  .p-compare h2 { margin-bottom: 28px; font-size: 26px; }
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 540px;
  }
  .compare-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-auto-flow: row dense;
    gap: 2px 18px;
    padding: 16px 18px;
    text-align: left;
    align-items: baseline;
  }
  .compare-card > .current-tag {
    grid-column: 1 / -1;
    position: static;
    justify-self: start;
    margin-bottom: 6px;
    font-size: 8px; padding: 4px 10px;
  }
  .compare-card > .img-wrap {
    grid-column: 1;
    grid-row: 2 / span 5;
    aspect-ratio: 1;
    margin: 0; align-self: center;
  }
  .compare-card > .img-wrap img { max-width: 100%; }
  .compare-card > h3 {
    grid-column: 2; grid-row: 2;
    font-size: 40px; line-height: 1; margin: 0;
  }
  .compare-card > .arch {
    grid-column: 2; grid-row: 3;
    margin: 0 0 6px;
    font-size: 9px; letter-spacing: 0.18em;
  }
  .compare-card > .price-row {
    grid-column: 2; grid-row: 4;
    font-size: 22px; margin-bottom: 2px;
  }
  .compare-card > .monthly-row {
    grid-column: 2; grid-row: 5;
    font-size: 11px; margin-bottom: 10px;
  }
  .compare-card > .btn {
    grid-column: 2; grid-row: 6;
    justify-self: start;
    padding: 9px 14px; font-size: 10px;
    letter-spacing: 0.12em;
  }
}

/* TRUST — bandeau preuves */
.trust-strip {
  background: #fff; padding: 60px 48px;
  border-top: 1px solid var(--brm-line-dark);
  border-bottom: 1px solid var(--brm-line-dark);
}
.trust-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: center;
}
.trust-item .num {
  font-family: 'Instrument Serif', serif; font-size: 44px; line-height: 1;
  color: var(--brm-text); margin-bottom: 8px;
}
.trust-item .txt {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brm-muted);
}

/* FAQ */
.p-faq {
  background: var(--brm-cream); padding: 140px 48px;
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-inner .label { color: var(--brm-muted); display: block; margin-bottom: 16px; text-align: center; }
.faq-inner h2 {
  font-family: 'Instrument Serif', serif; text-align: center;
  font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.02em; margin-bottom: 60px;
}
.faq-item {
  border-top: 1px solid var(--brm-line-dark);
}
.faq-item:last-child { border-bottom: 1px solid var(--brm-line-dark); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--brm-text);
  font-weight: 400;
}
.faq-q::after {
  content: '+'; font-size: 28px; color: var(--brm-muted); transition: transform 0.3s;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  color: var(--brm-text); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 26px; max-width: 700px; }

/* CTA FINAL réutilisable */
section.cta-final {
  background: var(--brm-noir); color: #fff;
  padding: 160px 48px; text-align: center;
}
.cta-final h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 48px;
}
.cta-final h2 em { font-style: italic; color: var(--brm-muted); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.cta-final .meta { font-size: 13px; color: var(--brm-muted); letter-spacing: 0.04em; }

/* CHECKOUT — funnel commande figé à la taille écran (pas de scroll global, desktop uniquement) */
@media (min-width: 981px) {
  html:has(.checkout-page), body:has(.checkout-page) {
    height: 100vh; overflow: hidden;
  }
}
.checkout-page {
  background: var(--brm-cream);
  height: 100vh; max-height: 100vh;
  padding: 78px 20px 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.checkout-container {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px;
  flex: 1; min-height: 0; /* important pour que les enfants puissent se rétracter */
}
.checkout-main {
  background: #fff; padding: 24px 32px;
  border: 1px solid var(--brm-line-dark);
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.checkout-aside {
  background: var(--brm-noir); color: #fff; padding: 22px 26px;
  align-self: stretch;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 0;
}
.step-pane.active {
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;
  overflow: hidden; /* pas de scroll — contenu doit tenir */
}
.checkout-steps {
  display: flex; gap: 4px; margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--brm-line-dark); flex-shrink: 0;
}
.checkout-step {
  flex: 1; text-align: center; position: relative;
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brm-muted); padding-top: 30px;
}
.checkout-step::before {
  content: attr(data-num); position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--brm-line-dark);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  background: #fff; color: var(--brm-muted); font-weight: 600;
}
.checkout-step.done::before { background: var(--brm-noir); color: #fff; border-color: var(--brm-noir); content: '✓'; }
.checkout-step.active { color: var(--brm-text); font-weight: 600; }
.checkout-step.active::before { background: var(--brm-red); color: #fff; border-color: var(--brm-red); }

.step-pane { display: none; }
.step-pane h2 {
  font-family: 'Instrument Serif', serif; font-size: 28px;
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.step-pane > .pane-sub {
  color: var(--brm-muted); font-size: 13px; margin-bottom: 18px;
}

.opt-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px;
  margin-bottom: 18px;
}
.opt-card {
  border: 1px solid var(--brm-line-dark); padding: 18px 16px; cursor: pointer;
  transition: all 0.2s; background: #fff;
  display: flex; flex-direction: column; gap: 6px;
}
.opt-card:hover { border-color: var(--brm-text); }
.opt-card.selected { border-color: var(--brm-red); background: rgba(181,50,42,0.04); }
.opt-card .ot {
  font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brm-muted);
}
.opt-card .ov { font-size: 16px; font-weight: 500; }
.opt-card .op { font-size: 12px; color: var(--brm-muted); }

.field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brm-muted);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--brm-line-dark); padding: 12px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; background: #fff; color: var(--brm-text);
  border-radius: 0; transition: border 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brm-red);
}
.field textarea { resize: vertical; min-height: 90px; }

.pay-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pay-option {
  border: 1px solid var(--brm-line-dark); padding: 22px 24px; cursor: pointer;
  display: grid; grid-template-columns: 28px 1fr auto; gap: 20px; align-items: center;
  transition: all 0.2s; background: #fff;
}
.pay-option:hover { border-color: var(--brm-text); }
.pay-option.selected { border-color: var(--brm-red); background: rgba(181,50,42,0.04); }
.pay-option .radio {
  width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--brm-muted);
  position: relative;
}
.pay-option.selected .radio { border-color: var(--brm-red); }
.pay-option.selected .radio::after {
  content: ''; position: absolute; inset: 4px;
  background: var(--brm-red); border-radius: 50%;
}
.pay-option .pay-title { font-size: 16px; font-weight: 500; }
.pay-option .pay-desc { font-size: 13px; color: var(--brm-muted); margin-top: 2px; }
.pay-option .pay-amount {
  font-family: 'Instrument Serif', serif; font-size: 22px;
  text-align: right;
}
.pay-option .pay-amount small {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--brm-muted);
}

.pay-detail {
  display: none; background: var(--brm-bone); padding: 22px 24px;
  margin-top: -8px; margin-bottom: 24px;
  font-size: 14px; line-height: 1.6;
}
.pay-detail.show { display: block; }
.pay-detail b { font-weight: 600; }

.checkout-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: auto; padding: 16px 0 0;
  border-top: 1px solid var(--brm-line-dark);
  flex-shrink: 0;
  /* Reste collé en bas du pane même quand le contenu dépasse et scrolle */
  position: sticky; bottom: 0;
  background: #fff;
  z-index: 5;
}

/* récap latéral — compact pour tenir avec l'image + lignes + total */
.checkout-aside .as-tag {
  font-family: 'Instrument Sans', sans-serif; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brm-muted); margin-bottom: 12px;
  flex-shrink: 0;
}
.checkout-aside .as-img {
  background: radial-gradient(ellipse at center, #1d1916 0%, transparent 70%);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 auto; min-height: 0;
  overflow: hidden;
}
.checkout-aside .as-img img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
.checkout-aside .as-model {
  font-family: 'Instrument Serif', serif; font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 4px; flex-shrink: 0;
}
.checkout-aside .as-sub { color: var(--brm-muted); font-size: 12px; margin-bottom: 12px; flex-shrink: 0; }
.as-line {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-top: 1px solid var(--brm-line); font-size: 13px;
  flex-shrink: 0;
}
.as-line .k { color: var(--brm-muted); }
.as-line .v { color: #fff; }
.as-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0 0; margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.as-total .k { font-family: 'Instrument Sans', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brm-muted); }
.as-total .v { font-family: 'Instrument Serif', serif; font-size: 32px; color: #fff; }

.confirm-screen {
  background: var(--brm-cream); min-height: 100vh;
  display: flex; align-items: center; justify-content: center; padding: 60px 24px;
}
.confirm-card {
  max-width: 600px; background: #fff; padding: 60px 48px;
  border: 1px solid var(--brm-line-dark); text-align: center;
}
.confirm-card .check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--brm-green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px;
}
.confirm-card h1 {
  font-family: 'Instrument Serif', serif; font-size: 36px;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.confirm-card p { color: var(--brm-text); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.confirm-card .ref {
  background: var(--brm-bone); padding: 14px 20px; margin: 24px 0;
  font-family: 'Instrument Sans', sans-serif; font-size: 14px; letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  nav.top { padding: 14px 20px; }
  nav.top ul { display: none; }
  nav.top .logo-wrap img { height: 36px; }
  .p-hero { min-height: auto; padding: 90px 24px 50px; }
  .p-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .p-hero-img { max-width: 340px; margin: 8px auto 18px; }
  .p-hero-img img { max-height: 44vh; }
  .p-gallery, .p-specs, .p-compare, .cta-final, .p-fits, .p-faq { padding: 90px 24px; }
  .p-thumbs { grid-template-columns: repeat(3, 1fr); }
  .p-specs-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .p-fits-inner { grid-template-columns: 1fr; gap: 40px; }
  .checkout-page { height: auto; max-height: none; padding: 100px 24px 60px; overflow: visible; display: block; }
  .checkout-container { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .checkout-aside { position: static; overflow: visible; min-height: 0; align-self: start; }
  .checkout-main { padding: 28px 24px; overflow: visible; min-height: 0; }
  .step-pane.active { display: block; overflow: visible; flex: none; min-height: 0; }
  .field-grid { grid-template-columns: 1fr; }
  .pay-option { grid-template-columns: 28px 1fr; }
  .pay-option .pay-amount { grid-column: 2; text-align: left; margin-top: 8px; }
}
@media (max-width: 540px) {
  nav.top { padding: 12px 16px; }
  nav.top .logo-wrap img { height: 30px; }
  nav.top .badge { font-size: 10px; }
  .p-hero h1 { font-size: 90px; }
  .p-hero .price-block { padding: 14px 18px; }
  .p-hero .price-block .price { font-size: 32px; }
  .btn { padding: 14px 20px; font-size: 11px; }
  .checker { height: 16px; background-size: 16px 16px; background-position: 0 0, 0 8px, 8px -8px, -8px 0; }
  .checker.thin { height: 10px; background-size: 10px 10px; background-position: 0 0, 0 5px, 5px -5px, -5px 0; }
  .spec-item .v { font-size: 22px; }
  .checkout-steps { flex-wrap: wrap; gap: 10px; }
  .checkout-step { flex: 0 0 calc(50% - 5px); padding-top: 32px; font-size: 9px; }
  .fits-list li { grid-template-columns: 1fr; gap: 4px; }
}
</content>
</invoke>