/* Robotiser — encre froide très sombre, très épurée.
   Aucune couleur saturée : les actions sont en blanc cassé plein, l'accent est
   un acier pâle réservé aux repères (surtitres, filets actifs, sources). */

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --noir: #0a0c0e;          /* fond : encre froide très sombre */
  --noir-2: #14171a;        /* pastilles et surfaces détachées */
  --noir-3: #1c2024;        /* pastille survolée */
  --encre: #eef1f3;         /* texte principal, blanc légèrement froid */
  --gris: #8d949b;          /* texte secondaire */
  --ligne: #1e2226;         /* filets */
  --ligne-2: #2f353b;       /* filets accentués */
  --accent: #9db8cc;        /* acier pâle : lisible, sobre, non saturé */
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--noir); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--noir);
  color: var(--encre);
  font: 17px/1.75 var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Marque ---------- */

.plaque {
  display: inline-block;
  border-top: 1px solid var(--encre);
  border-bottom: 1px solid var(--encre);
  padding: 9px 0;
  text-decoration: none;
  color: var(--encre);
}
.plaque span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .36em;
  margin-right: -.36em;
}
.plaque .tld { color: var(--accent); }

/* ---------- En-tête ---------- */

header.site {
  border-bottom: 1px solid var(--ligne);
  background: rgba(10, 12, 14, .86);
  backdrop-filter: saturate(140%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .inner {
  max-width: 78rem;
  margin: 0 auto;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 14px 30px;
  flex-wrap: wrap;
}
/* Barre produit à deux niveaux : identité et action en haut, sections en dessous */
header.site .barre {
  width: 100%;
  background: rgba(20, 23, 26, .74);
  backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--ligne);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
header.site .barre-haut {
  display: flex;
  align-items: center;
  gap: 12px 22px;
  flex-wrap: wrap;
  padding: 14px 14px 14px 24px;
  transition: padding .32s cubic-bezier(.3,.7,.2,1);
}
header.site .barre-bas {
  display: flex;
  align-items: center;
  gap: 8px 30px;
  flex-wrap: wrap;
  padding: 12px 24px 14px;
  border-top: 1px solid var(--ligne);
  transition: padding .32s cubic-bezier(.3,.7,.2,1), font-size .32s ease;
}

/* Barre réduite dès qu'on quitte le haut de page : moins haute, plus discrète */
header.site.compact .inner { padding: 8px 26px; }
header.site.compact .barre-haut { padding: 8px 10px 8px 20px; }
header.site.compact .barre-bas { padding: 6px 20px 8px; }
header.site.compact .marque-dom { font-size: 17px; }
header.site.compact .barre-bas a { font-size: 13.5px; }
header.site.compact .action { padding: 6px 15px; font-size: 13.5px; }
header.site .inner, header.site .marque-dom, header.site .action {
  transition: padding .32s cubic-bezier(.3,.7,.2,1), font-size .32s ease;
}
@media (prefers-reduced-motion: reduce) {
  header.site .inner, header.site .barre-haut, header.site .barre-bas,
  header.site .marque-dom, header.site .action { transition: none; }
}
header.site .marque-dom {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--encre);
  text-decoration: none;
  border: none;
}
header.site .marque-dom .tld { color: var(--accent); }
header.site .actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
header.site .action {
  border: 1px solid var(--ligne-2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14.5px;
  color: var(--encre);
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
header.site .action:hover, header.site .action:focus-visible {
  background: var(--encre); border-color: var(--encre); color: var(--noir);
}
header.site .action.pleine {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--noir);
  font-weight: 600;
}
header.site .action.pleine:hover, header.site .action.pleine:focus-visible {
  background: #fff; border-color: #fff; color: var(--noir);
}
/* Onglet actif : blanc et gras, le reste en gris — signature de la barre produit */
header.site .barre-bas a {
  color: var(--gris);
  font-size: 14.5px;
  text-decoration: none;
  border: none;
  padding: 4px 0;
  transition: color .2s ease;
}
header.site .barre-bas a:hover, header.site .barre-bas a:focus-visible { color: var(--encre); }
header.site .barre-bas a[aria-current="page"] { color: var(--encre); font-weight: 600; }
header.site nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14.5px;
}
header.site nav a {
  color: var(--gris);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease;
}
header.site nav a:hover,
header.site nav a:focus-visible,
header.site nav a[aria-current="page"] { color: var(--encre); border-bottom-color: var(--accent); }

/* ---------- Structure ---------- */

.wrap { max-width: 43rem; margin: 0 auto; padding: 0 26px; }
.wrap-large { max-width: 68rem; margin: 0 auto; padding: 0 26px; }

section { padding: 76px 0; border-bottom: 1px solid var(--ligne); }
section:last-of-type { border-bottom: none; }

/* ---------- Ouverture ---------- */

.hero { padding: 104px 0 0; border-bottom: none; }
.hero .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 26px;
}

h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.025em;
  margin: 0 0 26px;
  max-width: 20ch;
  text-wrap: balance;
}
h2 {
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 18px;
  text-wrap: balance;
}
h3 { font-size: 18px; font-weight: 600; margin: 34px 0 10px; letter-spacing: -.01em; }

p { margin: 0 0 18px; max-width: 64ch; color: var(--encre); }
.lede { font-size: clamp(18px, 2.1vw, 21px); line-height: 1.62; color: var(--gris); max-width: 54ch; }

a { color: var(--encre); text-decoration: none; border-bottom: 1px solid var(--accent); }
a:hover, a:focus-visible { color: var(--accent); }

ul, ol { max-width: 64ch; padding-left: 1.2em; color: var(--encre); }
li { margin-bottom: 10px; }
strong { font-weight: 600; }

/* ---------- Titre d'affichage : deux lignes, très grand, très serré ---------- */

.affiche {
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -.03em;
  margin: 0 0 34px;
  max-width: 16ch;
  text-wrap: balance;
}
.affiche .att { color: var(--gris); display: block; }

/* ---------- Grille de trois colonnes, filet sous le titre ---------- */

.colonnes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 26px 52px;
  margin-top: 44px;
}
.colonnes > div h3 {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ligne-2);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--encre);
}
.colonnes > div p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--gris);
  margin: 0 0 14px;
  max-width: 34ch;
}
.colonnes > div p:last-child { margin-bottom: 0; }
/* le chiffre qui compte passe en blanc plein, au milieu du gris */
.colonnes > div strong, .chiffre { color: var(--encre); font-weight: 600; }

/* ---------- Bouton pilule à cercle ---------- */

.pilule {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--noir-2);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 12px 12px 28px;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  color: var(--encre);
  text-decoration: none;
  transition: background .25s ease;
}
.pilule:hover, .pilule:focus-visible { background: var(--noir-3); color: var(--encre); }
.pilule .rond {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--encre);
  color: var(--noir);
  display: grid; place-items: center;
  font-size: 21px; line-height: 1; font-weight: 400;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.pilule:hover .rond { transform: rotate(90deg); }

/* ---------- Scène produit : l'objet épinglé, les pastilles à gauche ---------- */

/* overflow-x seulement : « overflow: clip » ferait de la scène le conteneur de
   référence et annulerait l'épinglage de l'objet. */
.scene { padding: 0 0 40px; border-bottom: 1px solid var(--ligne); position: relative; overflow-x: clip; }
.scene-inner {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: minmax(18rem, 26rem) 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  /* En colonne, un élément collant enfermé dans une cellule de grille ne peut
     pas voyager : on passe en flex pour que sa course couvre toute la scène. */
  .scene-inner { display: flex; flex-direction: column-reverse; gap: 0; }
}

/* Colonne des pastilles : elles se répartissent sur toute la course collante,
   ce qui donne au robot le couloir de défilement nécessaire pour tourner. */
.pastilles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 90px 0 110px;
  min-height: 155vh;
}
@media (max-width: 900px) { .pastilles { min-height: 0; } }
.pastille {
  background: var(--noir-2);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .3s ease, border-radius .3s ease, border-color .3s ease;
  overflow: hidden;
}
.pastille[open] { border-radius: 26px; background: var(--noir-3); border-color: var(--ligne-2); }
.pastille > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 26px 17px 18px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--encre);
}
.pastille > summary::-webkit-details-marker { display: none; }
.pastille > summary .signe {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gris);
  display: grid; place-items: center;
  color: var(--gris);
  font-size: 17px; line-height: 1;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), color .3s ease, border-color .3s ease, background .3s ease;
}
.pastille:hover > summary .signe { color: var(--encre); border-color: var(--encre); }
.pastille[open] > summary .signe { transform: rotate(45deg); background: var(--encre); border-color: var(--encre); color: var(--noir); }
/* la première pastille porte la pastille pleine, comme un sélecteur actif */
.pastille.vive > summary .signe { background: var(--encre); border-color: var(--encre); color: transparent; }
.pastille .corps { padding: 0 26px 22px 64px; }
.pastille .corps p { font-size: 16px; color: var(--gris); margin: 0 0 12px; max-width: 46ch; }
.pastille .corps p:last-child { margin-bottom: 0; }
.pastille .corps a { font-size: 15.5px; }

/* L'objet */
.scene-objet {
  position: sticky;
  top: 150px;
  height: min(70vh, 680px);
  display: grid;
  place-items: center;
}
.scene-objet .porteur {
  position: relative;
  /* stretch : sans quoi la hauteur en % ne résout pas et l'image déborde */
  align-self: stretch;
  justify-self: stretch;
  height: 100%;
  display: grid;
  grid-template-areas: "vue";
  place-items: center;
  transform: translateY(var(--drift, 0px)) scale(var(--zoom, 1));
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
/* Les vues se superposent ; seule l'active est visible, le passage est un fondu */
.scene-objet .vue {
  grid-area: 1 / 1;
  max-height: min(70vh, 680px);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0;
  pointer-events: none;
  /* Le fondu des bords est gravé dans le canal alpha des WebP : deux calques de
     masque CSS s'additionnaient au lieu de s'intersecter, et le rectangle
     restait visible. */
}
/* Sans JS, la première vue reste visible */
.scene-objet .vue:first-child { opacity: 1; }
.js .scene-objet .vue:first-child { opacity: 0; }
.scene-objet svg { height: 74%; width: auto; color: var(--ligne-2); display: block; }
/* halo bas : l'objet est posé dans le noir, pas collé dessus */
.scene-objet::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 6%;
  width: min(46rem, 90%); height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(157,184,204,.07), transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .scene-objet { position: static; height: auto; margin: 10px 0 26px; }
  .pastilles { padding: 20px 0 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .scene-objet .porteur { transform: none; transition: none; }
}

/* ---------- Bandeau de planches (réserve) ---------- */

.bande {
  margin-top: 70px;
  padding: 44px 0 40px;
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
  overflow: hidden;
  position: relative;
  perspective: 1400px;            /* profondeur : les cadres vivent dans l'espace */
  perspective-origin: 50% 50%;
  /* fondu aux deux bords : les figures naissent et disparaissent dans le noir */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.bande-piste {
  display: flex;
  width: max-content;
  animation: defile 78s linear infinite;
  transform-style: preserve-3d;
  /* inclinaison pilotée par le curseur (--rx/--ry), amortie */
  rotate: none;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.bande-scene {
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .9s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
.bande:hover .bande-piste, .bande:focus-within .bande-piste { animation-play-state: paused; }
.bande-groupe { display: flex; gap: 26px; padding-right: 26px; align-items: flex-start; transform-style: preserve-3d; }
.bande figure {
  margin: 0;
  color: var(--ligne-2);
  flex: none;
  width: 232px;
  transform-style: preserve-3d;
  transform: translateZ(var(--z, 0px));
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
/* Cadre commun : accueille indifféremment une planche au trait ou une photo */
.bande .cadre {
  width: 232px;
  aspect-ratio: 3 / 4;
  background: var(--noir-2);
  border: 1px solid var(--ligne);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px -30px #000;
}
/* voile qui fond le bas de l'image dans le noir : les robots sont dans l'univers,
   pas collés dessus */
.bande .cadre::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.28) 0%, rgba(10,10,11,0) 34%, rgba(10,10,11,.72) 100%);
  pointer-events: none;
}
.bande .cadre img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(.82);
  transition: filter .5s ease, transform .5s ease;
}
.bande figure:hover .cadre img { filter: grayscale(.55) contrast(1.05) brightness(.95); transform: scale(1.02); }
.bande .cadre svg { display: block; height: 74%; width: auto; }
.bande figcaption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gris);
  opacity: .55;
  margin-top: 12px;
  text-align: left;
}
@keyframes defile { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .bande-piste { animation: none; }
  .bande { overflow-x: auto; }
}
.bande-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gris);
  opacity: .5;
  text-align: center;
  margin: 16px auto 0;
}

/* ---------- Blocs de dossier ---------- */

.clause {
  border-left: 2px solid var(--accent);
  background: var(--noir-2);
  padding: 16px 20px;
  margin: 30px 0;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--encre);
  max-width: 64ch;
}

.note {
  border: 1px solid var(--ligne);
  background: var(--noir-2);
  padding: 18px 20px;
  margin: 30px 0;
  font-size: 15.5px;
  color: var(--gris);
  max-width: 64ch;
}
.note strong { color: var(--encre); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 34px 40px; margin-top: 40px; }
.grid h3 { margin-top: 0; }
.grid p { font-size: 15.5px; color: var(--gris); margin-bottom: 0; }

.table-scroll { overflow-x: auto; margin: 30px 0; }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 32rem; }
th, td { text-align: left; padding: 11px 16px 11px 0; border-bottom: 1px solid var(--ligne); vertical-align: top; }
th {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris);
  font-weight: 500;
}
td { color: var(--encre); }
td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--accent); }

.src { font-family: var(--mono); font-size: 12px; color: var(--gris); opacity: .8; display: block; margin: -12px 0 26px; }

/* 4 études : 2 × 2 aux grandes largeurs, jamais de case vide qui fait tache */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); gap: 20px; margin-top: 36px; }
.card { background: var(--noir-2); border: 1px solid var(--ligne); border-radius: 18px; padding: 30px; transition: background .25s ease, border-color .25s ease; }
.card:hover { border-color: var(--ligne-2); }
.card:hover { background: var(--noir-2); }
.card h3 { margin: 0 0 10px; font-size: 17.5px; }
.card p { font-size: 15px; color: var(--gris); margin: 0 0 16px; }
.card a { font-size: 15px; }

/* ---------- Formulaire ---------- */

.field { margin-bottom: 20px; max-width: 34rem; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; color: var(--gris); }
.field input, .field select, .field textarea {
  width: 100%;
  font: 16px/1.5 var(--sans);
  color: var(--encre);
  background: var(--noir-2);
  border: 1px solid var(--ligne-2);
  padding: 12px 14px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #131315;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

button {
  font: 600 15px var(--sans);
  letter-spacing: .01em;
  color: var(--noir);
  background: var(--encre);
  border: 1px solid var(--encre);
  padding: 13px 30px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
button:hover, button:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--noir); }
button:disabled { opacity: .5; cursor: default; }

.form-status { font-size: 15px; margin-top: 16px; min-height: 1.4em; color: var(--gris); }
.form-status.ok { color: #7fb069; }
.form-status.err { color: #e0644f; }

/* ---------- Pied ---------- */

footer.site {
  border-top: 1px solid var(--ligne);
  background: var(--noir);
  padding: 44px 0;
  font-size: 14px;
  color: var(--gris);
}
footer.site .inner { max-width: 68rem; margin: 0 auto; padding: 0 26px; display: flex; gap: 20px 48px; flex-wrap: wrap; }
footer.site p { margin: 0 0 6px; color: var(--gris); }
footer.site strong { color: var(--encre); }
footer.site a { color: var(--gris); display: inline-block; padding: 4px 0; border-bottom-color: var(--ligne-2); }
footer.site a:hover { color: var(--encre); }

/* ---------- Révélation au scroll ---------- */

.js .rv { opacity: 0; transform: translateY(12px); }
.js .rv.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; }
  .js .rv.in { transition: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--noir); }


/* ---------- Appel à l'action de fin de section ---------- */

.appel {
  border: 1px solid var(--ligne-2);
  border-radius: 20px;
  background: var(--noir-2);
  padding: 34px 36px;
  margin-top: 46px;
  display: flex;
  gap: 22px 40px;
  align-items: center;
  flex-wrap: wrap;
}
.appel .dit { flex: 1 1 24rem; }
.appel h3 { margin: 0 0 8px; font-size: 20px; }
.appel p { margin: 0; color: var(--gris); font-size: 15.5px; max-width: 52ch; }
.appel .bouton {
  flex: none;
  background: var(--encre);
  color: var(--noir);
  border: 1px solid var(--encre);
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease;
}
.appel .bouton:hover, .appel .bouton:focus-visible { background: #fff; color: var(--noir); }

/* ---------- Téléphone : l'en-tête ne doit pas manger l'écran ---------- */

@media (max-width: 700px) {
  header.site .inner { padding: 8px 14px; }
  header.site .barre { border-radius: 16px; }
  header.site .barre-haut { padding: 10px 10px 10px 16px; gap: 10px; flex-wrap: nowrap; }
  header.site .marque-dom { font-size: 17px; }
  header.site .actions { gap: 8px; }
  /* une seule action visible au doigt : la principale */
  header.site .actions .action:not(.pleine) { display: none; }
  header.site .action { padding: 7px 14px; font-size: 13.5px; }

  /* les sections défilent horizontalement au lieu de passer à la ligne */
  header.site .barre-bas {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 18px;
    padding: 8px 16px 10px;
  }
  header.site .barre-bas::-webkit-scrollbar { display: none; }
  header.site .barre-bas a { white-space: nowrap; font-size: 13.5px; }

  header.site.compact .barre-haut { padding: 7px 8px 7px 14px; }
  header.site.compact .barre-bas { padding: 6px 14px 8px; }

  /* L'objet reste épinglé sous l'en-tête et tourne pendant qu'on lit */
  .scene-objet { position: static; height: auto; margin: 6px 0 22px; }
  .scene-objet .vue { max-height: min(42vh, 340px); }
  .scene-objet::after { bottom: 0; height: 70px; }
  .hero { padding: 44px 0 0; }
  section { padding: 52px 0; }
  .wrap, .wrap-large { padding: 0 18px; }
  .appel { padding: 24px 22px; border-radius: 16px; }
}
