
/* ══════════════════════════════════════════════════════════
   CONSTANT Opticiens — Design System partagé
   Ne jamais modifier sans mettre DESIGN.md à jour.
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  color-scheme: light;
  /* Palette Wagram */
  --blanc:   #f9f9fb;
  --ardoise: #4a4e57;
  /* Texte discret. Assombri de #829db2 vers #566f87 pour passer WCAG AA
     (4.97:1 sur --blanc, l'ancienne valeur tombait à 2.69:1). Les filets
     décoratifs gardent le rgba(130,157,178,...) clair d'origine. */
  --brume:        #566f87;
  /* Variante claire du même bleu-gris, lisible sur fond sombre (footer). */
  --brume-clair:  #a8bccd;
  --nuit:    #002738;
  --profond: #143759;
  /* Accents, usage sémantique unique */
  --ambre:   #f4b942;
  --rouille: #b3402e;

  /* Typographie */
  --font: 'Outfit', 'Outfit Fallback', 'Century Gothic', Century, Optima, Futura, 'Trebuchet MS', sans-serif;

  /* Courbes de vitesse — graduated par usage */
  --ease:           cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Ombres — tintées Wagram, jamais noires pures */
  --shadow:    0 2px 12px rgba(0,39,56,.08);
  --shadow-md: 0 6px 28px rgba(0,39,56,.13);

  /* Rythme spatial — toutes les sections s'en servent */
  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(16px, 2vw, 24px);
  --space-md: clamp(32px, 4vw, 48px);
  --space-lg: clamp(64px, 8vw, 96px);
  --space-xl: clamp(96px, 12vw, 144px);

  /* Nav */
  --nav-h: 72px;
}

/* Police de repli à métriques ajustées : réduit le décalage de mise en page
   (CLS) au moment où Outfit remplace la police système. Valeurs approchées,
   à affiner si Outfit est auto-hébergé avec ses métriques réelles. */
@font-face {
  font-family: 'Outfit Fallback';
  src: local('Century Gothic'), local('Trebuchet MS'), local('Arial');
  size-adjust: 97%;
  ascent-override: 96%;
  descent-override: 24%;
  line-gap-override: 0%;
}

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration:   .01ms !important;
    animation-duration:    .01ms !important;
    scroll-behavior:       auto  !important;
  }
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h, 72px); }
body {
  background: var(--blanc);
  color: var(--ardoise);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPE SCALE — amplifiée ─────────────────────────────── */
.t-display  { font-size: clamp(2.5rem, 7vw, 4.5rem);    line-height: 1.05; letter-spacing: .015em; font-weight: 300; text-wrap: balance; }
.t-headline { font-size: clamp(1.75rem, 4.5vw, 2.5rem); line-height: 1.15; letter-spacing: .01em;  font-weight: 400; text-wrap: balance; }
.t-title    { font-size: clamp(1.25rem, 2.5vw, 1.5rem); line-height: 1.3;                           font-weight: 400; text-wrap: balance; }
.t-body     { font-size: 1rem;                            line-height: 1.8;                           font-weight: 400; max-width: 60ch; }
.t-label    { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip {
  position: absolute; top: -120%; left: 0; z-index: 300;
  background: var(--nuit); color: var(--blanc);
  padding: 12px 24px; font-family: var(--font);
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
}
.skip:focus { top: 0; }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
header[role="banner"] {
  position: sticky; top: 0; z-index: 100;
  background: var(--blanc);
}

/* Crée un stacking context pour le contenu principal — empêche les
   couches compositor des animations scroll-driven de passer au-dessus
   du header sticky (bug Chromium connu). */
main {
  isolation: isolate;
}
.nav {
  background: var(--blanc);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 clamp(20px, 4vw, 64px);
  transition: height .35s var(--ease-out-quart), box-shadow .35s var(--ease);
}
.nav--scrolled {
  height: 52px;
  box-shadow: 0 1px 0 rgba(130,157,178,.22);
}
.nav__logo img {
  height: 26px; width: auto;
  transition: height .35s var(--ease-out-quart);
}
.nav--scrolled .nav__logo img { height: 19px; }
.nav--scrolled .nav__tel      { padding: 8px 18px; }
.nav__links    { display: flex; gap: 36px; align-items: center; }
.nav__link {
  color: var(--brume);
  transition: color .2s var(--ease-out-quart);
}
.nav__link:hover       { color: var(--ardoise); }
.nav__link::after      { content: ''; display: block; height: 1px; background: var(--ardoise); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out-expo); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active     { color: var(--nuit); }
.nav__link--active::after { transform: scaleX(1); }
.nav__link:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.nav__tel {
  background: var(--nuit); color: var(--blanc);
  padding: 10px 24px;
  font-family: var(--font); font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background-color .25s var(--ease-out-quart), transform .2s var(--ease-out-quart);
}
.nav__tel:hover        { background: var(--profond); transform: translateY(-1px); }
.nav__tel:active       { transform: translateY(0); }
.nav__tel:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }

/* hamburger */
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 12px; color: var(--ardoise);
  min-width: 48px; min-height: 48px;
}
.nav__burger:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: currentColor; margin: 5px 0;
  transition: transform .25s var(--ease-out-expo), opacity .2s var(--ease);
}

/* mobile overlay */
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 210;
  background: var(--blanc);
  flex-direction: column;
  padding: 96px 40px 120px; /* marge basse : la barre d'appel fixe ne masque plus le bas du menu */
  overflow-y: auto;
}
/* Repli sans :has() : le menu mobile (z-index 210) passe au-dessus de la barre
   d'appel (z-index 200). La règle :has() ci-dessous la masque en complément là
   où elle est supportée. */
body:has(.nav__mobile.open) .sticky-call { display: none; }
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  color: var(--ardoise); font-family: var(--font);
  font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(130,157,178,.2);
  transition: color .2s var(--ease-out-quart);
}
.nav__mobile-link:hover { color: var(--nuit); }
.nav__mobile-link--active { color: var(--nuit); text-decoration: underline; text-underline-offset: 5px; }
.nav__mobile-tel {
  color: var(--nuit); margin-top: 24px;
  font-size: 1rem; letter-spacing: .06em;
}

@media (max-width: 900px) {
  .nav__links, .nav__tel { display: none; }
  .nav__burger { display: block; }
}

/* ══════════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--nuit); color: var(--blanc);
  font-family: var(--font); font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 40px; border: none; border-radius: 0; cursor: pointer;
  transition: background-color .25s var(--ease-out-quart),
              transform .2s var(--ease-out-quart),
              box-shadow .25s var(--ease-out-quart);
}
.btn-primary:hover        { background: var(--profond); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.btn-primary:active       { transform: translateY(0) scale(.98); box-shadow: none; transition-duration: .08s; }

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--nuit);
  font-family: var(--font); font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 40px; border: 1px solid var(--nuit); border-radius: 0; cursor: pointer;
  transition: color .25s var(--ease-out-quart),
              border-color .25s var(--ease-out-quart),
              transform .2s var(--ease-out-quart),
              box-shadow .25s var(--ease-out-quart);
}
.btn-ghost:hover        { color: var(--ardoise); border-color: var(--ardoise); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.btn-ghost:active       { transform: translateY(0) scale(.98); box-shadow: none; transition-duration: .08s; }
.btn-primary:disabled, .btn-ghost:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ══════════════════════════════════════════════════════════
   SECTION HEADER (partagé entre pages)
══════════════════════════════════════════════════════════ */
.s-eyebrow { color: var(--brume); display: block; margin-bottom: 16px; }
.s-title   { color: var(--ardoise); margin-bottom: 20px; }
.s-body    { color: var(--ardoise); }
.s-header  { margin-bottom: var(--space-lg); }

/* ══════════════════════════════════════════════════════════
   BLOCS CONTACT (utilisés sur homepage + contact.html)
══════════════════════════════════════════════════════════ */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.contact-block {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(130,157,178,.2);
}
.contact-block__label { color: var(--brume); display: block; margin-bottom: 16px; }
.contact-block__addr {
  display: block; color: var(--ardoise); line-height: 1.9;
  transition: color .2s var(--ease-out-quart);
}
.contact-block__addr:hover { color: var(--nuit); }
.contact-block__addr:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.contact-block__maps {
  display: inline-block; margin-top: 14px;
  color: var(--nuit); font-family: var(--font);
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid var(--nuit); padding-bottom: 2px;
  transition: opacity .2s var(--ease-out-quart);
}
.contact-block__maps:hover { opacity: .7; }
.contact-block__maps:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }

.hours { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; align-items: baseline; }
.hours dt { color: var(--brume); font-family: var(--font); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.hours dd { color: var(--ardoise); font-size: .9375rem; }

.contact-block__tel {
  display: block; color: var(--nuit);
  font-size: 1.5rem; line-height: 1.3; letter-spacing: .02em;
  transition: opacity .2s var(--ease-out-quart);
}
.contact-block__tel:hover { opacity: .75; }
.contact-block__tel:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }
.contact-block__note { color: var(--brume); font-size: .875rem; line-height: 1.6; margin-top: 12px; }

@media (max-width: 900px) {
  .contact-blocks { grid-template-columns: 1fr; gap: 1px; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .contact-blocks { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks > :last-child { grid-column: span 2; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--profond);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 64px) 32px;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); margin-bottom: 56px;
}
.footer__section-label {
  display: block; color: var(--brume-clair);
  font-family: var(--font); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__logo { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .8; margin-bottom: 24px; }
.footer__body { color: var(--blanc); font-size: .875rem; line-height: 1.9; }
address.footer__body { font-style: normal; }
.footer__body--muted { margin-top: 10px; font-size: .8125rem; color: var(--brume-clair); }
.footer__body--notice { margin-top: 12px; }
.footer__section-label--spaced { margin-top: 20px; }
.footer__hours-closed { color: var(--brume-clair); font-size: .8125rem; }
.footer__inline-link { color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.footer__body a { color: var(--blanc); transition: color .2s var(--ease-out-quart); }
.footer__body a:hover { color: var(--brume-clair); }
.footer__body a:focus-visible { outline: 2px solid var(--blanc); outline-offset: 3px; }
.footer__nav  { display: flex; flex-direction: column; gap: 6px; }
.footer__link { color: var(--blanc); font-size: .875rem; line-height: 2; transition: color .2s var(--ease-out-quart); }
.footer__link:hover { color: var(--brume-clair); }
.footer__link:focus-visible { outline: 2px solid var(--blanc); outline-offset: 3px; }
.footer__legal {
  max-width: 1280px; margin: 0 auto;
  color: var(--brume-clair); font-family: var(--font);
  font-size: .75rem; letter-spacing: .04em;
  border-top: 1px solid rgba(130,157,178,.2);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__legal a { color: var(--brume-clair); border-bottom: 1px solid rgba(130,157,178,.4); transition: opacity .2s var(--ease-out-quart); }
.footer__legal a:hover { opacity: .7; }
.footer__legal a:focus-visible { outline: 2px solid var(--blanc); outline-offset: 3px; }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; gap: 6px; }
}

/* ══════════════════════════════════════════════════════════
   NAV — BURGER → X MORPH
══════════════════════════════════════════════════════════ */
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Guard hover underline sur appareils touch */
@media (hover: hover) {
  .nav__link::after { content: ''; display: block; }
}
@media (hover: none) {
  .nav__link::after { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HERO ENTRANCE — choreography amplifiée
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow { animation: fadeUp .7s  var(--ease-out-expo) .08s both; }
.hero__title   { animation: fadeUp .8s  var(--ease-out-expo) .18s both; }
.hero__sub     { animation: fadeUp .7s  var(--ease-out-expo) .32s both; }
.hero__actions { animation: fadeUp .7s  var(--ease-out-expo) .46s both; }
.hero__addr    { animation: fadeUp .65s var(--ease-out-expo) .60s both; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__sub,
  .hero__actions,
  .hero__addr { animation: none; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL — [data-reveal]
══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out-expo),
              transform .75s var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .10s; }
[data-reveal][data-delay="2"] { transition-delay: .20s; }
[data-reveal][data-delay="3"] { transition-delay: .32s; }
[data-reveal][data-delay="4"] { transition-delay: .44s; }
[data-reveal][data-delay="5"] { transition-delay: .56s; }
[data-reveal][data-delay="6"] { transition-delay: .68s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════
   PARALLAX — CSS Scroll-Driven Animations (Path B)
   Natif, off-thread, zéro JS supplémentaire.
   Gated derrière @supports : dégradé gracieux sur Safari < 17.
   Désactivé sur pointer:coarse (mobile) et reduced-motion.
══════════════════════════════════════════════════════════ */
@supports (animation-timeline: scroll()) {
  /* Dérive douce sur images dans un conteneur overflow:hidden */
  .parallax-drift {
    animation: parallax-drift-y linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes parallax-drift-y {
    from { transform: translateY(8%);  }
    to   { transform: translateY(-8%); }
  }

  /* Hero : scale 1.06 discret, drift ±3%
     entry 0% = quand le bord supérieur du hero entre dans le viewport
     (= au chargement, pour un hero en tête de page).
     contain 0% était erroné : un hero ~100vh ne peut jamais être
     "contenu" dans le viewport → l'animation sautait → zoom brutal. */
  .hero__img {
    animation: hero-img-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes hero-img-drift {
    from { transform: scale(1.06) translateY(3%);  }
    to   { transform: scale(1.06) translateY(-3%); }
  }

  /* Révélation enrichie avec view() — complète le JS IntersectionObserver */
  .parallax-reveal {
    animation: parallax-rise linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 35%;
  }
  @keyframes parallax-rise {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* Désactiver sur mobile et reduced-motion */
@media (max-width: 767px), (pointer: coarse) {
  .parallax-drift, .hero__img { animation: none !important; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-drift, .parallax-reveal, .hero__img {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ══════════════════════════════════════════════════════════
   TOUCH TARGETS — pointer: coarse (WCAG 2.5.5)
══════════════════════════════════════════════════════════ */
@media (pointer: coarse) {
  .btn-primary,
  .btn-ghost,
  .nav__mobile-link,
  .contact-block__addr,
  .contact-block__maps,
  .contact-block__tel,
  .svc-anchors__link,
  .faq-item__btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
}
/* Liens et bouton de la nav desktop : cibles tactiles uniquement au-dessus de
   900px (en dessous ils sont masqués au profit du menu burger). Sans la borne
   min-width, cette règle réafficherait .nav__tel sur mobile par-dessus le logo. */
@media (pointer: coarse) and (min-width: 901px) {
  .nav__link,
  .nav__tel {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
}

/* ══════════════════════════════════════════════════════════
   STICKY CALL — barre d'appel fixe mobile
══════════════════════════════════════════════════════════ */
.sticky-call {
  display: none;
}
@media (max-width: 767px) {
  .sticky-call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--nuit);
    color: var(--blanc);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    transition: transform .3s var(--ease-out-quart);
  }
  .sticky-call--hidden {
    transform: translateY(100%);
  }
  .sticky-call__main {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    min-height: 48px;
    justify-content: center;
  }
  .sticky-call__main:focus-visible { outline: 2px solid var(--blanc); outline-offset: 2px; }
  .sticky-call__label {
    font-size: .6875rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(249,249,251,.55);
    display: block;
    margin-bottom: 2px;
  }
  .sticky-call__tel {
    color: var(--blanc);
    font-size: .9375rem;
    text-decoration: none;
    letter-spacing: .02em;
  }
  .sticky-call__btn {
    flex-shrink: 0;
    background: var(--blanc);
    color: var(--nuit);
    font-family: var(--font);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 20px;
    transition: opacity .2s var(--ease-out-quart);
  }
  .sticky-call__btn:hover { opacity: .85; }

  /* Réserve la hauteur de la barre d'appel fixe pour que les mentions
     légales en bas de footer ne passent jamais dessous. */
  .footer {
    padding-bottom: calc(32px + 64px + env(safe-area-inset-bottom));
  }
}

/* ══════════════════════════════════════════════════════════
   CRÉATEURS — item link interactif
══════════════════════════════════════════════════════════ */
.createurs__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color .2s var(--ease-out-quart), background .2s var(--ease-out-quart);
  padding: 20px 24px;
  margin: -20px -24px;
  border-radius: 2px;
}
.createurs__item-link:hover {
  color: var(--nuit);
  background: rgba(0,39,56,.04);
}
.createurs__item-link:focus-visible {
  outline: 2px solid var(--nuit);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════
   AVIS — bloc agrégat de notes Google
══════════════════════════════════════════════════════════ */
.avis__aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: 12px 20px;
  border: 1px solid rgba(130,157,178,.2);
  transition: border-color .2s var(--ease-out-quart);
}
.avis__aggregate:hover { border-color: var(--nuit); }
.avis__aggregate:focus-visible { outline: 2px solid var(--nuit); outline-offset: 3px; }

.avis__stars {
  color: var(--ambre);
  font-size: 1rem;
  letter-spacing: .05em;
}
.avis__score-num {
  color: var(--ardoise);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.avis__divider {
  color: var(--brume);
  font-size: .875rem;
}
.avis__count {
  color: var(--brume);
  font-size: .8125rem;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════
   FORMULAIRE — champs obligatoires et états d'erreur
══════════════════════════════════════════════════════════ */
.form-required-note {
  color: var(--brume);
  font-size: .8125rem;
  margin-bottom: 20px;
}
.form-req { color: var(--rouille); }
.form-error {
  display: block;
  margin-top: 6px;
  color: var(--rouille);
  font-size: .8125rem;
  line-height: 1.5;
}
.form-field--error input,
.form-field--error textarea,
.form-field--error select {
  border-color: var(--rouille);
}
.form-field--error input:focus-visible,
.form-field--error textarea:focus-visible,
.form-field--error select:focus-visible {
  outline-color: var(--rouille);
}

/* ══════════════════════════════════════════════════════════
   CIBLES TACTILES, liens secondaires sur écrans tactiles
══════════════════════════════════════════════════════════ */
@media (pointer: coarse) {
  .footer__link,
  .footer__legal a,
  .faq-aside__link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
  }
  .footer__nav { gap: 12px; }
}

/* Outfit auto-hebergee (plus de requete Google Fonts: mieux pour le RGPD et le CLS). Police variable 300-400. */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/outfit-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: 'Outfit';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('/fonts/outfit-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;
}