@charset "UTF-8";
/* ==========================================================================
   AtooMedia · Design system
   Reskin : la marque et le logo sont inchangés. Les tokens de couleur sont
   dérivés des valeurs exactes du logo (bleu #0080C0, ambre #FFC73C,
   violet #A54FB1) et non d'une palette inventée.
   Sommaire
     1. Reset
     2. Tokens
     3. Base & typographie
     4. Layout
     5. Composants
     6. Utilitaires
     7. Motion & accessibilité
   ========================================================================== */

/* 1. Reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0; padding: 0;
}
ul[class], ol[class] { list-style: none; }
img, picture, video, canvas, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* 2. Tokens --------------------------------------------------------------- */

:root {
  /* Couleurs de marque, relevées sur le logo */
  --brand-blue:   #0080c0;
  --brand-amber:  #ffc73c;
  --brand-violet: #a54fb1;

  /* Violet : la seule teinte d'accent, déclinée en valeurs */
  --violet-050: #f8f1f9;
  --violet-100: #f0e2f2;
  --violet-200: #ddc0e2;
  --violet-300: #c894d0;
  --violet-400: #b56ec0;
  --violet-500: #a54fb1;  /* marque */
  --violet-600: #8b3c96;  /* AA sur fond clair */
  --violet-700: #6d2d77;
  --violet-800: #4e2055;

  /* Bleu : secondaire, liens et éléments de confiance */
  --blue-100: #e2f0f8;
  --blue-500: #0080c0;    /* marque */
  --blue-600: #00679b;    /* AA sur fond clair */
  --blue-700: #005080;

  /* Ambre : signal ponctuel, jamais du texte courant */
  --amber-100: #fff4d8;
  --amber-500: #ffc73c;   /* marque */
  --amber-700: #8a6206;   /* AA sur fond clair */

  /* Neutres */
  --ink-900: #0c0f18;
  --ink-800: #151a27;
  --ink-700: #232b3d;
  --ink-600: #3b4457;
  --ink-500: #5b6478;
  --ink-400: #7d8697;
  --ink-300: #aab1bf;
  --ink-200: #d7dae2;
  --ink-100: #e9ebf0;
  --paper:   #ffffff;
  --paper-2: #f8f7fa;
  --paper-3: #f2f0f6;
  --line:    #e4e2ec;

  /* Rôles sémantiques */
  --bg:            var(--paper);
  --bg-alt:        var(--paper-2);
  --bg-invert:     var(--ink-900);
  --text:          var(--ink-800);
  --text-muted:    var(--ink-500);
  --text-invert:   #ffffff;
  --text-invert-muted: rgba(255, 255, 255, .74);
  --accent:        var(--violet-600);
  --accent-strong: var(--violet-700);
  --border:        var(--line);
  --focus:         var(--violet-500);

  /* Typographie
     Reskin : aucune police de marque nouvelle n'est imposée. La pile
     ci-dessous est neutre et sans requête réseau (LCP préservé). Pour
     basculer sur la fonte de la charte, remplacer la seule valeur de
     --font-sans : tout le système suit. */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Échelle fluide : min 320px → max 1280px */
  --step--1: clamp(.8125rem, .78rem + .16vw, .875rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.06rem + .32vw, 1.3125rem);
  --step-2:  clamp(1.375rem, 1.24rem + .64vw, 1.75rem);
  --step-3:  clamp(1.625rem, 1.4rem + 1.12vw, 2.375rem);
  --step-4:  clamp(2rem, 1.6rem + 2vw, 3.25rem);
  --step-5:  clamp(2.5rem, 1.85rem + 3.25vw, 4.5rem);

  /* Espacement (base 4px) */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Structure */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, .5rem + 2.5vw, 2.5rem);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Élévation : discrète, jamais décorative */
  --shadow-1: 0 1px 2px rgba(12, 15, 24, .05), 0 1px 3px rgba(12, 15, 24, .04);
  --shadow-2: 0 4px 10px rgba(12, 15, 24, .06), 0 12px 28px rgba(12, 15, 24, .07);
  --shadow-3: 0 8px 20px rgba(12, 15, 24, .09), 0 24px 60px rgba(12, 15, 24, .12);

  /* Motion */
  --ease: cubic-bezier(.2, .6, .2, 1);
  --dur-1: 140ms;
  --dur-2: 240ms;
  --dur-3: 420ms;
}

/* 3. Base & typographie --------------------------------------------------- */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  color: var(--ink-900);
  font-weight: 660;
  line-height: 1.12;
  letter-spacing: -.021em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); letter-spacing: -.032em; }
h2 { font-size: var(--step-4); letter-spacing: -.026em; }
h3 { font-size: var(--step-2); letter-spacing: -.018em; line-height: 1.25; }
h4 { font-size: var(--step-1); letter-spacing: -.012em; line-height: 1.35; }

p { text-wrap: pretty; }
p + p, p + ul, p + ol, ul + p, ol + p { margin-top: var(--sp-4); }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  text-decoration-color: currentColor;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  transition: color var(--dur-1) var(--ease),
              text-decoration-color var(--dur-1) var(--ease);
}
a:hover { color: var(--accent-strong); text-decoration-color: currentColor; }

strong, b { font-weight: 650; color: var(--ink-900); }
em { font-style: italic; }
small { font-size: var(--step--1); }

::selection { background: var(--violet-200); color: var(--ink-900); }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Liste de contenu éditorial */
.prose ul, .prose ol { padding-left: 1.25em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li {
  position: relative;
  padding-left: 1.5em;
  margin-top: var(--sp-2);
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: .1em; top: .68em;
  width: .5em; height: .5em;
  border-radius: 2px;
  background: var(--violet-400);
}
.prose ol { list-style: decimal; }
.prose ol > li { margin-top: var(--sp-2); padding-left: .25em; }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose h2 + p, .prose h3 + p { margin-top: var(--sp-3); }
.prose > * + * { margin-top: var(--sp-4); }
.prose iframe { border: 0; border-radius: var(--radius); }
.prose blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--violet-400);
  background: var(--violet-050);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-700);
}
.prose blockquote cite {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  font-style: normal;
  color: var(--text-muted);
}

/* 4. Layout --------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--alt { background: var(--bg-alt); }
.section--line { border-top: 1px solid var(--border); }
.section--invert {
  background: var(--bg-invert);
  color: var(--text-invert-muted);
}
.section--invert h1, .section--invert h2,
.section--invert h3, .section--invert h4 { color: var(--text-invert); }
.section--invert strong { color: var(--text-invert); }
.section--invert a { color: var(--violet-300); }
.section--invert a:hover { color: #fff; }

/* En-tête de section */
.section-head { max-width: 46rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head > * + * { margin-top: var(--sp-4); }
.section-head .lead { font-size: var(--step-1); color: var(--text-muted); line-height: 1.55; }
.section--invert .section-head .lead { color: var(--text-invert-muted); }

/* Sur-titre de section. Il s'ouvre toujours sur un pictogramme qui illustre
   son propos : le filet horizontal qui tenait ce role a ete retire, trop
   repandu pour signaler quoi que ce soit. Le picto est decoratif (aria-hidden),
   le libelle porte le sens. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: var(--step--1);
  font-weight: 620;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow > svg {
  flex: none;
  padding: .3rem;
  box-sizing: content-box;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  opacity: .9;
}
/* Libelle long sur petit ecran : le picto reste cale sur la premiere ligne. */
@media (max-width: 30rem) {
  .eyebrow { align-items: flex-start; }
  .eyebrow > svg { margin-top: -.1em; }
}
.section--invert .eyebrow,
.hero .eyebrow,
.cta .eyebrow { color: var(--violet-300); }

/* Grilles */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.grid--split {
  grid-template-columns: 1fr;
  gap: var(--sp-7);
}
@media (min-width: 62rem) {
  .grid--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .grid--split-wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}
.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

/* 5. Composants ----------------------------------------------------------- */

/* 5.1 Lien d'évitement */
.skip-link {
  position: absolute;
  left: var(--sp-4); top: var(--sp-4);
  z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--dur-2) var(--ease);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* 5.2 Barre utilitaire */
.topbar {
  background: var(--ink-900);
  color: var(--text-invert-muted);
  font-size: var(--step--1);
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-5);
  min-height: 2.5rem;
  padding-block: var(--sp-2);
}
.topbar__claim { font-weight: 500; letter-spacing: .01em; }
.topbar__links { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
@media (max-width: 46rem) { .topbar__claim { display: none; } }

/* 5.3 En-tête / navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Fond opaque volontairement : un backdrop-filter sur un en-tete sticky
     provoque des defauts de repeinture (bandes blanches au defilement) sur
     plusieurs moteurs. Le gain visuel ne justifie pas ce risque. */
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 4.5rem;
}
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.brand img { width: 142px; height: 58px; }
.brand__baseline {
  display: none;
  padding-left: var(--sp-3);
  border-left: 1px solid var(--border);
  font-size: var(--step--1);
  line-height: 1.25;
  color: var(--text-muted);
  max-width: 8rem;
}
@media (min-width: 78rem) { .brand__baseline { display: block; } }

.nav { display: none; }
@media (min-width: 62rem) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  font-size: var(--step--1);
  font-weight: 560;
  letter-spacing: -.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-1) var(--ease), background-color var(--dur-1) var(--ease);
}
.nav__link:hover { color: var(--accent); background: var(--violet-050); }
.nav__link[aria-current] { color: var(--accent-strong); }
.nav__link[aria-current]::after {
  content: "";
  position: absolute;
  left: var(--sp-3); right: var(--sp-3); bottom: .35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--violet-500);
}
.nav__item { position: relative; }
.nav__item > .nav__link[aria-current] { position: static; }
.nav__caret { width: .6em; height: .6em; transition: transform var(--dur-2) var(--ease); }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 22rem;
  padding: var(--sp-3);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-.4rem);
  transition: opacity var(--dur-2) var(--ease),
              transform var(--dur-2) var(--ease),
              visibility var(--dur-2);
}
.nav__item:hover > .nav__panel,
.nav__item:focus-within > .nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__panel a {
  display: block;
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  color: var(--ink-800);
  text-decoration: none;
  transition: background-color var(--dur-1) var(--ease);
}
.nav__panel a:hover { background: var(--violet-050); }
.nav__panel strong { display: block; font-size: var(--step--1); font-weight: 620; }
.nav__panel span { display: block; font-size: var(--step--1); color: var(--text-muted); line-height: 1.4; }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); }
@media (max-width: 62rem) { .header__actions .btn { display: none; } }

/* Bouton hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem; height: 2.75rem;
  padding: 0 .6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
@media (min-width: 62rem) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink-800); border-radius: 2px;
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-1) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panneau mobile */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--paper);
  max-height: calc(100dvh - 4.5rem);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 62rem) { .mobile-nav { display: none !important; } }
.mobile-nav ul { padding-block: var(--sp-3); }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) 0;
  color: var(--ink-800);
  font-weight: 560;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-nav__sub a {
  padding-left: var(--sp-4);
  font-weight: 440;
  font-size: var(--step--1);
  color: var(--text-muted);
}
.mobile-nav__cta { padding-block: var(--sp-5); display: grid; gap: var(--sp-3); }

/* 5.4 Boutons */
.btn {
  --btn-bg: var(--violet-600);
  --btn-fg: #fff;
  --btn-bd: var(--violet-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .78em 1.5em;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step--1);
  font-weight: 620;
  letter-spacing: -.005em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              box-shadow var(--dur-1) var(--ease);
}
.btn:hover {
  --btn-bg: var(--violet-700);
  --btn-bd: var(--violet-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn:active { transform: translateY(0); box-shadow: none; }

.btn--secondary { --btn-bg: transparent; --btn-fg: var(--ink-800); --btn-bd: var(--ink-200); }
.btn--secondary:hover { --btn-bg: var(--paper-3); --btn-bd: var(--ink-300); color: var(--ink-900); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--accent); --btn-bd: transparent; padding-inline: .4em; }
.btn--ghost:hover { --btn-bg: transparent; color: var(--accent-strong); box-shadow: none; transform: none; text-decoration: underline; text-underline-offset: .2em; }

.btn--invert { --btn-bg: #fff; --btn-fg: var(--ink-900); --btn-bd: #fff; }
.btn--invert:hover { --btn-bg: var(--violet-050); --btn-bd: var(--violet-050); color: var(--ink-900); }

.btn--outline-invert { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.btn--outline-invert:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: #fff; color: #fff; }

.btn--lg { padding: .95em 1.85em; font-size: var(--step-0); }
.btn--block { width: 100%; }
.btn__arrow { transition: transform var(--dur-2) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

/* 5.5 Hero */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink-900);
  color: var(--text-invert-muted);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .28;
  filter: grayscale(.35) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 90% at 12% 0%, rgba(165, 79, 177, .34), transparent 62%),
    radial-gradient(60% 80% at 92% 12%, rgba(0, 128, 192, .26), transparent 60%),
    linear-gradient(180deg, rgba(12, 15, 24, .70) 0%, rgba(12, 15, 24, .93) 78%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(4rem, 2.5rem + 8vw, 8.5rem);
}
.hero__inner--lg { padding-block: clamp(5rem, 3rem + 10vw, 11rem); }
.hero__content { max-width: 46rem; }
.hero h1 { color: #fff; }
.hero__lead {
  margin-top: var(--sp-5);
  /* Sur mobile, step-2 produit un corps de 22px pour un paragraphe de six
     lignes : trop lourd. On repart de step-1 et on monte avec la largeur. */
  font-size: clamp(1.0625rem, .95rem + .7vw, 1.5rem);
  line-height: 1.5;
  font-weight: 380;
  color: rgba(255, 255, 255, .82);
  max-width: 42rem;
}
.hero__lead strong { color: #fff; font-weight: 600; }
.hero .btn-row { margin-top: var(--sp-7); }
.hero__meta {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  font-size: var(--step--1);
  color: var(--text-invert-muted);
}
.hero__meta li { display: flex; align-items: center; gap: .5em; }
.hero__meta svg { flex: none; color: var(--violet-300); }

/* Hero interne (pages secondaires) */
.hero--page .hero__inner { padding-block: clamp(3rem, 2rem + 6vw, 6rem); }
.hero--page h1 { font-size: var(--step-4); }
.hero--page .hero__lead { font-size: var(--step-1); margin-top: var(--sp-4); }

/* Onde décorative du hero (SVG inline, purement décoratif) */
.hero__wave {
  position: absolute;
  right: -6%; bottom: -10%;
  width: min(48rem, 62%);
  z-index: -1;
  opacity: .5;
  pointer-events: none;
  color: var(--violet-400);
}
@media (max-width: 62rem) { .hero__wave { opacity: .22; } }

/* 5.6 Fil d'Ariane */
.breadcrumb { padding-block: var(--sp-4); font-size: var(--step--1); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5em; }
.breadcrumb li { display: flex; align-items: center; gap: .5em; color: var(--text-muted); }
.breadcrumb li + li::before { content: "/"; color: var(--ink-300); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink-800); font-weight: 560; }

/* 5.7 Bandeau de preuve */
.proof { border-block: 1px solid var(--border); background: var(--paper-2); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.proof__item {
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--border);
}
.proof__item:last-child { border-right: 0; }
@media (max-width: 62rem) {
  .proof__item { border-right: 0; border-bottom: 1px solid var(--border); }
  .proof__item:last-child { border-bottom: 0; }
}
.proof__value {
  display: block;
  font-size: var(--step-3);
  font-weight: 680;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink-900);
}
.proof__label {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.45;
}
.proof__note {
  display: block;
  margin-top: var(--sp-2);
  font-size: .78rem;
  color: var(--ink-500);
  line-height: 1.4;
}

/* Bandeau clients */
.clients { padding-block: var(--sp-6); }
.clients__label {
  font-size: var(--step--1);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.clients__list {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-4);
}
.clients__list li {
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink-500);
}

/* 5.8 Cartes */
.card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease),
              transform var(--dur-2) var(--ease);
}
.card:hover { border-color: var(--violet-200); box-shadow: var(--shadow-2); }
.card > * + * { margin-top: var(--sp-3); }
.card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  margin-bottom: var(--sp-2);
  border-radius: var(--radius-sm);
  background: var(--violet-050);
  color: var(--violet-600);
}
.card__title { font-size: var(--step-1); }
.card p { color: var(--text-muted); }
.card__link { margin-top: auto; padding-top: var(--sp-4); }
.card--flat { background: transparent; border-color: transparent; padding: 0; }
.card--flat:hover { box-shadow: none; }

/* Carte numérotée (méthode) */
.step { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--border); }
.step__num {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--violet-500);
}
.step h3 { margin-top: var(--sp-3); font-size: var(--step-1); }
.step p { margin-top: var(--sp-3); color: var(--text-muted); }
.step:hover { border-top-color: var(--violet-400); }

/* 5.9 Portfolio / réalisations */
.work-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
@media (min-width: 62rem) {
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .work--lg { grid-column: span 3; }
  .work--md { grid-column: span 2; }
  .work--full { grid-column: span 6; }
}
.work {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 20rem;
  padding: var(--sp-6);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-800);
  color: #fff;
  text-decoration: none;
}
.work--lg { min-height: 25rem; }
.work__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease), filter var(--dur-3) var(--ease);
  filter: grayscale(.4) brightness(.6);
}
.work::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  /* Le haut de carte doit rester assez sombre : le sur-titre y est ecrit en
     violet clair, et les visuels clients sont parfois tres lumineux. */
  background: linear-gradient(180deg,
    rgba(12, 15, 24, .48) 0%,
    rgba(12, 15, 24, .70) 52%,
    rgba(12, 15, 24, .94) 100%);
  transition: background var(--dur-3) var(--ease);
}
.work:hover .work__img { transform: scale(1.045); filter: grayscale(0) brightness(.72); }
.work:hover::after {
  background: linear-gradient(180deg,
    rgba(78, 32, 85, .48) 0%,
    rgba(12, 15, 24, .68) 52%,
    rgba(12, 15, 24, .96) 100%);
}
.work__kicker {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: var(--step--1);
  font-weight: 620;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #e6c9ec;
}
.work__client {
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  font-weight: 620;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.work__title {
  margin-top: var(--sp-2);
  font-size: var(--step-2);
  color: #fff;
  line-height: 1.2;
}
.work--md .work__title { font-size: var(--step-1); }
.work__excerpt {
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
  max-width: 34rem;
}
.work__more {
  margin-top: var(--sp-4);
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--step--1); font-weight: 620;
  color: #fff;
}
.work__more svg { transition: transform var(--dur-2) var(--ease); }
.work:hover .work__more svg { transform: translateX(4px); }

/* 5.10 Les trois moments : section pivot */
.moments { display: grid; gap: var(--sp-6); }
@media (min-width: 68rem) { .moments { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.moment {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-7) var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
@media (min-width: 68rem) {
  .moments .moment { border-radius: 0; border-right-width: 0; }
  .moments .moment:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .moments .moment:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-right-width: 1px; }
}
.moment::before {
  content: "";
  position: absolute;
  inset-inline: -1px;
  top: -1px;
  height: 3px;
  background: var(--m-accent, var(--violet-300));
}
.moment:nth-child(1) { --m-accent: var(--violet-200); }
.moment:nth-child(2) { --m-accent: var(--violet-400); }
.moment:nth-child(3) { --m-accent: var(--violet-600); }

.moment__step {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--violet-500);
}
.moment__label {
  margin-top: var(--sp-4);
  font-size: var(--step-2);
  font-weight: 680;
  letter-spacing: -.024em;
  color: var(--ink-900);
  line-height: 1.15;
}
.moment__title {
  margin-top: var(--sp-2);
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--violet-700);
  line-height: 1.35;
}
.moment__body { margin-top: var(--sp-4); color: var(--text-muted); }
.moment__list { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.moment__list li {
  position: relative;
  padding-left: 1.6em;
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--ink-700);
}
.moment__list li::before {
  content: "";
  position: absolute; left: 0; top: .5em;
  width: .55em; height: .55em;
  border: 2px solid var(--violet-400);
  border-radius: 50%;
}
.moment__delivery {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--paper-2);
  border-left: 2px solid var(--violet-300);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--ink-600);
}
.moment__delivery strong { color: var(--violet-700); }
.moment__cta { margin-top: auto; padding-top: var(--sp-6); }

/* 5.11 Lecteur audio */
.audio {
  padding: var(--sp-5);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.audio + .audio { margin-top: var(--sp-4); }
.section--invert .audio,
.hero .audio {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  color: var(--text-invert-muted);
}
.audio__head { display: flex; align-items: flex-start; gap: var(--sp-4); }
.audio__play {
  flex: none;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--violet-600);
  color: #fff;
  transition: background-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.audio__play:hover { background: var(--violet-700); transform: scale(1.05); }
.hero .audio__play, .section--invert .audio__play { background: #fff; color: var(--ink-900); }
.hero .audio__play:hover, .section--invert .audio__play:hover { background: var(--violet-100); }
.audio__play svg { pointer-events: none; }
.audio__icon-pause { display: none; }
.audio.is-playing .audio__icon-play { display: none; }
.audio.is-playing .audio__icon-pause { display: block; }

.audio__meta { min-width: 0; flex: 1; }
.audio__title { font-size: var(--step-0); font-weight: 620; color: inherit; }
.hero .audio__title, .section--invert .audio__title { color: #fff; }
.audio__desc { margin-top: .15rem; font-size: var(--step--1); color: var(--text-muted); }
.hero .audio__desc, .section--invert .audio__desc { color: var(--text-invert-muted); }
.audio__time { flex: none; font-size: var(--step--1); font-variant-numeric: tabular-nums; color: var(--text-muted); }
.hero .audio__time, .section--invert .audio__time { color: var(--text-invert-muted); }

.audio__viz {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 2.5rem;
  margin-top: var(--sp-4);
  cursor: pointer;
}
.audio__viz span {
  flex: 1;
  min-width: 2px;
  border-radius: 1px;
  background: var(--ink-200);
  transform-origin: bottom;
  transition: background-color var(--dur-1) linear, height var(--dur-2) var(--ease);
}
/* Profil par defaut, avant que les amplitudes reelles du fichier ne soient
   calculees : une silhouette plausible plutot qu'une reglette plate. Le JS
   ecrase ces hauteurs des que le decodage audio a eu lieu. */
.audio:not(.has-peaks) .audio__viz span:nth-child(3n)   { height: 46%; }
.audio:not(.has-peaks) .audio__viz span:nth-child(3n+1) { height: 30%; }
.audio:not(.has-peaks) .audio__viz span:nth-child(3n+2) { height: 62%; }
.audio:not(.has-peaks) .audio__viz span:nth-child(7n)   { height: 78%; }
.audio:not(.has-peaks) .audio__viz span:nth-child(11n)  { height: 22%; }
.hero .audio__viz span, .section--invert .audio__viz span { background: rgba(255, 255, 255, .22); }
.audio__viz span.is-past { background: var(--violet-500); }
.hero .audio__viz span.is-past, .section--invert .audio__viz span.is-past { background: var(--violet-300); }

.audio__fallback {
  margin-top: var(--sp-4);
  font-size: var(--step--1);
  color: var(--text-muted);
}

/* Intégration SoundCloud / YouTube */
.embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-3);
}
.embed--16x9 { aspect-ratio: 16 / 9; }
.embed--16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.embed--audio iframe { width: 100%; height: 166px; border: 0; display: block; }
.embed--audio-tall iframe { width: 100%; height: 300px; border: 0; display: block; }
.embed__caption {
  margin-top: var(--sp-2);
  font-size: var(--step--1);
  color: var(--text-muted);
}
.embed-group > * + * { margin-top: var(--sp-5); }

/* 5.12 FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  padding: var(--sp-5) 0;
  text-align: left;
  font-size: var(--step-1);
  font-weight: 620;
  letter-spacing: -.014em;
  line-height: 1.35;
  color: var(--ink-900);
}
.faq__q:hover { color: var(--accent); }
.faq__sign { flex: none; width: 1.5rem; height: 1.5rem; margin-top: .2rem; color: var(--violet-500); transition: transform var(--dur-2) var(--ease); }
.faq__item.is-open .faq__sign { transform: rotate(45deg); }
.faq__a { padding-bottom: var(--sp-5); color: var(--text-muted); max-width: 52rem; }
.faq__a > * + * { margin-top: var(--sp-3); }
/* Sans JS : tout est visible. Avec JS, on replie. */
.js .faq__a[hidden] { display: none; }

/* 5.13 Bande de conversion */
.cta {
  position: relative;
  isolation: isolate;
  background: var(--ink-900);
  color: var(--text-invert-muted);
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(58% 120% at 8% 100%, rgba(165, 79, 177, .32), transparent 60%),
    radial-gradient(48% 100% at 96% 0%, rgba(0, 128, 192, .22), transparent 60%);
}
.cta__inner {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
}
@media (min-width: 62rem) {
  .cta__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: var(--sp-8); }
}
.cta h2 { color: #fff; font-size: var(--step-3); }
.cta__lead { margin-top: var(--sp-4); font-size: var(--step-1); color: rgba(255, 255, 255, .8); }
.cta__aside { display: grid; gap: var(--sp-4); }
.cta__contact {
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding: var(--sp-5);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}
.cta__contact a { color: #fff; text-decoration: none; font-weight: 600; font-size: var(--step-1); }
.cta__contact a:hover { text-decoration: underline; text-underline-offset: .2em; }
.cta__contact span { font-size: var(--step--1); color: var(--text-invert-muted); }

/* 5.14 Formulaires */
.field { display: grid; gap: var(--sp-2); }
.field + .field { margin-top: var(--sp-5); }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink-800); }
.field .hint { font-size: var(--step--1); color: var(--text-muted); font-weight: 400; }
.input, .textarea, select.input {
  width: 100%;
  padding: .75em 1em;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-size: var(--step-0);
  line-height: 1.5;
  color: var(--ink-900);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--violet-500);
  box-shadow: 0 0 0 3px var(--violet-100);
}
.textarea { min-height: 9rem; resize: vertical; }
.form-note { margin-top: var(--sp-4); font-size: var(--step--1); color: var(--text-muted); }
.form-card {
  padding: var(--sp-7);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.required { color: var(--violet-600); }

/* Newsletter */
.newsletter { background: var(--paper-2); border-top: 1px solid var(--border); }
.newsletter__form {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (min-width: 48rem) {
  .newsletter__form { grid-template-columns: 1fr 1fr auto; align-items: end; }
}

/* 5.15 Pied de page */
.site-footer {
  background: var(--ink-900);
  color: var(--text-invert-muted);
  font-size: var(--step--1);
}
.site-footer h2, .site-footer h3 {
  font-size: var(--step--1);
  font-weight: 640;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
.footer__grid {
  display: grid;
  gap: var(--sp-7);
  padding-block: var(--sp-8) var(--sp-7);
}
@media (min-width: 48rem) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand img { width: 142px; height: 58px; }
.footer__about { margin-top: var(--sp-4); line-height: 1.6; max-width: 30rem; }
.footer__list { margin-top: var(--sp-4); display: grid; gap: var(--sp-3); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
.social { display: flex; gap: var(--sp-3); }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-1) var(--ease), background-color var(--dur-1) var(--ease);
}
.social a:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); }

/* 5.16 Divers */
.tag {
  display: inline-flex;
  align-items: center;
  padding: .3em .7em;
  border-radius: var(--radius-pill);
  background: var(--violet-050);
  color: var(--violet-700);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
}
.tag--blue { background: var(--blue-100); color: var(--blue-700); }
.tag--amber { background: var(--amber-100); color: var(--amber-700); }

.definition {
  padding: var(--sp-6);
  background: var(--violet-050);
  border: 1px solid var(--violet-100);
  border-radius: var(--radius);
}
.definition dt {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet-700);
}
.definition dd { margin-top: var(--sp-3); font-size: var(--step-1); line-height: 1.55; color: var(--ink-800); }

.figure-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}
.figure-frame img { width: 100%; }
.figure-frame figcaption { padding: var(--sp-4); font-size: var(--step--1); color: var(--text-muted); }

.people { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.person img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(1);
  transition: filter var(--dur-3) var(--ease);
}
.person:hover img { filter: grayscale(0); }
.person h3 { margin-top: var(--sp-4); font-size: var(--step-1); }
.person__role { margin-top: var(--sp-1); font-size: var(--step--1); font-weight: 600; color: var(--violet-600); }
.person p { margin-top: var(--sp-3); font-size: var(--step--1); color: var(--text-muted); line-height: 1.6; }

.timeline { display: grid; gap: 0; }
.timeline__item {
  display: grid;
  gap: var(--sp-2) var(--sp-6);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 48rem) {
  .timeline__item { grid-template-columns: 9rem minmax(0, 1fr); }
}
.timeline__date {
  font-size: var(--step--1);
  font-weight: 620;
  color: var(--violet-600);
  font-variant-numeric: tabular-nums;
}
.timeline__body h3 { font-size: var(--step-1); }
.timeline__body p { margin-top: var(--sp-2); color: var(--text-muted); }

.download-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-800);
  text-decoration: none;
  font-weight: 560;
}
.download-list a:hover { color: var(--accent); }
.download-list span { font-size: var(--step--1); color: var(--text-muted); font-weight: 400; }

/* Table des matières interne */
.toc {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.toc h2 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.toc ol { margin-top: var(--sp-3); display: grid; gap: var(--sp-2); list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { font-size: var(--step--1); text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero) " · "; color: var(--violet-400); font-variant-numeric: tabular-nums; }
.toc a:hover { text-decoration: underline; }

/* Retour en haut */
.to-top {
  position: fixed;
  right: var(--sp-5); bottom: var(--sp-5);
  z-index: 90;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), visibility var(--dur-2);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--violet-700); }

/* 6. Utilitaires ---------------------------------------------------------- */

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
/* Sur fond sombre, le gris de --text-muted tombe a 3.2:1. On le remonte pour
   les contextes inverses (pied de page, bandes sombres). */
.site-footer .text-muted,
.section--invert .text-muted,
.cta .text-muted,
.hero .text-muted { color: rgba(255, 255, 255, .66); }
.lead { font-size: var(--step-1); line-height: 1.55; color: var(--text-muted); }
.measure { max-width: 40rem; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mt-auto { margin-top: auto; }
.divider { height: 1px; background: var(--border); border: 0; margin-block: var(--sp-7); }

/* 7. Motion & accessibilité ---------------------------------------------- */

/* Révélation à l'entrée dans le viewport. Sans JS ou en reduced-motion,
   le contenu est visible par défaut : jamais masqué de façon irréversible. */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
  will-change: opacity, transform;
}
/* will-change est retire une fois l'animation jouee : le laisser en place
   maintient une couche de compositing par element, pour rien. */
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .site-footer, .cta, .newsletter, .to-top, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { text-decoration: underline; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  .hero { background: #fff; color: #000; }
  .hero::after, .hero__bg { display: none; }
  .hero h1, .hero__lead { color: #000; }
}

@media (forced-colors: active) {
  .btn { border: 1px solid ButtonText; }
  .work::after { display: none; }
}
