/* ═══════════════════════════════════════════════════════════════════════════
   BoothApp — theme.css : la base commune à TOUTES les pages du site.

   Contient les jetons de couleur (clair et sombre), le reset, la typographie
   et les composants partagés : boutons, barre de navigation, menu mobile,
   bandeau de langue, en-têtes de section, tarifs, FAQ, bloc de conclusion,
   pied de page. Une page qui n'a besoin que de ça ne charge que ce fichier.

   Ce qui est propre à une page va dans sa propre feuille (home.css, …), jamais
   ici. Et rien ici ne doit dépendre d'un balisage particulier à une page.

   Deux partis pris, dont tout le reste découle :

   1. LA COULEUR VIENT DES PHOTOS, PAS DU CSS. La page est claire et neutre ;
      les seules zones saturées sont les captures produit et les tirages.

   2. CORAIL SEUL. #E94560 est l'accent des trois applications. Aucun second
      accent, aucun dégradé de marque : l'œil lit le milieu d'un dégradé, et le
      milieu de la rampe est violet.

   Le thème se choisit (bascule dans la barre) ; sans choix, on suit l'OS.
   Chaque couleur est définie sur :root nu, et REdéfinie dans les deux blocs
   sombres — jamais définie seulement dans un bloc conditionnel.
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --paper:      #ffffff;
  --paper-deep: #f6f7f9;
  --surface:    #ffffff;
  --surface-2:  #f3f4f7;
  --ink:        #12141a;
  --ink-soft:   #555b66;
  --ink-faint:  #848b96;
  --line:       #e6e8ed;
  --line-firm:  #d2d6de;

  --accent:      #e94560;
  --accent-deep: #c42d46;   /* texte corail sur fond clair : contraste AA */
  --accent-tint: #fdeef1;
  --accent-ring: rgba(233, 69, 96, .28);

  --yes: #1a8f5f;
  --no:  #c2384f;

  --shadow-sm: 0 1px 2px rgba(18, 20, 26, .06), 0 4px 12px -6px rgba(18, 20, 26, .10);
  --shadow-md: 0 2px 6px rgba(18, 20, 26, .07), 0 18px 40px -18px rgba(18, 20, 26, .22);
  --shadow-lg: 0 4px 10px rgba(18, 20, 26, .08), 0 40px 80px -30px rgba(18, 20, 26, .34);

  --radius:    18px;
  --radius-sm: 12px;

  --display: 'Bricolage Grotesque', 'Instrument Sans', system-ui, sans-serif;
  --body:    'Instrument Sans', system-ui, -apple-system, sans-serif;

  --page:  1240px;
  --gut:   clamp(20px, 5vw, 64px);
  --bleed: clamp(56px, 6.4vw, 100px);   /* respiration verticale entre sections */

  color-scheme: light;
}

/* Sombre par préférence système — sauf si le visiteur a demandé le clair. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:      #0a0a0f;
    --paper-deep: #0d0d18;
    --surface:    #111118;
    --surface-2:  #16161f;
    --ink:        #f3f3f7;
    --ink-soft:   #a7abc2;
    --ink-faint:  #888ca8;
    --line:       #20202c;
    --line-firm:  #2c2c3c;

    --accent:      #e94560;
    --accent-deep: #ff8296;
    --accent-tint: #1c1522;
    --accent-ring: rgba(233, 69, 96, .34);

    --yes: #3ddc97;
    --no:  #ff5470;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5), 0 4px 12px -6px rgba(0, 0, 0, .6);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, .5), 0 18px 40px -18px rgba(0, 0, 0, .7);
    --shadow-lg: 0 4px 10px rgba(0, 0, 0, .5), 0 40px 80px -30px rgba(0, 0, 0, .8);

    color-scheme: dark;
  }
}

/* Choix explicite du sombre — doit gagner dans les deux sens. */
:root[data-theme="dark"] {
  --paper:      #0a0a0f;
  --paper-deep: #0d0d18;
  --surface:    #111118;
  --surface-2:  #16161f;
  --ink:        #f3f3f7;
  --ink-soft:   #a7abc2;
  --ink-faint:  #888ca8;
  --line:       #20202c;
  --line-firm:  #2c2c3c;

  --accent:      #e94560;
  --accent-deep: #ff8296;
  --accent-tint: #1c1522;
  --accent-ring: rgba(233, 69, 96, .34);

  --yes: #3ddc97;
  --no:  #ff5470;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5), 0 4px 12px -6px rgba(0, 0, 0, .6);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, .5), 0 18px 40px -18px rgba(0, 0, 0, .7);
  --shadow-lg: 0 4px 10px rgba(0, 0, 0, .5), 0 40px 80px -30px rgba(0, 0, 0, .8);

  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ───────────────────────────────────────────────────────────────────────────
   BOUTONS
   ─────────────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; border-radius: 999px;
  transition: transform .14s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 2px rgba(18, 20, 26, .18), 0 10px 26px -10px var(--accent-ring);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 2px 4px rgba(18, 20, 26, .2), 0 16px 34px -12px var(--accent-ring); }
:root[data-theme="dark"] .btn-primary:hover { background: #ff7488; }

.btn-quiet {
  background: var(--surface); color: var(--ink); border-color: var(--line-firm);
  box-shadow: var(--shadow-sm);
}
.btn-quiet:hover { border-color: var(--ink-faint); }

.btn-sm { padding: 9px 18px; font-size: 14.5px; }
.btn-lg { padding: 15px 30px; font-size: 17px; }

/* Lien d'action : la deuxième route du hero ne doit pas peser autant qu'un bouton. */
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--ink); font-size: 16px;
  border-bottom: 1.5px solid var(--line-firm); padding-bottom: 2px;
  transition: border-color .16s ease, color .16s ease, gap .16s ease;
}
.link-arrow:hover { color: var(--accent-deep); border-color: var(--accent); gap: 11px; }
.link-arrow svg { width: 15px; height: 15px; fill: currentColor; }

.link-inline {
  color: var(--accent-deep); font-weight: 600;
  border-bottom: 1.5px solid var(--accent-ring);
  transition: border-color .16s ease;
}
.link-inline:hover { border-color: var(--accent); }

/* ───────────────────────────────────────────────────────────────────────────
   ACCÈS ANTICIPÉ — le bandeau qui dit que rien n'est à payer.
   ⚠️ À RETIRER le 1er décembre 2026 avec le partial qui l'utilise
   (tools/web/build-partials.mjs, bloc `earlyaccess`).

   Volontairement sobre : il vit sous la barre sur des pages qui parlent déjà
   de prix, et un bandeau criard au-dessus d'une grille tarifaire donne
   l'impression d'une promotion — c'est l'inverse du message, qui est qu'il
   n'y a rien à acheter aujourd'hui. Aucune couleur en dur : les deux thèmes
   suivent les jetons.
   ─────────────────────────────────────────────────────────────────────────── */

.ea-band { border-bottom: 1px solid var(--line); background: var(--surface-2); }
.ea-band-in {
  width: 100%; max-width: var(--page); margin-inline: auto;
  padding: 11px var(--gut); display: flex; align-items: baseline; gap: 8px 14px;
  font-size: 14.5px; flex-wrap: wrap; color: var(--muted);
}
.ea-band strong { color: var(--ink); font-weight: 650; }
.ea-band .ea-when { color: var(--accent2); font-weight: 600; white-space: nowrap; }

/* ───────────────────────────────────────────────────────────────────────────
   SUGGESTION DE LANGUE — bandeau au-dessus de la barre, affiché une fois.
   ─────────────────────────────────────────────────────────────────────────── */

.lang-hint { background: var(--ink); color: var(--paper); }
.lang-hint[hidden] { display: none; }
.lang-hint-in {
  width: 100%; max-width: var(--page); margin-inline: auto;
  padding: 9px var(--gut); display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; flex-wrap: wrap;
}
.lang-hint-in > span { flex: 1; min-width: 180px; }
.lang-hint-close {
  background: none; border: 0; cursor: pointer; font-size: 22px; line-height: 1;
  color: color-mix(in srgb, var(--paper) 55%, transparent); padding: 0 4px;
}
.lang-hint-close:hover { color: var(--paper); }
/* Même logique que la bande de conclusion : le fond s'inverse avec le thème,
   l'accent doit donc s'inverser avec lui. */
:root[data-theme="dark"] .lang-hint { --accent: #e94560; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lang-hint { --accent: #e94560; }
}

/* ───────────────────────────────────────────────────────────────────────────
   BARRE DE NAVIGATION
   ─────────────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav-in {
  width: 100%; max-width: var(--page); margin-inline: auto;
  padding: 13px var(--gut);
  display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px);
}

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; white-space: nowrap; }
.brand img { width: 28px; height: 28px; }

.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 26px); margin-left: auto; }
.nav-links > a { color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: color .15s ease; }
.nav-links > a:hover { color: var(--ink); }

.nav-tools { display: flex; align-items: center; gap: 10px; }

.lang-switch { display: flex; align-items: center; gap: 1px; padding: 3px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); }
.lang-switch a { padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--ink-faint); letter-spacing: .02em; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* Bascule de thème : une seule icône, qui montre ce vers quoi on va. */
.theme-toggle {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 999px; border: 1px solid var(--line); background: var(--surface-2);
  color: var(--ink-soft); cursor: pointer;
  transition: color .15s ease, border-color .15s ease, transform .3s ease;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-firm); }
.theme-toggle svg { width: 17px; height: 17px; fill: currentColor; }
.theme-toggle .i-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-sun  { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display: block; }
}

/* ── Menu mobile ─────────────────────────────────────────────────────────── */
.nav-burger { display: none; width: 38px; height: 38px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 10px; cursor: pointer; padding: 0; }
.nav-burger span { display: block; width: 17px; height: 1.8px; background: var(--ink); margin: 3.5px auto; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

.nav-drawer { border-top: 1px solid var(--line); background: var(--paper); padding: 8px var(--gut) 16px; }
.nav-drawer[hidden] { display: none; }
.nav-drawer a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.nav-drawer a:last-child { border-bottom: 0; }
.nav-drawer a:hover { color: var(--ink); }
.nav-drawer .drawer-signin { color: var(--accent-deep); font-weight: 600; }

@media (max-width: 940px) {
  .nav-links > a { display: none; }
  .nav-signin { display: none; }        /* repris dans le tiroir */
  .nav-burger { display: block; }
}

/* Sous 620 px il ne reste plus la place pour tout : on sacrifie le mot de la
   marque (le logo suffit à identifier le site) et la fin du libellé du bouton.
   Le choix de langue, lui, vit désormais dans le bandeau et le pied de page. */
@media (max-width: 620px) {
  .nav-in { gap: 10px; }
  .nav .brand-word { display: none; }
  .nav-cta-long { display: none; }
  .theme-toggle { width: 32px; height: 32px; }
}
/* ───────────────────────────────────────────────────────────────────────────
   EN-TÊTES DE SECTION
   ─────────────────────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }

/* ───────────────────────────────────────────────────────────────────────────
   SECTIONS
   ─────────────────────────────────────────────────────────────────────────── */

.section { padding: var(--bleed) 0; }
.section-alt { background: var(--paper-deep); border-block: 1px solid var(--line); }

.head { max-width: 720px; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 {
  margin-top: 16px;
  font-size: clamp(29px, 3.5vw, 43px);
  letter-spacing: -0.035em;
}
.head p { margin-top: 16px; font-size: 17.5px; color: var(--ink-soft); }


/* ───────────────────────────────────────────────────────────────────────────
   ÉTAPES
   ─────────────────────────────────────────────────────────────────────────── */

.steps { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(20px, 2.6vw, 32px); counter-reset: s; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line-firm); counter-increment: s; }
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; top: -2px; left: 0; padding-right: 12px;
  transform: translateY(-50%); background: var(--paper);
  font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--accent);
}
.section-alt .step::before { background: var(--paper-deep); }
.step h3 { font-size: 19px; }
.step p { margin-top: 9px; font-size: 15px; color: var(--ink-soft); }


/* ───────────────────────────────────────────────────────────────────────────
   TARIFS
   ─────────────────────────────────────────────────────────────────────────── */

.plans { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: clamp(16px, 1.8vw, 22px); align-items: start; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; }
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow-md), 0 0 0 4px var(--accent-tint); position: relative; }
.plan-flag { position: absolute; top: -11px; left: 24px; padding: 4px 12px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.plan-name { font-family: var(--display); font-size: 19px; font-weight: 700; }
.plan-for { margin-top: 6px; font-size: 13.5px; color: var(--ink-faint); min-height: 40px; }
.plan-price { margin-top: 16px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
/* Un montant ne se coupe jamais : les mentions légales traduites sont plus
   longues qu'en français et resserraient la colonne. */
.plan-price .amt { white-space: nowrap; }
.plan-price .amt { font-family: var(--display); font-size: clamp(28px, 2.4vw, 36px); font-weight: 700; letter-spacing: -0.04em; }
.plan-price .per { font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }
.plan-sub { margin-top: 4px; font-size: 13px; color: var(--ink-faint); }
.plan ul { margin: 18px 0 22px; display: grid; gap: 9px; }
.plan li { list-style: none; display: flex; gap: 9px; font-size: 14px; color: var(--ink-soft); }
.plan li svg { width: 15px; height: 15px; flex: none; margin-top: 4px; fill: var(--yes); }
.plan li.off { color: var(--ink-faint); }
.plan li.off svg { fill: var(--no); }
.plan .btn { margin-top: auto; width: 100%; }
.plans-note { margin-top: 26px; font-size: 14px; color: var(--ink-faint); text-align: center; }


/* ───────────────────────────────────────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────────────────────────────────────── */

.faq { margin-top: 44px; max-width: 800px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease, border-color .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); border-color: var(--accent); }
.faq summary:hover { color: var(--accent-deep); }
.faq p { padding: 0 8px 22px 0; color: var(--ink-soft); font-size: 15.5px; }


/* ───────────────────────────────────────────────────────────────────────────
   CTA FINAL + PIED DE PAGE
   ─────────────────────────────────────────────────────────────────────────── */

/* La bande de conclusion s'inverse avec le thème : sombre sur une page claire,
   claire sur une page sombre. L'accent doit s'inverser AVEC elle, sinon le
   corail éclairci pour le fond noir se retrouve posé sur du blanc. */
.final { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); padding: clamp(56px, 7vw, 92px) 0; border-bottom: 1px solid var(--line); }
.final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 100% at 50% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 62%);
}
/* Un filet net en haut plutôt qu'un dégradé qui s'étale : la bande se pose
   franchement au lieu de baver dans la section précédente. */
.final::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
}
.final-in { position: relative; text-align: center; }
.final h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.04em; }
.final p { margin: 16px auto 0; max-width: 54ch; color: var(--ink-soft); font-size: 17px; }
.final .btn-primary { margin-top: 28px; }
.final small { display: block; margin-top: 16px; font-size: 13.5px; color: var(--ink-faint); }

.foot { background: var(--paper-deep); border-top: 1px solid var(--line); padding: clamp(40px, 5vw, 60px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(22px, 2.4vw, 34px); }
.foot-social { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Chaque bouton porte la couleur de sa marque : au repos l'icône est en
   couleur, au survol c'est le bouton entier qui s'y met. */
.foot-grid .foot-social a {
  --brand: var(--ink-soft);
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 0;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface);
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.foot-grid .foot-social a:hover {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--brand) 65%, transparent);
  transform: translateY(-2px);
}
.foot-grid .foot-social svg { width: 20px; height: 20px; display: block; flex: none; }

.foot-grid .foot-social a[aria-label="Instagram"]  { --brand: #d62976; }
.foot-grid .foot-social a[aria-label="Facebook"]   { --brand: #1877f2; }
.foot-grid .foot-social a[aria-label="TikTok"]     { --brand: #fe2c55; }
.foot-grid .foot-social a[aria-label="Trustpilot"] { --brand: #00b67a; }

/* Correction optique : un tracé étroit paraît plus petit à taille égale. */
.foot-grid .foot-social a[aria-label="TikTok"] svg     { width: 18.5px; height: 18.5px; }
.foot-grid .foot-social a[aria-label="Trustpilot"] svg { width: 18.5px; height: 18.5px; }

/* Les trois couches du logo TikTok : cyan et magenta décalés, encre par-dessus.
   L'encre suit le thème — le logo est noir sur blanc, blanc sur noir. */
.tt-cyan    { fill: #25f4ee; }
.tt-magenta { fill: #fe2c55; }
.tt-ink     { fill: var(--ink); }
.foot-grid h4 { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.foot-grid a { display: block; padding: 4px 0; font-size: 14.5px; color: var(--ink-soft); }
.foot-grid a:hover { color: var(--accent-deep); }
.foot-blurb { font-size: 14.5px; color: var(--ink-soft); margin-top: 14px; max-width: 34ch; }
.foot-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; justify-content: space-between; font-size: 13.5px; color: var(--ink-faint); }

/* Choix de langue : des liens, pas un menu — Google doit pouvoir les suivre
   pour associer les quatre versions entre elles. */
.foot-lang { display: flex; flex-wrap: wrap; gap: 6px; }
.foot-grid ~ .foot-bottom .foot-lang a,
.foot-lang a {
  padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.foot-lang a:hover { color: var(--ink); border-color: var(--line-firm); }
.foot-lang a[aria-current] { background: var(--accent-tint); border-color: var(--accent-ring); color: var(--accent-deep); }
@media (max-width: 1040px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 620px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ───────────────────────────────────────────────────────────────────────────

/* ───────────────────────────────────────────────────────────────────────────
   RÉVÉLATION AU DÉFILEMENT
   ─────────────────────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
