/* ==========================================================================
   LittleMeca57 — feuille de style unique
   Aucune dépendance, aucun build. Modifier ce fichier suffit.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. JETONS DE COULEUR ET DE TYPOGRAPHIE
   Pour changer l'identité du site, il suffit de modifier les valeurs ici.
   -------------------------------------------------------------------------- */
:root {
  --hazard: #F0C22B;          /* jaune signalisation — couleur principale */
  --hazard-ink: #1A1C20;      /* texte posé sur le jaune */
  --rust: #B44A2A;            /* erreurs */
  --go: #2F6B4C;              /* succès */
  --info: #2B5F8A;            /* information */

  --ground: #ECEAE5;
  --surface: #F9F8F5;
  --surface-2: #E1DED7;
  --ink: #1A1C20;
  --ink-2: #3D434A;
  /* Gris secondaire : assombri pour rester lisible sur le fond clair
     (rapport de contraste 4,7:1, au-dessus du minimum réglementaire de 4,5:1). */
  --steel: #5F686F;
  --rule: #CDC9C0;
  --field: #FFFFFF;
  --field-rule: #B9B4A9;
  --shadow: 0 1px 2px rgba(26, 28, 32, .07), 0 10px 30px -16px rgba(26, 28, 32, .35);

  --f-display: "Bahnschrift", "Avenir Next Condensed", "Helvetica Neue Condensed", "Arial Narrow", system-ui, sans-serif;
  --f-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Roboto Mono", monospace;

  --pad: clamp(1rem, 4vw, 2rem);
  --radius: 3px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #15171A;
    --surface: #1E2126;
    --surface-2: #262A30;
    --ink: #E6E4DF;
    --ink-2: #C3C6CA;
    --steel: #8D959D;
    --rule: #343941;
    --field: #121417;
    --field-rule: #3E444C;
    --go: #5FA37D;
    --rust: #DB7A55;
    --info: #6FA8D6;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 14px 34px -18px rgba(0, 0, 0, .9);
  }
}

:root[data-theme="dark"] {
  --ground: #15171A;
  --surface: #1E2126;
  --surface-2: #262A30;
  --ink: #E6E4DF;
  --ink-2: #C3C6CA;
  --steel: #8D959D;
  --rule: #343941;
  --field: #121417;
  --field-rule: #3E444C;
  --go: #5FA37D;
  --rust: #DB7A55;
  --info: #6FA8D6;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 14px 34px -18px rgba(0, 0, 0, .9);
}

:root[data-theme="light"] {
  --ground: #ECEAE5;
  --surface: #F9F8F5;
  --surface-2: #E1DED7;
  --ink: #1A1C20;
  --ink-2: #3D434A;
  --steel: #5F686F;
  --rule: #CDC9C0;
  --field: #FFFFFF;
  --field-rule: #B9B4A9;
  --go: #2F6B4C;
  --rust: #B44A2A;
  --info: #2B5F8A;
  --shadow: 0 1px 2px rgba(26, 28, 32, .07), 0 10px 30px -16px rgba(26, 28, 32, .35);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--hazard); color: var(--hazard-ink);
  padding: .7rem 1.1rem; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

.hazard {
  height: 7px;
  background: repeating-linear-gradient(-45deg, var(--hazard) 0 9px, var(--hazard-ink) 9px 18px);
}

.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;
}

/* --------------------------------------------------------------------------
   3. EN-TÊTE
   -------------------------------------------------------------------------- */
.top { background: var(--surface); border-bottom: 1px solid var(--rule); }

.top-in {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  padding-top: .9rem; padding-bottom: .9rem;
}

/* padding vertical : le logo est un lien vers l'accueil, il doit rester
   confortable à toucher au doigt sur un téléphone */
.brand { display: flex; align-items: baseline; gap: .55rem; margin-right: auto; text-decoration: none; padding: .35rem 0; }
.brand-name {
  font-family: var(--f-display); font-size: 1.45rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .035em; line-height: 1;
}
.brand-sub {
  font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .16em; color: var(--steel);
}

.tel {
  display: inline-flex; align-items: center; gap: .45rem;
  /* couleur déclarée explicitement plutôt qu'héritée : le bouton reste
     lisible dans les deux thèmes quoi qu'il arrive en amont */
  color: var(--ink);
  font-family: var(--f-mono); font-size: .92rem; font-weight: 600;
  text-decoration: none; border: 1px solid var(--ink);
  padding: .45rem .75rem; border-radius: var(--radius);
  white-space: nowrap; transition: background .15s ease, color .15s ease;
}
.tel:hover, .tel:focus-visible { background: var(--ink); color: var(--ground); }
.tel:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   4. SECTION D'ACCUEIL
   -------------------------------------------------------------------------- */
.hero { padding: clamp(2rem, 7vw, 3.75rem) 0 clamp(1.5rem, 4vw, 2.25rem); }

h1 {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 8.5vw, 3.9rem);
  font-weight: 700; line-height: .96; letter-spacing: .005em;
  text-transform: uppercase; text-wrap: balance;
  margin: 0 0 .85rem; max-width: 17ch;
}
h1 .mark {
  color: var(--hazard-ink); background: var(--hazard); padding: 0 .18em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

.lede { font-size: 1.07rem; color: var(--ink-2); max-width: 54ch; margin: 0 0 1.5rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.75rem; }

.facts { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--rule); }
.fact { flex: 1 1 150px; padding: .85rem 1rem .85rem 0; border-right: 1px solid var(--rule); }
.fact:last-child { border-right: 0; }
.fact:not(:first-child) { padding-left: 1rem; }
.fact-k {
  font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--steel); display: block;
}
.fact-v {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   5. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--f-display); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--hazard); color: var(--hazard-ink);
  border: 1px solid var(--hazard); border-radius: var(--radius);
  padding: .8rem 1.35rem; cursor: pointer;
  transition: transform .1s ease, filter .15s ease;
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn[disabled] { opacity: .55; cursor: progress; }

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ground); filter: none; }

.btn-block { width: 100%; }
@media (min-width: 560px) { .btn-block { width: auto; } }

/* --------------------------------------------------------------------------
   6. SECTIONS GÉNÉRIQUES
   -------------------------------------------------------------------------- */
.band { border-top: 1px solid var(--rule); padding: clamp(2rem, 6vw, 3.25rem) 0; }

h2.sec {
  font-family: var(--f-display); font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  margin: 0 0 .5rem; line-height: 1.05; text-wrap: balance;
}
.sec-lede { color: var(--ink-2); max-width: 58ch; margin: 0 0 1.75rem; }

/* --------------------------------------------------------------------------
   7. PRESTATIONS
   -------------------------------------------------------------------------- */
.services { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .services { grid-template-columns: repeat(3, 1fr); } }

.svc {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.svc-h {
  padding: .95rem 1.1rem; border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: .15rem;
}
.svc-eq {
  font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--steel);
}
.svc-t {
  font-family: var(--f-display); font-size: 1.18rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; margin: 0; line-height: 1.15;
}
.svc-b { padding: 1rem 1.1rem 1.2rem; flex: 1; }
.svc-b ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.svc-b li { font-size: .93rem; padding-left: 1.15rem; position: relative; color: var(--ink-2); }
.svc-b li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: .45rem; height: .45rem; background: var(--hazard); border-radius: 1px;
}

.nope {
  margin-top: 1.25rem; border-left: 3px solid var(--rule);
  padding: .1rem 0 .1rem .9rem; color: var(--steel); font-size: .93rem; max-width: 62ch;
}
.nope strong { color: var(--ink-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   8. GRILLE PRINCIPALE (colonne infos + formulaire)
   -------------------------------------------------------------------------- */
.cols { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 920px) {
  .cols { grid-template-columns: 19rem 1fr; gap: 2.25rem; align-items: start; }
  .side { position: sticky; top: 1.5rem; }
}

.side { display: flex; flex-direction: column; gap: 1rem; }

.card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card-h {
  font-family: var(--f-display); font-size: .84rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .11em;
  padding: .7rem 1rem; border-bottom: 1px solid var(--rule); margin: 0;
}
.card-b { padding: 1rem; display: flex; flex-direction: column; gap: .85rem; }

dl.hours { margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.row dt { color: var(--steel); margin: 0; }
.row dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.row.closed dd { color: var(--steel); }
.row.now dt, .row.now dd { color: var(--ink); font-weight: 600; }

.status {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--f-mono); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--steel);
}
.dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--steel); flex: 0 0 auto; }
.status.open .dot { background: var(--go); }
.status.open { color: var(--go); }

.note { font-size: .88rem; color: var(--steel); margin: 0; }
.note strong { color: var(--ink-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   9. FORMULAIRE — présenté comme un ordre de réparation
   -------------------------------------------------------------------------- */
.order {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.order-h {
  padding: 1rem var(--pad) .9rem; border-bottom: 1px solid var(--rule);
  display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap;
}
.order-t {
  font-family: var(--f-display); font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; line-height: 1.1; margin: 0;
}
.order-meta {
  margin-left: auto; font-family: var(--f-mono); font-size: .74rem;
  color: var(--steel); letter-spacing: .06em; text-align: right; line-height: 1.5;
}
.order-b { padding: var(--pad); display: flex; flex-direction: column; gap: 2rem; }

fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
legend {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  font-family: var(--f-display); font-size: .87rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .11em; padding: 0 0 .1rem;
}
.num {
  flex: 0 0 auto; width: 1.35rem; height: 1.35rem; display: grid; place-items: center;
  background: var(--hazard); color: var(--hazard-ink);
  font-family: var(--f-mono); font-size: .72rem; font-weight: 700; border-radius: 2px;
}
legend .bar { flex: 1 1 auto; height: 1px; background: var(--rule); }

.grid2 { display: grid; grid-template-columns: 1fr; gap: .9rem; }
@media (min-width: 560px) { .grid2 { grid-template-columns: 1fr 1fr; } }

.f { display: flex; flex-direction: column; gap: .32rem; }
.f > label, .lbl {
  font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .13em; color: var(--steel);
}
.opt { text-transform: none; letter-spacing: 0; font-family: var(--f-body); font-size: .72rem; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="password"], select, textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--field); border: 1px solid var(--field-rule);
  border-radius: var(--radius); padding: .62rem .7rem; width: 100%;
  transition: border-color .12s ease, box-shadow .12s ease;
}
textarea { resize: vertical; min-height: 6.5rem; line-height: 1.55; }

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none; border-color: var(--hazard);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hazard) 40%, transparent);
}

.bad input, .bad textarea, .bad select { border-color: var(--rust); }

.err { color: var(--rust); font-size: .82rem; margin: 0; display: flex; gap: .35rem; align-items: baseline; }
.err::before { content: "▲"; font-size: .6rem; flex: 0 0 auto; }
.err[hidden] { display: none; }

.hint { font-size: .82rem; color: var(--steel); margin: 0; }

/* Plaque d'immatriculation — reste blanche/bleue dans les deux thèmes,
   parce qu'une vraie plaque française l'est toujours. */
.plate {
  display: flex; align-items: stretch; background: #FFFFFF;
  border: 2px solid #101010; border-radius: 5px; overflow: hidden;
  max-width: 19rem; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.plate:focus-within { box-shadow: 0 0 0 3px color-mix(in srgb, var(--hazard) 45%, transparent); }
.plate svg { display: block; width: 1.7rem; height: auto; flex: 0 0 auto; align-self: stretch; }
.plate input {
  border: 0; border-radius: 0; background: #FFFFFF; color: #101010;
  font-family: var(--f-mono); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .09em; text-align: center; text-transform: uppercase;
  padding: .42rem .3rem;
}
.plate input:focus-visible { outline: none; box-shadow: none; }
.plate input::placeholder { color: #B5B5B5; font-weight: 400; letter-spacing: .06em; }
.bad .plate { border-color: var(--rust); }

/* Pastilles de prestation */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; font-size: .9rem; line-height: 1.25;
  border: 1px solid var(--field-rule); background: var(--field);
  padding: .42rem .7rem; border-radius: 99px; user-select: none;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.chip:hover span { border-color: var(--ink-2); }
.chip input:checked + span {
  background: var(--hazard); border-color: var(--hazard);
  color: var(--hazard-ink); font-weight: 600;
}
.chip input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.bad .chips { padding: .3rem; margin: -.3rem; border-radius: var(--radius); box-shadow: 0 0 0 1px var(--rust); }

/* Boutons radio en cartes */
.radios { display: flex; flex-direction: column; gap: .4rem; }
@media (min-width: 560px) { .radios { flex-direction: row; flex-wrap: wrap; } }
.radio {
  flex: 1 1 9rem; display: flex; align-items: center; gap: .55rem; cursor: pointer;
  border: 1px solid var(--field-rule); background: var(--field);
  border-radius: var(--radius); padding: .55rem .7rem; font-size: .93rem;
  transition: border-color .12s ease, background .12s ease;
}
.radio input { accent-color: var(--hazard-ink); margin: 0; flex: 0 0 auto; }
.radio:hover { border-color: var(--ink-2); }
.radio:has(input:checked) { border-color: var(--ink); background: var(--surface-2); font-weight: 600; }
.radio:has(input:focus-visible) { outline: 2px solid var(--hazard); outline-offset: 2px; }

/* padding vertical : porte la zone cliquable au doigt à plus de 32 px */
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; cursor: pointer; color: var(--ink-2); padding: .4rem 0; }
.check input { margin: .28rem 0 0; accent-color: var(--hazard-ink); flex: 0 0 auto; }
/* Lien inséré dans une phrase : on épaissit la zone cliquable sans
   décaler les lignes autour. */
.check a, .disclaim a { padding: .35rem .1rem; margin: -.35rem -.1rem; }
.bad .check { color: var(--rust); }

.counter {
  font-family: var(--f-mono); font-size: .74rem; color: var(--steel);
  text-align: right; font-variant-numeric: tabular-nums;
}

/* Champ piège à robots — invisible pour les humains, rempli par les robots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.reveal[hidden] { display: none; }

.callout {
  border-left: 3px solid var(--info); background: color-mix(in srgb, var(--info) 8%, transparent);
  padding: .7rem .9rem; font-size: .9rem; color: var(--ink-2); border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p { margin: 0; }

.submit-block {
  border-top: 1px solid var(--rule); margin-top: -.4rem; padding-top: 1.3rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.disclaim { font-size: .87rem; color: var(--steel); margin: 0; max-width: 62ch; }
.disclaim strong { color: var(--ink-2); font-weight: 600; }

.form-error {
  background: color-mix(in srgb, var(--rust) 12%, transparent);
  border: 1px solid var(--rust); color: var(--rust);
  padding: .65rem .85rem; border-radius: var(--radius); font-size: .9rem; margin: 0;
}
.form-error[hidden] { display: none; }

/* --------------------------------------------------------------------------
   10. ÉCRAN DE CONFIRMATION
   -------------------------------------------------------------------------- */
.done { padding: var(--pad); display: flex; flex-direction: column; gap: 1.25rem; }
.done[hidden] { display: none; }
.done-top { display: flex; gap: .9rem; align-items: center; }
.done-mark {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--go); color: #fff; font-size: 1.3rem; flex: 0 0 auto;
}
.done-t {
  font-family: var(--f-display); font-size: 1.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; margin: 0; line-height: 1.1;
}
.recap { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; margin: 0; }
.recap-r { display: flex; gap: 1rem; padding: .6rem .85rem; border-bottom: 1px solid var(--rule); font-size: .93rem; }
.recap-r:last-child { border-bottom: 0; }
.recap-r dt {
  flex: 0 0 8.5rem; color: var(--steel); font-family: var(--f-mono);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .11em;
  padding-top: .22rem; margin: 0;
}
.recap-r dd { margin: 0; flex: 1; }
.steps {
  margin: .4rem 0 0; padding-left: 1.1rem; display: flex; flex-direction: column;
  gap: .4rem; font-size: .93rem; color: var(--ink-2);
}
.linkish {
  background: none; border: 0; padding: 0; font: inherit; color: var(--steel);
  text-decoration: underline; cursor: pointer; align-self: flex-start;
}
.linkish:hover { color: var(--ink); }
.linkish:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   11. ZONE D'INTERVENTION
   -------------------------------------------------------------------------- */
.taglist { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.taglist li {
  font-size: .82rem; border: 1px solid var(--rule); border-radius: 99px;
  padding: .18rem .6rem; color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   12. PIED DE PAGE
   -------------------------------------------------------------------------- */
footer { background: var(--surface); border-top: 1px solid var(--rule); padding: 1.75rem 0 2.5rem; }
.foot { display: flex; flex-direction: column; gap: .8rem; font-size: .86rem; color: var(--steel); }
.foot p { margin: 0; }
.foot-links { display: flex; flex-wrap: wrap; gap: .2rem 1.2rem; }
.foot-links a { text-decoration: none; border-bottom: 1px solid var(--rule); padding: .35rem 0; }
.foot-links a:hover { border-bottom-color: var(--ink); color: var(--ink); }
.foot-links a:focus-visible { outline: 2px solid var(--hazard); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   13. PAGES DE TEXTE (mentions légales, confidentialité)
   -------------------------------------------------------------------------- */
.prose { max-width: 68ch; padding: clamp(2rem, 6vw, 3.5rem) 0 4rem; }
.prose h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); margin-bottom: 1.5rem; max-width: none; }
.prose h2 {
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin: 2.25rem 0 .6rem; padding-bottom: .35rem; border-bottom: 1px solid var(--rule);
}
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.15rem; display: flex; flex-direction: column; gap: .4rem; }
.prose dl { display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1rem; }
.prose dt { font-family: var(--f-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--steel); }
.prose dd { margin: 0 0 .5rem; color: var(--ink-2); }
.prose a { color: var(--ink); }
/* Surligne les informations qui restent à compléter avant la mise en ligne. */
.acompleter {
  background: var(--hazard); color: var(--hazard-ink);
  padding: .05em .3em; font-weight: 600;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.back {
  display: inline-block; margin-bottom: 1.5rem; font-size: .9rem;
  color: var(--steel); text-decoration: none;
}
.back:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   14. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.anim { animation: rise .5s cubic-bezier(.2, .7, .3, 1) both; }
.d1 { animation-delay: .05s; }
.d2 { animation-delay: .12s; }
.d3 { animation-delay: .19s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------------------------------------
   15. IMPRESSION
   -------------------------------------------------------------------------- */
@media print {
  .top, footer, .hero-cta, .submit-block, .side { display: none; }
  body { background: #fff; color: #000; }
  .order { box-shadow: none; border-color: #999; }
}
