/* ═══════════════════════════════════════════════════════════════════
   AARRR Formations
   Direction : impression risographie. Papier crème, encre noire,
   deux encres franches (outremer + jaune acide). Trames de points,
   ombres portées dures sans flou, bordures épaisses, léger décalage
   de repérage. Chaud, imprimé — pas un dashboard.

   Contrastes vérifiés AA :
     ink   #14130E sur paper #FBF6EA  → 16.9:1
     blue  #1B2FC4 sur paper          →  8.6:1
     paper sur blue                   →  8.6:1
     ink   sur yellow #FFD84D         → 12.6:1
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --paper:  #FBF6EA;
  --paper-2:#F3ECD9;
  --ink:    #14130E;
  --ink-60: #5C5949;
  --blue:   #1B2FC4;
  --blue-d: #12208F;
  --yellow: #FFD84D;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Archivo", "Helvetica Neue", sans-serif;
  --mono:  "DM Mono", ui-monospace, monospace;

  --wrap: 1120px;
  --bd: 2.5px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Trame de points : le liant visuel de toute la page. */
  background-image: radial-gradient(var(--ink) 0.6px, transparent 0.7px);
  background-size: 18px 18px;
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--paper);
  opacity: .92;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

img { max-width: 100%; display: block; }

/* ── Accessibilité ─────────────────────────────────────────────── */
.skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 20px;
  font-weight: 600;
}
.skip:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
/* Sur fond outremer, un contour bleu serait invisible. */
.sheet--ink :focus-visible,
.final :focus-visible { outline-color: var(--yellow); }

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

/* ── Masthead ──────────────────────────────────────────────────── */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 24px;
  border-bottom: var(--bd);
  background: var(--paper);
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--blue);
  color: var(--paper);
  border: var(--bd);
  font-size: 18px;
  line-height: 1;
}
.logo__name {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .06em;
  font-size: 15px;
  text-transform: uppercase;
}
.logo__name span { color: var(--ink-60); }
.masthead__note {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-60);
}
@media (max-width: 620px) { .masthead__note { display: none; } }

/* ── Boutons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Cible tactile ≥ 48px de haut. */
  min-height: 52px;
  padding: 13px 26px;
  border: var(--bd);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--primary { background: var(--blue); color: var(--paper); }
.btn--primary:hover { background: var(--blue-d); }

.btn--outline { background: var(--paper); }
.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { background: var(--yellow); box-shadow: var(--shadow-sm); }

.btn--wide { width: 100%; }
.btn--big { min-height: 60px; padding: 16px 34px; font-size: 17px; }

.ico { width: 21px; height: 21px; fill: currentColor; flex: none; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.actions--center { justify-content: center; }
.actions__note {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--ink-60);
  max-width: 46ch;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  border-bottom: var(--bd);
  padding: 68px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 940px) {
  .hero { padding: 44px 24px 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 14px;
  background: var(--yellow);
  border: var(--bd);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .02em;
}

h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3.2rem, 8.2vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.025em;
  /* Fraunces : on pousse la douceur et le "wonk" — c'est ce qui donne
     le caractère imprimé plutôt que le grotesque neutre par défaut. */
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 120;
}
/* Surlignage au feutre : un trait jaune posé derrière le mot. */
.hl {
  position: relative;
  display: inline-block;
  color: var(--blue);
}
.hl::after {
  content: "";
  position: absolute;
  left: -.05em;
  right: -.05em;
  bottom: .1em;
  height: .28em;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-1deg);
}

.lede {
  margin: 0 0 32px;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.58;
  max-width: 44ch;
}
.lede strong { font-weight: 700; box-shadow: inset 0 -.42em 0 rgba(255, 216, 77, .55); }

/* Tampon — clin d'œil à la paperasse d'un organisme de formation. */
.hero__side { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }

.stamp {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 22px;
  border: 3px double var(--blue);
  color: var(--blue);
  transform: rotate(-4deg);
  text-align: center;
  opacity: .9;
}
.stamp__top, .stamp__bot {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stamp__num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .06em;
}

.facts {
  width: 100%;
  margin: 0;
  border: var(--bd);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1.5px dashed var(--ink);
}
.facts > div:last-child { border-bottom: 0; background: var(--yellow); }
.facts dt {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-60);
}
.facts > div:last-child dt { color: var(--ink); }
.facts dd { margin: 0; font-size: 15px; font-weight: 500; text-align: right; }

/* ── Sections ──────────────────────────────────────────────────── */
.sheet { padding: 88px 0; border-bottom: var(--bd); }
.sheet--paper { background: var(--paper-2); }
.sheet--ink { background: var(--blue); color: var(--paper); }
/* :not(.btn) est indispensable — sans lui, cette règle repeint le texte des
   boutons en crème alors que leur fond est déjà crème : contraste 1:1, texte
   invisible. Les boutons gardent leurs propres couleurs. */
.sheet--ink a:not(.btn) { color: var(--paper); }

@media (max-width: 760px) { .sheet { padding: 60px 0; } }

.rubric {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.sheet--ink .rubric { color: var(--yellow); }

h2 {
  margin: 0 0 44px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 100;
}
.sub { margin: -30px 0 40px; color: var(--ink-60); font-size: 15.5px; }
.sheet--ink .sub { color: rgba(251, 246, 234, .78); }

/* ── Objectifs ─────────────────────────────────────────────────── */
.goals {
  list-style: none;
  counter-reset: g;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.goals li {
  counter-increment: g;
  position: relative;
  padding: 26px 24px 26px 62px;
  border: var(--bd);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  font-size: 15.5px;
}
.goals li::before {
  content: counter(g);
  position: absolute;
  top: 22px; left: 20px;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  border-radius: 50%;
}
.goals strong { font-weight: 700; }

/* ── Programme ─────────────────────────────────────────────────── */
.prog { list-style: none; margin: 0; padding: 0; border-top: var(--bd); }
.prog li {
  padding: 28px 0;
  border-bottom: 1.5px dashed var(--ink);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: start;
}
.prog__h {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0 0;
  color: var(--blue);
  white-space: nowrap;
}
.prog h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1.16;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.prog p { margin: 0; color: var(--ink-60); font-size: 15.5px; max-width: 70ch; }

@media (max-width: 680px) {
  .prog li { grid-template-columns: 1fr; gap: 8px; }
}

.takeaway {
  margin-top: 44px;
  border: var(--bd);
  background: var(--yellow);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}
.takeaway__t {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.takeaway ul { margin: 0; padding-left: 20px; }
.takeaway li { padding: 5px 0; font-weight: 500; }

/* ── Duo (public) ──────────────────────────────────────────────── */
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.duo__col {
  border: var(--bd);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}
.duo__col h3 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.list { list-style: none; margin: 0; padding: 0; }
.list li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 15.5px;
  border-bottom: 1.5px dashed rgba(20, 19, 14, .22);
}
.list li:last-child { border-bottom: 0; }
.list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ── Tarifs ────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; } }

.plan {
  display: flex;
  flex-direction: column;
  border: var(--bd);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.plan--star { background: var(--yellow); }

.plan__tag {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.plan--star .plan__tag { color: var(--ink); font-weight: 500; }

.plan__name {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  /* Deux lignes réservées : les prix des trois cartes restent alignés. */
  min-height: 2.3em;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  padding-top: 18px;
  border-top: var(--bd);
}
.plan__price b {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.plan__price span { font-family: var(--mono); font-size: 13px; }
.plan__unit { margin: 5px 0 22px; font-size: 13px; color: var(--ink-60); }
.plan--star .plan__unit { color: #5A4E1C; }

.plan__list { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.plan__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14.8px;
  border-bottom: 1.5px dashed rgba(20, 19, 14, .2);
}
.plan__list li:last-child { border-bottom: 0; }
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue);
}
.plan--star .plan__list li::before { color: var(--ink); }

@media (max-width: 940px) { .plan__name { min-height: 0; } }

/* Encart financement — l'honnêteté est un argument, on l'affiche. */
.notice {
  margin-top: 40px;
  border: var(--bd);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 26px 28px;
}
.notice h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.notice p { margin: 0; font-size: 15px; line-height: 1.66; }
.notice strong { font-weight: 700; box-shadow: inset 0 -.4em 0 rgba(255, 216, 77, .6); }

/* ── Modalités ─────────────────────────────────────────────────── */
.grid4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.cardule {
  border: var(--bd);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
}
.cardule--acc { background: var(--yellow); }
.cardule h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.28rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.cardule p { margin: 0; font-size: 15px; color: var(--ink-60); }
.cardule--acc p { color: #4A4029; }
.cardule a, .notice a { color: var(--blue); font-weight: 600; }

/* ── Formateur ─────────────────────────────────────────────────── */
.trainer {
  border: var(--bd);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 38px 34px;
}
.trainer h2 { margin-bottom: 22px; }
.trainer p { margin: 0 0 16px; max-width: 66ch; }
.trainer a { color: var(--blue); font-weight: 600; }
.trainer__sig {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1.5px dashed var(--ink);
  font-family: var(--mono);
  font-size: 14px;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq { border-top: var(--bd); }
.faq details { border-bottom: var(--bd); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 46px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.24rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 24px;
  color: var(--blue);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--blue); }
.faq details p {
  margin: 0;
  padding: 0 40px 24px 0;
  color: var(--ink-60);
  font-size: 15.5px;
  max-width: 74ch;
}

/* ── CTA final ─────────────────────────────────────────────────── */
.final {
  background: var(--blue);
  color: var(--paper);
  padding: 92px 0;
  border-bottom: var(--bd);
  text-align: center;
}
.final h2 { margin-bottom: 18px; }
.final > .wrap > p { margin: 0 auto 36px; max-width: 46ch; font-size: 1.06rem; color: rgba(251, 246, 234, .85); }
.final .btn--outline { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--yellow); }
.final .btn--primary { background: var(--yellow); color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.final .btn--primary:hover { background: #FFE377; }
.final__meta {
  margin: 36px 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(251, 246, 234, .8);
}

/* ── Légal ─────────────────────────────────────────────────────── */
.legal { padding: 70px 0; border-bottom: var(--bd); }
.legal__h {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}
.legal__d { border-top: var(--bd); }
.legal__d:last-of-type { border-bottom: var(--bd); }
.legal__d summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal__d summary::-webkit-details-marker { display: none; }
.legal__d summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--blue);
}
.legal__d[open] summary::after { content: "–"; }
.legal__body { padding: 0 0 28px; max-width: 84ch; }
.legal__body h3 {
  margin: 26px 0 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.legal__body h3:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 12px; font-size: 14.6px; line-height: 1.7; color: var(--ink-60); }
.legal__body strong { color: var(--ink); }
.legal__body a { color: var(--blue); font-weight: 600; }

/* ── Footer ────────────────────────────────────────────────────── */
.foot { padding: 44px 0 calc(44px + env(safe-area-inset-bottom)); background: var(--ink); color: var(--paper); }
.foot p { margin: 0 0 7px; font-size: 13px; color: rgba(251, 246, 234, .72); max-width: 70ch; }
.foot__brand {
  font-family: var(--mono) !important;
  font-size: 14px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper) !important;
  margin-bottom: 14px !important;
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 16px; }
/* Cible tactile : WCAG 2.5.8 impose 24×24 px minimum pour un lien autonome.
   On monte à 44 px, la recommandation confortable. */
.foot__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--yellow);
  font-size: 13.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.foot__nav a:hover { border-bottom-color: var(--yellow); }

/* ── Barre d'action collante (mobile) ──────────────────────────── */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: var(--bd);
}
.dock[hidden] { display: none; }

.dock__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--blue);
  color: var(--paper);
  border: var(--bd);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
}
.dock__alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--ink);
  border: var(--bd);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
}

/* La barre collante suit le même critère que les CTA : tactile, pas étroit.
   On réserve la place en bas pour qu'elle ne recouvre jamais la fin du contenu. */
.dock { display: none !important; }
@media (pointer: coarse), (max-width: 700px) {
  .dock:not([hidden]) { display: flex !important; }
  body.has-dock { padding-bottom: 84px; }
}

/* ── Bascule mobile / desktop ──────────────────────────────────────
   WhatsApp est l'action principale sur mobile (l'app est là, sous le pouce).
   Sur ordinateur, on ouvre la réservation d'un créneau : personne n'a envie
   d'ouvrir WhatsApp Web pour prendre un rendez-vous.

   Le critère est le POINTEUR, pas la largeur. « Mobile » veut dire tactile, pas
   étroit : une fenêtre de navigateur en demi-écran sur un portable reste un
   ordinateur, et doit garder le formulaire — qui s'empile très bien. On garde un
   garde-fou en largeur pour les très petits écrans.

   Ce media query est répliqué à l'identique dans script.js (MQ_MOBILE) : les deux
   doivent rester synchronisés, sinon le CSS affiche un formulaire que le JS n'a
   pas initialisé. */
.only-mobile { display: none; }
@media (pointer: coarse), (max-width: 700px) {
  .only-desktop { display: none !important; }
  .only-mobile { display: revert; }
  a.only-mobile, .btn.only-mobile { display: inline-flex; }
}

/* ── Réservation (desktop) ─────────────────────────────────────── */
.booker { max-width: 780px; margin: 0 auto; text-align: left; }

.bk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 1040px) { .bk { grid-template-columns: 1fr; } }

.bk fieldset {
  margin: 0;
  border: var(--bd);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 24px 24px 26px;
}
.bk legend {
  padding: 5px 12px;
  margin-left: -4px;
  background: var(--yellow);
  border: var(--bd);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Créneaux */
.bk__loading, .bk__picked { margin: 14px 0 0; font-size: 14px; color: var(--ink-60); }
.bk__picked {
  padding: 10px 12px;
  background: var(--yellow);
  border: var(--bd);
  color: var(--ink);
  font-weight: 600;
}
.bk__days { margin-top: 14px; max-height: 340px; overflow-y: auto; padding-right: 6px; }
.bk__day + .bk__day { margin-top: 16px; }
.bk__dayname {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.bk__times { display: flex; flex-wrap: wrap; gap: 7px; }
.bk__time {
  min-height: 40px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.bk__time:hover { background: var(--yellow); }
.bk__time[aria-pressed="true"] { background: var(--blue); color: var(--paper); }

/* Champs */
.bk__row { margin: 0 0 14px; display: flex; flex-direction: column; gap: 5px; }
.bk__row label { font-size: 13px; font-weight: 600; color: var(--ink); }
.bk__row input, .bk__row select {
  min-height: 46px;
  padding: 10px 12px;
  border: var(--bd);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}
.bk__row input:focus-visible, .bk__row select:focus-visible { outline-color: var(--blue); }
.bk__row input::placeholder { color: #9b9788; }

.cf-turnstile { margin: 16px 0 14px; }

.bk__err {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 2px solid #B3261E;
  background: #FDECEA;
  color: #8C1D18;
  font-size: 14px;
  font-weight: 500;
}
.bk__legal { margin: 12px 0 0; font-size: 12px; color: var(--ink-60); }

.bk__done {
  margin: 0;
  padding: 28px 26px;
  border: var(--bd);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 16px;
  text-align: center;
}
.bk__done strong { display: block; font-size: 20px; margin-bottom: 6px; font-family: var(--serif); font-weight: 700; }

.bk__fallback {
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 22px;
  border: var(--bd);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 15px;
}
.bk__fallback a { color: var(--blue); font-weight: 600; }

button.btn { cursor: pointer; font: inherit; font-weight: 600; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ── Révélations ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
