/* Scalerun — feuille de style
   Police auto-hébergée (aucun appel à Google Fonts, donc aucun cookie ni transfert d'IP à un tiers). */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  src: url("fonts/bricolage-grotesque-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  src: url("fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --paper: #f2f5fa;
  --paper-2: #e7ecf4;
  --white: #ffffff;
  --ink: #161a3a;
  --slate: #4b5273;
  --cobalt: #2a3fe0;
  --cobalt-dark: #1f2fb3;
  --amber: #f2b33d;
  --rule: #d3dae7;
  --rule-dark: #343a63;
  --font: "Bricolage Grotesque", "Helvetica Neue", Arial, system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 1.5rem;
}
/* L'en-tête reste visible sur grand écran : les ancres s'arrêtent juste en dessous */
@media (min-width: 56.0625rem) {
  html {
    scroll-padding-top: calc(var(--header-h, 4.5rem) + 1.25rem);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

/* Bascule de langue : une seule langue visible à la fois */
html[data-lang="fr"] [lang="en"],
html[data-lang="en"] [lang="fr"] {
  display: none !important;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 5.6vw + 0.75rem, 5.25rem);
  font-weight: 700;
  font-stretch: 78%;
  line-height: 0.97;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(1.875rem, 2vw + 1.1rem, 2.625rem);
  font-weight: 650;
  font-stretch: 84%;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  font-stretch: 90%;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: var(--pad);
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  z-index: 40;
}
.skip:focus {
  top: 0.75rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* En-tête : collé en haut de l'écran, un filet apparaît dès qu'on fait défiler */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--rule), 0 10px 30px -24px rgba(22, 26, 58, 0.45);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-block: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}
.brand svg {
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
}
.site-nav {
  margin-left: auto;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding-block: 0.25rem;
  transition: color 0.2s ease;
}
/* Trait sous le lien survolé et sous la section en cours de lecture */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05rem;
  height: 2px;
  border-radius: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--cobalt);
}
.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}
.lang {
  display: inline-flex;
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.lang button {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  cursor: pointer;
}
.lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}
.lead {
  margin-top: 1.75rem;
  max-width: 34em;
  font-size: clamp(1.125rem, 0.5vw + 1.02rem, 1.3125rem);
  color: var(--slate);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2.25rem;
}
.btn {
  display: inline-block;
  background: var(--cobalt);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.btn:hover {
  background: var(--cobalt-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(42, 63, 224, 0.85);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.link {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.25em;
  transition: text-decoration-color 0.2s ease;
}
.link:hover {
  text-decoration-color: var(--cobalt);
}
.link .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.link:hover .arrow {
  transform: translateY(3px);
}

/* Graphique : courbe de réponse */
.chart {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem 1.1rem;
}
.chart > svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  cursor: crosshair;
  touch-action: pan-y;
  border-radius: 0.5rem;
}
.chart figcaption {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--slate);
}
.axis {
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
}
.band {
  fill: var(--amber);
  opacity: 0.34;
}
.curve {
  fill: none;
  stroke: var(--cobalt);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dots circle {
  fill: var(--ink);
  opacity: 0.38;
}
.mark-line {
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
}
.mark-dot {
  fill: var(--white);
  stroke: var(--cobalt);
  stroke-width: 4.5;
}
.svg-label {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 500;
  fill: var(--slate);
}
.svg-note {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 650;
  fill: var(--ink);
}

/* Lecture interactive de la courbe : repère, fourchette d'incertitude et carte de lecture */
.probe {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.probe-guide {
  stroke: var(--cobalt);
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
}
.probe-range {
  stroke: var(--amber);
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.85;
}
.probe-dot {
  fill: var(--white);
  stroke: var(--cobalt);
  stroke-width: 4.5;
}
.mark > * {
  transition: opacity 0.25s ease;
}
.chart.is-probing .probe {
  opacity: 1;
}
.chart.is-probing .mark > * {
  opacity: 0.12;
}
.probe-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  min-width: 13.5rem;
  padding: 0.75rem 0.9rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px -22px rgba(22, 26, 58, 0.45);
  font-size: 0.8125rem;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.chart.is-probing .probe-card {
  opacity: 1;
  visibility: visible;
}
.probe-card p {
  margin: 0;
}
.probe-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.probe-row + .probe-row {
  margin-top: 0.3rem;
}
.probe-k {
  color: var(--slate);
}
.probe-v {
  font-weight: 650;
}
.probe-range-text {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--slate);
}
.probe-card .probe-key {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--rule);
}
.probe-key .probe-v {
  color: var(--cobalt);
  font-size: 0.9375rem;
}
.probe-card.is-below .probe-key .probe-v {
  color: #a35f00;
}
.chart-hint {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--cobalt);
}
.chart-hint[hidden] {
  display: none;
}
.chart-hint svg {
  flex: none;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  cursor: auto;
}

/* Un seul moment animé : le modèle s'ajuste aux données */
@media (prefers-reduced-motion: no-preference) {
  .dots circle {
    opacity: 0;
    animation: sr-dot 0.45s ease-out forwards;
    animation-delay: calc(0.3s + var(--i) * 30ms);
  }
  .curve {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: sr-draw 1.5s cubic-bezier(0.6, 0, 0.2, 1) 1.25s forwards;
  }
  .band {
    opacity: 0;
    animation: sr-band 0.8s ease-out 2.5s forwards;
  }
  .mark {
    opacity: 0;
    animation: sr-fade 0.5s ease-out 3.1s forwards;
  }
}
@keyframes sr-dot {
  to {
    opacity: 0.38;
  }
}
@keyframes sr-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes sr-band {
  to {
    opacity: 0.34;
  }
}
@keyframes sr-fade {
  to {
    opacity: 1;
  }
}

/* Sections */
.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}
.section--flush-top {
  padding-top: 0;
}
.section--tint {
  background: var(--paper-2);
}
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.rail {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 2rem clamp(2rem, 5vw, 4.5rem);
}
.rail-intro {
  margin-top: 1rem;
  max-width: 24em;
  color: var(--slate);
}
.section--ink .rail-intro {
  color: #b9c0dc;
}

/* Expertises */
.offers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offers li {
  padding-block: 1.9rem;
  border-top: 1px solid var(--rule);
}
.offers li:first-child {
  padding-top: 0;
  border-top: 0;
}
.offers li:last-child {
  padding-bottom: 0;
}
.offers p {
  margin-top: 0.6rem;
  max-width: 62ch;
}
.offers .meta {
  margin-top: 0.75rem;
  font-size: 0.9688rem;
  font-weight: 500;
  color: var(--slate);
}

/* Méthode : une vraie séquence, donc numérotée */
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 2.5rem 1.75rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
}
/* Le filet du haut est un fond dégradé plutôt qu'une bordure, pour pouvoir le tracer à l'apparition */
.steps li {
  counter-increment: step;
  padding-top: calc(1.1rem + 3px);
  background: linear-gradient(var(--cobalt), var(--cobalt)) left top / 100% 3px no-repeat;
}
.steps li::before {
  content: counter(step);
  display: block;
  margin-bottom: 0.9rem;
  font-size: 3.25rem;
  font-weight: 700;
  font-stretch: 75%;
  line-height: 1;
  color: var(--cobalt);
}
.steps h3 {
  font-size: 1.25rem;
}
.steps p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--slate);
}

/* Références : une seule rangée de logos, tous en blanc pour une lecture homogène sur le fond encre */
.clients {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.clients-title {
  font-size: 0.875rem;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #b9c0dc;
}
/* --h, posé sur chaque logo, règle sa taille optique ; --u réduit toute la rangée avec la largeur d'écran pour qu'elle tienne sur une ligne */
.client-list {
  --u: min(1rem, 1.3vw);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem clamp(1.75rem, 3.5vw, 3rem);
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
}
.client-list img {
  display: block;
  width: auto;
  height: calc(var(--h) * var(--u));
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.86;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
/* GMF est déjà blanc dans son fichier : pas de filtre, le logo reste net sur iPhone */
.client-list .logo-flat {
  filter: none;
}
@media (hover: hover) {
  .client-list li:hover img {
    opacity: 1;
    transform: translateY(-2px);
  }
}
/* Tablette : les deux noms longs sur une ligne, les autres logos sur la suivante */
@media (max-width: 60rem) {
  .client-list {
    --u: 0.8rem;
    row-gap: 1.25rem;
  }
  .client-list .wide {
    order: 1;
  }
  .client-list::after {
    content: "";
    flex-basis: 100%;
    order: 2;
  }
  .client-list li:not(.wide) {
    order: 3;
  }
}
/* Téléphone : L'Oréal, Ralph Lauren et Pernod Ricard chacun sur sa ligne, les quatre logos compacts ensemble */
@media (max-width: 36rem) {
  .client-list {
    gap: 1.75rem 1.5rem;
  }
  .client-list::after {
    display: none;
  }
  .client-list li.wide,
  .client-list li.solo {
    order: 1;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Valeurs : trois colonnes numérotées, filet ambre pour les distinguer des étapes de la méthode */
.values {
  list-style: none;
  counter-reset: value;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem clamp(1.75rem, 4vw, 3.5rem);
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
}
.values li {
  counter-increment: value;
  padding-top: calc(1.1rem + 3px);
  background: linear-gradient(var(--amber), var(--amber)) left top / 100% 3px no-repeat;
}
.values li::before {
  content: "0" counter(value);
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cobalt);
}
.values h3 {
  font-size: 1.5rem;
}
.values p {
  margin-top: 0.6rem;
  max-width: 36ch;
  color: var(--slate);
}

/* Équipe */
.team-text {
  max-width: 60ch;
}
.people {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 16rem));
  gap: 2rem 1.25rem;
  margin: 2.75rem 0 0;
  padding: 0;
}
/* Portraits en noir et blanc : deux photos d'origines différentes, un rendu homogène */
.portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  background: var(--paper-2);
  box-shadow: 0 0 0 1px var(--rule);
  filter: grayscale(1);
  transition: filter 0.6s var(--ease);
}
/* Au survol, la photo reprend ses couleurs */
@media (hover: hover) {
  .people li:hover .portrait {
    filter: grayscale(0);
  }
}
.people h3 {
  margin-top: 1.25rem;
  padding-top: calc(1.1rem + 3px);
  background: linear-gradient(var(--ink), var(--ink)) left top / 100% 3px no-repeat;
  font-size: 1.75rem;
  font-stretch: 84%;
}
.people p {
  margin-top: 0.3rem;
  color: var(--slate);
}

/* Contact et pied de page */
.contact {
  padding-bottom: 0;
}
.mail {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: clamp(1.5rem, 1vw + 1.1rem, 2rem);
  font-weight: 600;
  font-stretch: 90%;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.22em;
  overflow-wrap: anywhere;
}
.mail:hover {
  color: var(--amber);
}
.contact-text {
  max-width: 34em;
  color: #b9c0dc;
}
address {
  margin-top: 2rem;
  font-style: normal;
  color: #b9c0dc;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  font-size: 0.9375rem;
  color: #b9c0dc;
}
.site-footer a:hover {
  color: var(--amber);
}

/* Pages de texte (mentions légales, 404) */
.prose {
  max-width: 44rem;
  padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
}
.prose h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
}
.prose h2 {
  margin-top: 2.75rem;
  font-size: 1.625rem;
}
.prose p,
.prose ul {
  margin-top: 0.9rem;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li + li {
  margin-top: 0.3rem;
}
.prose a {
  text-decoration-color: var(--cobalt);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}
.footer-light {
  color: var(--slate);
  border-top-color: var(--rule);
  margin-top: 0;
}
.footer-light a:hover {
  color: var(--cobalt);
}

/* Apparition au défilement, active seulement si le visiteur n'a pas demandé à réduire les animations */
.motion [data-reveal],
.motion [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background-size 1.1s var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
.motion [data-reveal].is-in,
.motion [data-reveal-stagger] > .is-in {
  opacity: 1;
  transform: none;
}
/* Les filets des étapes, des valeurs et de l'équipe se tracent de gauche à droite */
.motion .steps > li,
.motion .values > li {
  background-size: 0% 3px;
}
.motion .steps > li.is-in,
.motion .values > li.is-in {
  background-size: 100% 3px;
}
.motion .people > li h3 {
  background-size: 0% 3px;
  transition: background-size 1.1s var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 90ms + 0.25s);
}
.motion .people > li.is-in h3 {
  background-size: 100% 3px;
}

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

@media print {
  .site-header {
    position: static;
    box-shadow: none;
  }
  .motion [data-reveal],
  .motion [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .chart-hint,
  .probe-card {
    display: none !important;
  }
}

br.wide {
  display: none;
}
@media (min-width: 70rem) {
  br.wide {
    display: inline;
  }
  h1 {
    text-wrap: wrap;
  }
}

/* Petits écrans */
@media (max-width: 56rem) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .rail {
    grid-template-columns: minmax(0, 1fr);
  }
  .values {
    grid-template-columns: minmax(0, 1fr);
  }
  /* Le menu passe sous le logo, la bascule de langue reste en haut à droite */
  .site-header .lang {
    order: 2;
    margin-left: auto;
  }
  .site-nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
  }
}
@media (max-width: 40rem) {
  body {
    font-size: 1.0625rem;
  }
  .site-nav ul {
    gap: 0.15rem 0.7rem;
  }
  .site-nav a {
    font-size: 0.9rem;
  }
  .svg-label {
    font-size: 24px;
  }
  .svg-note {
    font-size: 23px;
  }
  .chart {
    padding: 0.9rem 0.9rem 0.9rem;
  }
  .probe-card {
    width: calc(100% - 20px);
  }
  .people h3 {
    font-size: 1.375rem;
  }
}
/* Téléphone : les six liens du menu en grille de deux lignes, plutôt qu'un retour à la ligne irrégulier */
@media (max-width: 30rem) {
  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
  }
}
