/* ==========================================================================
   INSPECTION AZ — Système de design
   Agence Rizz · 2026

   Structure et langage repris du brief « studio » ; palette de la marque
   conservée : marine #001659 · orange #ff5e14 · gris #565969.

   Tout est en REM. La taille de la racine suit la fenêtre, donc la mise en
   page garde ses proportions à toutes les tailles d'écran.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GRILLE ADAPTATIVE — la racine suit la fenêtre
   Base de conception : 16 px sur 1920. Chaque palier = 16 × 100 / largeur.
   -------------------------------------------------------------------------- */
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
@media (max-width: 1920px) { html { font-size: 0.833333vw; } }
@media (max-width: 1440px) { html { font-size: 1.111111vw; } }
@media (max-width: 1024px) { html { font-size: 1.5625vw; } }
@media (max-width: 640px)  { html { font-size: 4.444444vw; } }

/* --------------------------------------------------------------------------
   2. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* — Surfaces */
  --bg: #ffffff;
  --fg: #101322;
  --ink: #001659;          /* ← marine de marque : cartes noires, pastilles */
  --ink-deep: #000d33;
  --muted: #565969;        /* ← gris de marque — 6,93:1 sur blanc */
  --subtle: #8a8fa3;
  --line: #e4e6ec;
  --surface: #f2f4f8;
  --surface-2: #e6e9f0;

  /* — Accent */
  --accent: #ff5e14;       /* ← orange de marque : surfaces, boutons */
  --accent-ink: #c43f00;   /* orange en petit texte sur clair — 5,17:1 */
  --accent-lift: #ff7d42;  /* orange sur fond marine */
  --accent-from: #ff7d42;
  --accent-to: #d64a06;

  /* — Héros */
  --hero-from: #eef1f6;
  --hero-to: #c6ccd8;

  /* — Formes */
  --radius-pill: 9999px;
  --radius-card: 2rem;
  --radius-card-sm: 1.25rem;
  --radius-control: 0.875rem;

  --text-watermark: 13rem;
  --shell: 88rem;

  --font: "Onest", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* — Courbes (équivalents des ressorts du brief) */
  --e-line: cubic-bezier(0.215, 0.61, 0.355, 1);   /* easeOutCubic  — lignes */
  --e-word: cubic-bezier(0.165, 0.84, 0.44, 1);    /* easeOutQuart  — mots   */
  --e-soft: cubic-bezier(0.22, 1, 0.36, 1);        /* 210/26        — entrées */
  --e-snap: cubic-bezier(0.2, 0.8, 0.2, 1);        /* 320/18        — survols */
}

/* --------------------------------------------------------------------------
   3. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
img, svg, video { display: block; max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

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

.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 60;
  border-radius: var(--radius-control);
  background: var(--ink); padding: 0.5rem 1rem;
  font-size: 0.875rem; color: #fff;
}

.shell { max-width: var(--shell); margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. RÉVÉLATIONS
   Règle de sécurité inchangée : aucun contenu ne dépend d'une animation pour
   exister. `is-in` lance l'entrée, `is-done` fige l'état final sans transition.
   -------------------------------------------------------------------------- */
.js [data-rv] { opacity: 0; transform: translateY(var(--rv-y, 14px)); }
.js [data-rv].is-in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--e-soft), transform 0.8s var(--e-soft);
  transition-delay: var(--rv-d, 0ms);
}
.js [data-rv].is-done { opacity: 1; transform: none; transition: none; }

/* Révélation ligne par ligne — le texte monte depuis un cadre qui le coupe */
.lines { display: block; }
.lines .ln { display: block; overflow: hidden; }
.js .lines .ln > span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}
.js .lines.is-in .ln > span {
  transform: none; opacity: 1;
  transition: transform 0.9s var(--e-line), opacity 0.9s var(--e-line);
  transition-delay: calc(var(--i, 0) * 120ms + var(--rv-d, 0ms));
}
.js .lines.is-done .ln { overflow: visible; }
.js .lines.is-done .ln > span { transform: none; opacity: 1; transition: none; }

/* Révélation mot par mot */
.words .wd { display: inline-block; white-space: nowrap; }
.js .words .wd {
  opacity: 0; transform: translateY(24px);
}
.js .words.is-in .wd {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--e-word), transform 0.7s var(--e-word);
  transition-delay: calc(var(--i, 0) * 35ms);
}
.js .words.is-done .wd { opacity: 1; transform: none; transition: none; }

/* --------------------------------------------------------------------------
   5. CHARGEUR
   -------------------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 120;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  background: var(--ink); color: #fff;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  transform: translateY(0);
  transition: transform 0.7s var(--e-soft);
}
.loader.is-out { transform: translateY(-100%); }
.loader__center {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; text-align: center;
  transition: opacity 0.45s var(--e-soft), transform 0.45s var(--e-soft);
}
.loader.is-out .loader__center { opacity: 0; transform: translateY(-12px); }
.loader__brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 1.5rem;
}
.loader__brand svg { width: 1.875rem; height: 1.875rem; color: var(--accent); }
.loader__tag { max-width: 26ch; font-size: 0.875rem; color: rgba(255,255,255,.55); }
.loader__progress { width: min(22rem, 72vw); display: flex; flex-direction: column; gap: 0.75rem; }
.loader__track { height: 1px; background: rgba(255,255,255,.15); }
.loader__fill { height: 100%; width: 0%; background: var(--accent); transition: width .1s ease-out; }
.loader__meta {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  color: rgba(255,255,255,.62);
}
.loader__num { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.8); }
@media (min-width: 640px) { .loader__brand { font-size: 1.875rem; } }

/* --------------------------------------------------------------------------
   6. BOUTONS PASTILLE
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 500;
  padding: 0.875rem 1.75rem;
  transition: transform 0.35s var(--e-snap), background-color 0.3s var(--e-snap), color 0.3s var(--e-snap), border-color 0.3s var(--e-snap);
  will-change: transform;
}
.pill--arrow { padding: 0.375rem 0.375rem 0.375rem 1.5rem; }
.pill:hover { transform: scale(1.04); }

.pill--dark { background: var(--ink); color: #fff; }
.pill--light { background: var(--surface); color: var(--fg); }
.pill--outline { border: 1px solid var(--line); background: transparent; color: var(--fg); }
.pill--accent { background: var(--accent); color: var(--ink); }

.pill__badge {
  width: 2.25rem; height: 2.25rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  background: var(--ink); color: #fff;
}
.pill--dark .pill__badge { background: #fff; color: var(--ink); }
.pill--accent .pill__badge { background: var(--ink); color: #fff; }
.pill__badge svg { width: 1em; height: 1em; transition: transform 0.35s var(--e-snap); }
.pill:hover .pill__badge svg { transform: translate(3px, 0); }
.pill--up:hover .pill__badge svg { transform: translate(2px, -2px); }

/* --------------------------------------------------------------------------
   7. EXERGUE / PUCES
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 0.375rem; height: 0.375rem; flex: none;
  border-radius: var(--radius-pill);
  background: var(--accent);
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--light::before { background: var(--accent-lift); }
.eyebrow--boxed {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.375rem 1rem;
}

.chip {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem; font-size: 0.875rem;
}

/* Lien qui glisse au survol */
.alink { display: inline-flex; }
.alink > span {
  display: inline-block; opacity: .65;
  transition: transform 0.35s var(--e-snap), opacity 0.35s var(--e-snap);
}
.alink:hover > span { transform: translateX(4px); opacity: 1; }

/* --------------------------------------------------------------------------
   8. EN-TÊTE
   -------------------------------------------------------------------------- */
.header {
  position: absolute; inset-inline: 0; top: 0; z-index: 50;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem;
}
.brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.125rem; font-weight: 600; letter-spacing: -.01em;
  transition: transform 0.35s var(--e-snap);
}
.brand:hover { transform: scale(1.04); }
.brand svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }

.nav { display: none; }
.nav ul { display: flex; gap: 2rem; font-size: 0.875rem; font-weight: 500; }
.nav a, .nav button {
  display: inline-block;
  opacity: .8;
  transition: transform 0.35s var(--e-snap), opacity 0.35s var(--e-snap);
}
.nav a:hover, .nav button:hover { transform: translateY(-2px); opacity: 1; }
.nav [aria-current="page"] { opacity: 1; color: var(--accent-ink); }

.header__right { display: flex; align-items: center; gap: 0.75rem; }
.header__cta {
  display: none;
  padding: 0.375rem 0.375rem 0.375rem 1.5rem; font-size: 0.9375rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(255,94,20,.35);
}
.header__cta:hover { box-shadow: 0 10px 30px rgba(255,94,20,.5); }
@media (min-width: 1024px) {
  .header__cta { display: inline-flex; }
  .menu-btn { display: none; }
}

.menu-btn {
  border: 1px solid rgba(228,230,236,.8);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-control);
  transition: background-color 0.3s var(--e-snap);
}
.menu-btn:hover { background: rgba(255,255,255,.75); }
.menu-btn > span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  transition: transform 0.35s var(--e-snap);
}
.menu-btn:hover > span { transform: scale(1.05); }
.menu-btn svg { width: 0.875rem; height: 0.875rem; }

/* Variante claire — pages internes, dont l'en-tête de page est marine */
.header--light { color: #fff; }
.header--light .menu-btn {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.header--light .menu-btn:hover { background: rgba(255,255,255,.16); }
.header--light .nav [aria-current="page"] { color: var(--accent-lift); }

@media (min-width: 1024px) { .nav { display: flex; } }
@media (min-width: 640px) { .header__inner { padding: 1.5rem 2rem; } }
@media (max-width: 639px) { .menu-btn__label { display: none; } }

/* --------------------------------------------------------------------------
   9. HÉROS
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  background: var(--hero-to);
}
/* Couche de base du héros.
   Tant qu'aucune photo n'est fournie, une composition froide tient le cadre —
   le pinceau du pointeur la réchauffe au passage. Pour brancher les vraies
   images : <img> dans .hero__media + data-after="chemin de la version chaude". */
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60rem 40rem at 18% 22%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(50rem 38rem at 82% 74%, rgba(0,22,89,.30), transparent 65%),
    linear-gradient(140deg, var(--hero-from) 0%, #b9c2d2 52%, #93a0b8 100%);
}
.hero__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- Variante video ------------------------------------------------------
   Le plan est en plein jour : le texte marine n'y tiendrait pas. Le heros
   passe en marine profond, le texte en blanc.

   Empilement, du bas vers le haut :
     0  la vidéo
     1  le voile général, qui assombrit toute l'image
     3  l'écran de gauche, qui garantit la lisibilité du titre           */
.hero.hero--video { background: var(--ink); }
.hero.hero--video .hero__veil {
  background:
    linear-gradient(100deg, rgba(0,13,51,.66) 0%, rgba(0,13,51,.5) 40%, rgba(0,22,89,.3) 70%, rgba(0,22,89,.46) 100%),
    linear-gradient(to top, rgba(0,13,51,.94) 0%, rgba(0,13,51,.5) 22%, transparent 44%);
}
.hero.hero--video::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(0,13,51,.9) 0%, rgba(0,13,51,.8) 22%, rgba(0,13,51,.45) 42%, transparent 58%);
}
.hero.hero--video h1 { color: #fff; }
.hero.hero--video .eyebrow { color: rgba(255,255,255,.78); }
.hero.hero--video .eyebrow::before { background: var(--accent-lift); }
.hero.hero--video .lede,
.hero.hero--video .hero__rating span { color: rgba(255,255,255,.74); }
.hero.hero--video .hero__stars { color: var(--accent-lift); }
.hero.hero--video .hero__watermark { color: rgba(255,255,255,.07); }
.hero.hero--video .pill--outline { border-color: rgba(255,255,255,.32); color: #fff; }
.hero.hero--video .pill--outline:hover { background: rgba(255,255,255,.1); }
.hero.hero--video .hero__bar {
  border-top-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
}
.hero.hero--video .hero__bar svg { color: var(--accent-lift) !important; }
.hero.hero--video .trust__label { color: rgba(255,255,255,.55); }
.hero.hero--video .trust__grid li { color: rgba(255,255,255,.8); }
.hero.hero--video .trust__grid svg { color: var(--accent-lift); }

.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,.42), transparent 42%, rgba(255,255,255,.42));
}

.hero__watermark {
  pointer-events: none; user-select: none;
  position: absolute; inset-inline: 0; bottom: 7rem; z-index: 1;
  text-align: center;
  font-weight: 700; line-height: 1;
  font-size: var(--text-watermark);
  color: rgba(255,255,255,.4);
}

.hero__inner {
  position: relative; z-index: 20;
  display: flex; flex-direction: column; gap: 2rem;
  padding: 9rem 1.25rem 3rem;
}
.hero__col { display: flex; flex-direction: column; gap: 1.75rem; }
.hero h1 {
  max-width: 18ch;
  font-size: 2.25rem; font-weight: 600;
  line-height: .98; letter-spacing: -.02em;
  color: var(--ink);
}
.hero__rating { display: flex; align-items: center; gap: 0.75rem; }
.hero__stars { display: inline-flex; color: var(--accent); }
.hero__stars svg { width: 1rem; height: 1rem; }
.hero__rating span { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }

.hero__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  border-top: 1px solid rgba(16,19,34,.12);
  padding: 1.25rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .025em;
  color: var(--ink);
}
/* Le dégradé du héros descend jusqu'à #c6ccd8 : le gris de marque n'y tient
   pas le 4,5:1. On le fonce, uniquement dans ce contexte. */
.hero .eyebrow,
.hero .lede,
.hero__rating span { color: #494c5c; }

.hero__bar em { font-style: normal; display: none; }
.hero__bar b { font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }

@media (min-width: 640px) {
  .hero__inner { padding-inline: 2rem; }
  .hero__bar { padding-inline: 2rem; }
  .hero h1 { font-size: 3rem; }
  .hero__bar em { display: inline; }
}
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) {
  .hero__inner {
    display: grid; grid-template-columns: repeat(12, 1fr);
    align-content: center;
    gap: 2.5rem; min-height: 100lvh;
    padding: 12rem 2rem 8rem;
  }
  .hero__col { grid-column: span 8; }
}

/* — Carte du relevé (l'équivalent du carrousel) — */
.hcard {
  width: 100%; max-width: 24rem;
  border-radius: var(--radius-card-sm);
  background: rgba(255,255,255,.72);
  padding: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,22,89,.06), 0 12px 32px rgba(0,22,89,.10);
  outline: 1px solid rgba(228,230,236,.7);
  backdrop-filter: blur(12px);
}
.hcard__row { display: flex; gap: 0.5rem; cursor: pointer; border-radius: var(--radius-control); }
.hcard__tile {
  aspect-ratio: 1; width: 6rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-control);
  background: var(--ink); color: var(--accent);
}
.hcard__tile svg { width: 1.875rem; height: 1.875rem; }
.hcard__panel {
  flex: 1; border-radius: var(--radius-control);
  background: rgba(242,244,248,.75); padding: 0.75rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hcard__slot { position: relative; min-height: 5.25rem; }
.hcard__item {
  position: absolute; inset: 0;
  transition: opacity .35s var(--e-soft), transform .35s var(--e-soft);
}
.hcard__item[hidden] { display: block; opacity: 0; transform: translateY(-14px); pointer-events: none; }
.hcard__cap {
  font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted);
}
.hcard__title { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; line-height: 1.35; color: var(--ink); }
.hcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; }
.hcard__dots { display: flex; gap: 0.25rem; }
.hcard__dots i { height: .25rem; width: .375rem; border-radius: var(--radius-pill); background: rgba(16,19,34,.2); transition: all .3s; }
.hcard__dots i.is-on { width: 1rem; background: var(--ink); }
.hcard__nav { display: flex; gap: 0.375rem; }
.hcard__nav button {
  width: 1.75rem; height: 1.75rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: #fff; color: var(--muted);
  outline: 1px solid var(--line);
  transition: color .3s var(--e-snap);
}
.hcard__nav button:hover { color: var(--ink); }
.hcard__nav svg { width: 0.875rem; height: 0.875rem; }
.hcard__nav .is-prev svg { transform: rotate(180deg); }

/* — Bande de confiance (l'équivalent des partenaires) — */
.trust { width: 100%; max-width: 24rem; }
.trust__label { margin-bottom: 0.75rem; font-size: 0.75rem; font-weight: 500; color: #494c5c; }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 1rem; row-gap: 0.75rem; }
.trust__grid li { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: #494c5c; transition: transform .35s var(--e-snap), opacity .35s var(--e-snap); }
.trust__grid li:hover { transform: translateY(-2px); }
.trust__grid svg { width: 0.875rem; height: 0.875rem; flex: none; color: var(--accent); }
@media (min-width: 1024px) {
  .hcard, .trust { max-width: 19rem; }
  .trust__label { text-align: right; }
}

/* --------------------------------------------------------------------------
   10. SECTIONS COURANTES
   -------------------------------------------------------------------------- */
.sec { background: var(--bg); }
.sec__in { padding: 3.5rem 1.25rem; }
.sec--tight .sec__in { padding-block: 1rem; }
@media (min-width: 640px) { .sec__in { padding-inline: 2rem; } }
@media (min-width: 1024px) { .sec__in { padding-block: 4.75rem; } }

h2 { font-size: 2.25rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
@media (min-width: 640px) { h2 { font-size: 3rem; } }

.lede { font-size: 0.875rem; color: var(--muted); }

/* — Bloc « à propos » — */
.about { display: grid; grid-template-columns: 1fr; align-items: center; gap: 3rem; }
.about__mark { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
.about__note {
  position: relative; margin-top: auto;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--muted);
}
.about__note svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--ink); }
.about__note span { max-width: 28rem; }
.about__body .about__note { margin-top: 1rem; font-size: 0.8125rem; color: var(--muted); }
.about__body .about__note svg { width: 1.125rem; height: 1.125rem; color: var(--accent-ink); }
.about__body { display: flex; flex-direction: column; gap: 2.5rem; }
.about__body h2 { font-size: 1.5rem; font-weight: 500; line-height: 1.35; letter-spacing: -.01em; }
.about__body h2 .dim { color: var(--muted); }
.about__foot {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.about__chips { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.about__chips a {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface); color: var(--muted);
  font-size: 0.875rem;
}
.about__chips a:first-child { background: var(--accent); color: var(--ink); }
.about__chips svg { width: 1em; height: 1em; transition: transform .35s var(--e-snap); }
.about__chips a:hover svg { transform: scale(1.18); }
@media (min-width: 640px) {
  .about__body h2 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .about { grid-template-columns: 1fr 1fr; }
  .about__mark { min-height: 20rem; }
}

/* — Bande à quatre pastilles — */
.band { display: flex; flex-direction: column; gap: 0.75rem; }
.band li { flex: 1; }
.band__tile {
  display: flex; align-items: center; gap: 1rem;
  min-height: 5.5rem; padding: 1.125rem 1.375rem;
  border-radius: var(--radius-card-sm);
  transition: transform .35s var(--e-snap), box-shadow .35s var(--e-snap);
}
.band__tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,22,89,.12); }
.band__tile svg { width: 1.75rem; height: 1.75rem; flex: none; }
.band__tile span { display: flex; flex-direction: column; line-height: 1.25; }
.band__tile i { font-style: normal; font-size: 0.6875rem; letter-spacing: .1em; opacity: .6; }
.band__tile b { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.band__tile em { font-style: normal; font-size: 0.75rem; opacity: .7; margin-top: 0.125rem; }
.band--light { background: var(--surface); color: var(--ink); }
.band--light svg { color: var(--accent-ink); }
.band--accent { background: linear-gradient(to bottom right, var(--accent-from), var(--accent-to)); color: #fff; }
.band--dark { background: var(--ink); color: #fff; }
.band--dark svg { color: var(--accent-lift); }
@media (min-width: 640px) {
  .band { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (min-width: 1024px) {
  .band { grid-template-columns: repeat(4, 1fr); }
  .band__tile { min-height: 6.5rem; }
}

/* — Cartes marine — */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  position: relative; min-height: 22rem; overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--ink); padding: 1.5rem; color: #fff;
  outline: 1px solid rgba(255,255,255,.06);
  transition: transform .45s var(--e-snap);
  display: block;
}
.card:hover { transform: translateY(-8px) scale(1.012); }
.card__meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: .025em;
  color: rgba(255,255,255,.62);
}
.card__badge {
  width: 2.75rem; height: 2.75rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1); color: #fff;
  outline: 1px solid rgba(255,255,255,.15);
  transition: transform .4s var(--e-snap);
}
.card:hover .card__badge { transform: rotate(45deg) scale(1.08); }
.card__badge svg { width: 1.125rem; height: 1.125rem; }
.card__mark {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.card__mark svg { width: 4.5rem; height: 4.5rem; color: rgba(255,255,255,.10); }
.card__foot { position: absolute; inset-inline: 1.5rem; bottom: 1.5rem; }
.card__foot h3 { font-size: 1.5rem; font-weight: 500; letter-spacing: -.01em; color: #fff; }
.card__foot p { margin-top: 0.5rem; max-width: 28rem; font-size: 0.875rem; color: rgba(255,255,255,.6); }
.card__tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (min-width: 640px) {
  .card { min-height: 26rem; padding: 2rem; }
  .card__foot { inset-inline: 2rem; bottom: 2rem; }
  .card__foot h3 { font-size: 1.875rem; }
}

/* — Rangées de services — */
.rows li { border-top: 1px solid var(--line); }
.rows li:first-child { border-top: 0; }
.row {
  display: flex; align-items: center; gap: 1rem;
  border-radius: var(--radius-card-sm);
  padding: 1.5rem;
  background: rgba(242,244,248,0);
  transition: background-color .4s var(--e-soft), padding .4s var(--e-soft);
}
.row:hover { background: rgba(242,244,248,1); padding-left: 2rem; padding-right: 1.25rem; }
.row__i { width: 1.75rem; flex: none; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.row h3 { flex: 1; font-size: 1.5rem; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.row p { display: none; max-width: 20rem; font-size: 0.875rem; color: var(--muted); }
.row__go {
  width: 2.5rem; height: 2.5rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
  transition: transform .35s var(--e-snap);
}
.row:hover .row__go { transform: translateX(5px); }
.row__go svg { width: 1rem; height: 1rem; }
@media (min-width: 640px) {
  .row { gap: 1.5rem; padding-block: 2rem; }
  .row__i { width: 2.5rem; }
  .row h3 { font-size: 1.875rem; }
  .row__go { width: 3rem; height: 3rem; }
}
@media (min-width: 768px) { .row h3 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .row p { display: block; } }

/* — Panneau de chiffres — */
.stats {
  border-radius: var(--radius-card);
  background: var(--ink); padding: 3rem 1.5rem; color: #fff;
}
.stats h2 { margin-top: 1rem; max-width: 20ch; font-size: 1.875rem; font-weight: 500; letter-spacing: -.01em; color: #fff; }
.stats__grid {
  margin-top: 3.5rem; display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem; row-gap: 3rem;
}
.stats__n { font-size: 3rem; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stats__l { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,.6); }
@media (min-width: 640px) { .stats { padding: 4rem 2rem; } .stats__n { font-size: 3.75rem; } }
@media (min-width: 768px) { .stats { padding-inline: 4rem; } .stats h2 { font-size: 2.25rem; } .stats__n { font-size: 4.5rem; } }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   11. PIED DE PAGE
   -------------------------------------------------------------------------- */
.footer {
  position: relative; overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: var(--ink); color: #fff;
}
.footer__in { position: relative; z-index: 10; padding: 5rem 1.25rem 2.5rem; }
.footer__cta {
  display: flex; flex-direction: column; gap: 2rem;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, var(--accent-from), var(--accent-to));
  padding: 2.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(255,94,20,.22);
}
.footer__cta .eyebrow--light { color: rgba(255,255,255,.8); }
.footer__cta .eyebrow--light::before { background: #fff; }
.footer__cta h2 { max-width: 16ch; font-size: 2.25rem; color: #fff; margin-top: 1rem; }
.footer__cta-lede { margin-top: 1rem; max-width: 40ch; font-size: 0.9375rem; color: rgba(255,255,255,.86); }
.footer__cta .pill--dark:hover { background: #000d33; }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-block: 4rem; }
.footer__cols h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .025em; color: rgba(255,255,255,.62); font-weight: 500; }
.footer__cols ul { display: grid; gap: 0.75rem; margin-top: 1rem; font-size: 0.875rem; }
.footer__brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 600; }
.footer__brand svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
.footer__tag { margin-top: 1rem; max-width: 22rem; font-size: 0.875rem; color: rgba(255,255,255,.6); }
.footer__legal {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
  font-size: 0.75rem; color: rgba(255,255,255,.5);
}
.footer__watermark {
  position: absolute; inset-inline: 0; bottom: -1.5rem; z-index: 0;
  text-align: center; pointer-events: none; user-select: none;
  font-weight: 700; line-height: 1; font-size: var(--text-watermark);
  color: rgba(255,255,255,.05);
}
@media (min-width: 640px) {
  .footer__in { padding-inline: 2rem; }
  .footer__cta { padding: 3.5rem 3rem; }
  .footer__cta h2 { font-size: 3rem; }
  .footer__legal { flex-direction: row; }
}
@media (min-width: 768px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__cta h2 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .footer__in { padding-top: 6rem; }
  .footer__cta { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   12. MENU PLEIN ÉCRAN
   -------------------------------------------------------------------------- */
.navmenu {
  position: fixed; inset: 0; z-index: 115;
  display: flex; flex-direction: column;
  background: var(--ink); color: #fff;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--e-soft), visibility .35s;
}
.navmenu.is-open { opacity: 1; visibility: visible; }
/* `.shell` porte `margin-inline:auto` ; dans un conteneur flex en colonne,
   cette marge auto rétrécit l'élément au lieu de le centrer. On rétablit
   la largeur pleine, le centrage reste assuré par la marge. */
.navmenu > .shell { width: 100%; }
.navmenu__top { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; }
.navmenu__close {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-control);
  padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  color: rgba(255,255,255,.7);
  transition: color .3s, border-color .3s;
}
.navmenu__close:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.navmenu__close svg { width: 0.875rem; height: 0.875rem; }
/* Le menu défile s'il dépasse l'écran (petits téléphones, mode paysage). */
.navmenu { overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.navmenu__nav { flex: 1 0 auto; display: flex; flex-direction: column; justify-content: safe center; padding-inline: 1.25rem; padding-block: 0.5rem; }
.navmenu__nav ul { display: grid; gap: 0.125rem; }
.navmenu__nav a {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding-block: 0.375rem;
  font-size: clamp(1.25rem, 5.6vw, 1.75rem); line-height: 1.2; font-weight: 600; letter-spacing: -.02em;
  color: rgba(255,255,255,.7);
  transform: translateY(1rem); opacity: 0;
  transition: transform .5s ease-out, opacity .5s ease-out, color .3s;
  transition-delay: calc(var(--i) * 45ms + 80ms);
}
.navmenu.is-open .navmenu__nav a { transform: none; opacity: 1; }
.navmenu__nav a:hover { color: #fff; }
.navmenu__nav i { font-style: normal; font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.5); transition: color .3s; }
.navmenu__nav a:hover i { color: var(--accent-lift); }
.navmenu__bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 1.25rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: .025em;
  color: rgba(255,255,255,.5);
}
@media (min-width: 640px) {
  .navmenu__top { padding: 1.5rem 2rem; }
  .navmenu__nav { padding-inline: 2rem; }
  .navmenu__nav a { font-size: 3.75rem; }
  .navmenu__bottom { flex-direction: row; justify-content: space-between; padding-inline: 2rem; }
}

/* --------------------------------------------------------------------------
   13. MODALE DE DEMANDE
   -------------------------------------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1rem;
  background: rgba(16,19,34,.35); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--e-soft), visibility .35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  position: relative; width: 100%; max-width: 32rem; overflow: hidden;
  border-radius: var(--radius-card);
  background: #fff; padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0,22,89,.28);
  outline: 1px solid var(--line);
  transform: translateY(28px);
  transition: transform .4s var(--e-soft);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute; right: 1rem; top: 1rem;
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface); color: var(--muted);
  transition: background-color .3s, color .3s;
}
.modal__close:hover { background: var(--surface-2); color: var(--ink); }
.modal__close svg { width: 1rem; height: 1rem; }
.modal h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; }
.modal form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.modal label { display: block; }
.modal label > span {
  display: block; margin-bottom: 0.375rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .025em;
  color: var(--muted);
}
.modal input, .modal select, .modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(242,244,248,.5);
  border-radius: var(--radius-control);
  padding: 0.75rem 1rem;
  font: inherit; font-size: 16px;
  outline: none;
  transition: border-color .3s, background-color .3s;
}
.modal textarea { resize: none; min-height: 7rem; }
.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: var(--ink); background: #fff; }
.modal__bottom { margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.modal__note { font-size: 0.75rem; color: var(--muted); }
.modal__ok { display: none; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding-block: 2rem; }
.modal.is-sent .modal__ok { display: flex; }
.modal.is-sent .modal__form-wrap { display: none; }
.modal__ok-badge {
  width: 3.5rem; height: 3.5rem; display: grid; place-items: center;
  border-radius: var(--radius-pill); background: var(--ink); color: var(--accent);
}
.modal__ok-badge svg { width: 1.5rem; height: 1.5rem; }
.modal__ok p { max-width: 34ch; font-size: 0.875rem; color: var(--muted); }
@media (min-width: 640px) {
  .modal { align-items: center; }
  .modal__panel { padding: 2rem; }
  .modal h2 { font-size: 1.875rem; }
}

/* --------------------------------------------------------------------------
   14. EN-TÊTE DE PAGE INTERNE
   -------------------------------------------------------------------------- */
.phead {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  padding: 8rem 1.25rem 3.5rem;
}
.phead::before {
  content: "AZ"; position: absolute; right: -0.05em; bottom: -0.28em; z-index: 0;
  font-weight: 700; line-height: 1; font-size: var(--text-watermark);
  color: rgba(255,255,255,.045); pointer-events: none; user-select: none;
}
.phead::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 100% 0%, rgba(255,94,20,.16), transparent 60%);
}
.phead > .shell { position: relative; z-index: 1; }
.phead h1 { max-width: 20ch; font-size: 2.25rem; font-weight: 600; letter-spacing: -.02em; color: #fff; line-height: 1.02; }
.phead p { margin-top: 1.5rem; max-width: 46ch; font-size: 1.125rem; color: rgba(255,255,255,.6); }
.crumb { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); }
.crumb a { color: rgba(255,255,255,.75); }
.crumb a:hover { color: #fff; }
.crumb li:not(:last-child)::after { content: "—"; margin-left: 0.5rem; color: var(--accent-lift); }
@media (min-width: 640px) { .phead { padding: 9rem 2rem 4rem; } .phead h1 { font-size: 3rem; } }
@media (min-width: 768px) { .phead h1 { font-size: 3.75rem; } }

/* — Corps rédactionnel — */
.prose { max-width: 66ch; font-size: 1rem; line-height: 1.75; color: var(--muted); }
.prose h2 { font-size: 1.875rem; margin-top: 3.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-top: 2rem; margin-bottom: 0.5rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose ol { padding-left: 1.25rem; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li {
  position: relative; padding-left: 1.75rem; margin-bottom: 0.625rem;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.45em; width: 1rem; height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0500f' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12 5.5 5.5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.prose ol li { margin-bottom: 0.5rem; }
.prose > :first-child { margin-top: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.25fr 0.75fr; gap: 4rem; } }

.aside {
  position: sticky; top: 2rem;
  border-radius: var(--radius-card-sm);
  background: var(--surface);
  padding: 1.75rem;
}
.aside h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.aside p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }
@media (max-width: 1023px) { .aside { position: static; } }

/* --------------------------------------------------------------------------
   15. BARRE D'APPEL MOBILE
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px; background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: #fff; background: var(--ink);
}
.callbar a.is-primary { background: var(--accent); color: var(--ink); }
.callbar svg { width: 1.125rem; height: 1.125rem; }
@media (max-width: 1023px) {
  .callbar { display: flex; }
  body { padding-bottom: 3.5rem; }
}

/* --------------------------------------------------------------------------
   16. BLOCS DE PAGES INTERNES
   -------------------------------------------------------------------------- */
.sec__head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 3rem;
}

/* — Liste à crochets — */
.checks { display: grid; gap: 0.875rem; }
.checks li { display: flex; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.6; color: var(--muted); }
.checks svg { width: 1.125rem; height: 1.125rem; flex: none; margin-top: 0.3rem; color: var(--accent-ink); }
.checks strong { color: var(--ink); font-weight: 600; }

/* — Grille de tuiles claires — */
.tiles { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tiles--3 { grid-template-columns: repeat(3, 1fr); } }
.tile {
  border-radius: var(--radius-card-sm);
  background: var(--surface);
  padding: 1.75rem;
  transition: transform .4s var(--e-snap), background-color .4s var(--e-snap);
}
.tile:hover { transform: translateY(-4px); background: var(--surface-2); }
.tile__ico {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--accent);
  margin-bottom: 1.25rem;
}
.tile__ico svg { width: 1.25rem; height: 1.25rem; }
.tile h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.tile p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--muted); }

/* — Questions fréquentes — */
.faq { border-top: 1px solid var(--line); }
.faq li { border-bottom: 1px solid var(--line); }
.faq details { padding-block: 1.5rem; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none;
  font-size: 1.125rem; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface); color: var(--ink);
  font-size: 1.125rem; font-weight: 400; line-height: 1;
  transition: transform .35s var(--e-snap), background-color .3s;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); background: var(--accent); }
.faq p { margin-top: 1rem; max-width: 62ch; font-size: 0.9375rem; line-height: 1.7; color: var(--muted); }
@media (min-width: 640px) { .faq summary { font-size: 1.25rem; } }

/* — Formulaire de page (mêmes champs que la modale) — */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form label { display: block; }
.form label > span {
  display: block; margin-bottom: 0.375rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .025em;
  color: var(--muted);
}
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(242,244,248,.5);
  border-radius: var(--radius-control);
  padding: 0.875rem 1rem;
  font: inherit; font-size: 16px;
  outline: none;
  transition: border-color .3s, background-color .3s;
}
.form textarea { resize: vertical; min-height: 8rem; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--ink); background: #fff; }
.form__two { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form__two { grid-template-columns: 1fr 1fr; } }
.form__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; }
.form__ok {
  display: none; gap: 1rem; align-items: flex-start;
  border-radius: var(--radius-card-sm);
  background: var(--ink); color: #fff; padding: 1.75rem;
}
.form.is-sent .form__ok { display: flex; }
.form.is-sent > :not(.form__ok) { display: none; }
.form__ok svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--accent); }
.form__ok p { margin-top: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,.7); }
.form__ok h3 { font-size: 1.125rem; font-weight: 600; }

/* — Coordonnées — */
.contacts { display: grid; gap: 1rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  border-radius: var(--radius-card-sm);
  background: var(--surface); padding: 1.25rem;
  transition: background-color .3s var(--e-snap);
}
a.contact-row:hover { background: var(--surface-2); }
.contact-row > svg { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.2rem; color: var(--accent-ink); }
.contact-row h3 { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.contact-row p { margin-top: 0.25rem; font-size: 1rem; font-weight: 500; color: var(--ink); }
.contact-row small { display: block; margin-top: 0.25rem; font-size: 0.8125rem; font-weight: 400; color: var(--muted); }

/* — Zones desservies — */
.zones { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.zones li {
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--muted);
  transition: border-color .3s, color .3s;
}
.zones li:hover { border-color: var(--ink); color: var(--ink); }

/* — Citation — */
.quote {
  border-left: 2px solid var(--accent);
  padding-left: 1.75rem;
  font-size: 1.25rem; line-height: 1.6; font-weight: 500;
  letter-spacing: -.01em; color: var(--ink);
}
.quote footer { margin-top: 1rem; font-size: 0.875rem; font-weight: 400; color: var(--muted); }
@media (min-width: 640px) { .quote { font-size: 1.5rem; } }

/* --------------------------------------------------------------------------
   17. PHOTOGRAPHIES
   Toutes les images du site passent par le même étalonnage (ombres marine,
   hautes lumières chaudes) : elles se tiennent entre elles quelle que soit
   la lumière du jour où elles ont été prises.
   -------------------------------------------------------------------------- */
.shot {
  position: relative; overflow: hidden;
  border-radius: var(--radius-card-sm);
  background: var(--surface-2);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--e-snap);
}
.shot:hover img { transform: scale(1.04); }
.shot--4x5 { aspect-ratio: 4 / 5; }
.about__mark .shot { max-height: min(34rem, 62vh); }
.shot--3x2 { aspect-ratio: 3 / 2; }
.shot--1x1 { aspect-ratio: 1 / 1; }
.shot__cap {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  padding: 2.5rem 1.25rem 1.125rem;
  background: linear-gradient(to top, rgba(0,13,51,.94) 0%, rgba(0,13,51,.7) 45%, transparent 100%);
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  color: rgba(255,255,255,.85);
}

/* — Photo en fond de carte marine — */
.card__bg { position: absolute; inset: 0; z-index: 0; }
.card__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .82;
  transition: opacity .7s var(--e-snap), transform 1.1s var(--e-snap);
}
.card:hover .card__bg img { opacity: 1; transform: scale(1.05); }
.card__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,13,51,.96) 0%, rgba(0,13,51,.86) 26%, rgba(0,13,51,.42) 52%, rgba(0,13,51,.08) 78%, rgba(0,13,51,.3) 100%);
}
/* .card__foot est deja en absolu plus haut : on ne lui redonne qu un plan. */
.card__meta { position: relative; z-index: 2; }
.card__foot { z-index: 2; }

/* --------------------------------------------------------------------------
   18. GALERIE CYLINDRIQUE (INSTRUMENTS)
   Les cartes sont posées sur un cylindre : chacune est tournée de i × pas,
   puis poussée vers l'extérieur du rayon. La scène tourne, pas les cartes.
   Rayon = (largeur / 2) / tan(180° / nombre), plus une marge pour l'air.
   -------------------------------------------------------------------------- */
.orbit {
  --w: 10.5rem;
  --r: 14rem;
  --step: 45deg;
  position: relative;
  margin-top: 3rem;
  height: 17.5rem;
  perspective: 60rem;
  perspective-origin: 50% 44%;
  touch-action: pan-y;
  cursor: grab;
  overflow: hidden;
}
.orbit:focus-visible { outline-offset: 8px; }
.orbit.is-drag { cursor: grabbing; }

.orbit__stage {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--r) * -1)) rotateY(var(--a, 0deg));
}

.orbit__item {
  position: absolute; top: 50%; left: 50%;
  width: var(--w); height: calc(var(--w) * 1.25);
  margin: calc(var(--w) * -0.625) 0 0 calc(var(--w) * -0.5);
  transform: rotateY(calc(var(--i) * var(--step))) translateZ(var(--r));
  backface-visibility: hidden;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  background: var(--ink);
  outline: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1.25rem 3rem rgba(0,22,89,.28);
}
.orbit__item img { width: 100%; height: 100%; object-fit: cover; }

.orbit__item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,13,51,.96) 0%, rgba(0,13,51,.74) 46%, transparent 100%);
  color: #fff;
}
.orbit__item figcaption i {
  font-style: normal; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: .1em; color: var(--accent-lift);
}
.orbit__item figcaption b { display: block; margin-top: 0.125rem; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.orbit__item figcaption span { display: block; margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.45; color: rgba(255,255,255,.74); }

/* Les bords s'estompent dans la page : le cylindre n'a pas de fin visible. */
.orbit::before, .orbit::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 18%; z-index: 5; pointer-events: none;
}
.orbit::before { left: 0;  background: linear-gradient(to right, var(--bg) 10%, transparent); }
.orbit::after  { right: 0; background: linear-gradient(to left,  var(--bg) 10%, transparent); }

.orbit__ui {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  margin-top: 2rem;
}
.orbit__nav {
  width: 2.75rem; height: 2.75rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface); color: var(--ink);
  transition: background-color .3s var(--e-snap), color .3s var(--e-snap), transform .3s var(--e-snap);
}
.orbit__nav:hover { background: var(--ink); color: #fff; transform: scale(1.06); }
.orbit__nav svg { width: 1rem; height: 1rem; }
.orbit__nav.is-prev svg { transform: rotate(180deg); }
.orbit__hint {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted);
}

@media (min-width: 640px)  { .orbit { --w: 15rem; --r: 20rem;   height: 24rem; } }
@media (min-width: 1024px) { .orbit { --w: 20rem; --r: 26.5rem; height: 27rem; margin-top: 4rem; } }
@media (min-width: 1440px) { .orbit { --w: 26rem; --r: 35rem;   height: 34rem; } }

/* Repli sans 3D — ou mouvement réduit : une simple bande qui se fait défiler. */
.orbit.is-flat { height: auto; perspective: none; cursor: auto; }
.orbit.is-flat .orbit__stage {
  position: static; transform: none; transform-style: flat;
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1rem; scroll-snap-type: x mandatory;
}
.orbit.is-flat .orbit__item {
  /* « relative » et non « static » : la légende est en absolu et doit garder
     la carte comme bloc conteneur, sinon toutes les légendes s'empilent. */
  position: relative; top: auto; left: auto;
  margin: 0; transform: none; opacity: 1 !important;
  flex: 0 0 var(--w); height: calc(var(--w) * 1.25);
  scroll-snap-align: center;
}
.orbit.is-flat::before, .orbit.is-flat::after { display: none; }
.orbit.is-flat + .orbit__ui { display: none; }

/* Liste de garanties sur une ligne, sous la galerie */
.checks--row { margin-top: 3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .checks--row { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; } }
@media (min-width: 1024px) { .checks--row { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   19. AVIS GOOGLE
   Le panneau de gauche porte la preuve chiffrée, les cartes de droite portent
   les mots. Les deux pointent vers la fiche : rien n'est invérifiable.
   -------------------------------------------------------------------------- */
.avis { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .avis { grid-template-columns: 1fr 1.15fr; gap: 2rem; } }

.avis__note {
  display: flex; flex-direction: column;
  border-radius: var(--radius-card);
  background: var(--ink); color: #fff;
  padding: 2.5rem 2rem;
}
.avis__chiffre {
  margin-top: 1.5rem;
  display: flex; align-items: baseline; gap: 0.25rem;
  font-size: 5rem; font-weight: 600; line-height: 1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.avis__chiffre i { font-style: normal; font-size: 1.5rem; font-weight: 500; color: rgba(255,255,255,.62); }
.avis__etoiles { display: flex; gap: 0.3rem; margin-top: 1rem; color: var(--accent-lift); }
.avis__etoiles svg { width: 1.375rem; height: 1.375rem; }
.avis__total { margin-top: 1.5rem; max-width: 30ch; font-size: 0.9375rem; line-height: 1.6; color: rgba(255,255,255,.72); }
.avis__total b { color: #fff; font-weight: 600; }
.avis__maj {
  margin-top: 0.75rem;
  font-size: 0.6875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.62);
}
.avis__ctas { margin-top: auto; padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill--ghost { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.pill--ghost:hover { background: rgba(255,255,255,.1); }
@media (min-width: 640px) { .avis__note { padding: 3rem 2.5rem; } .avis__chiffre { font-size: 6rem; } }

.avis__liste { display: grid; gap: 1rem; align-content: start; }
.avis__carte {
  border: 1px solid var(--line);
  border-radius: var(--radius-card-sm);
  background: var(--bg);
  padding: 1.5rem;
  transition: border-color .4s var(--e-snap), transform .4s var(--e-snap), box-shadow .4s var(--e-snap);
}
.avis__carte:hover {
  border-color: transparent; transform: translateY(-3px);
  box-shadow: 0 1rem 2.5rem rgba(0,22,89,.1);
}
.avis__tete { display: flex; align-items: center; gap: 0.75rem; }
.avis__pastille {
  width: 2.5rem; height: 2.5rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface); color: var(--ink);
  font-size: 0.9375rem; font-weight: 600;
}
.avis__tete b { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.avis__quand { display: block; margin-top: 0.125rem; font-size: 0.75rem; color: var(--muted); }
.avis__note-carte { margin-left: auto; display: flex; gap: 0.15rem; color: var(--accent-ink); }
.avis__note-carte svg { width: 0.875rem; height: 0.875rem; }
.avis__carte p { margin-top: 1rem; font-size: 0.9375rem; line-height: 1.65; color: var(--muted); }

/* --------------------------------------------------------------------------
   20. PRÉFÉRENCES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-rv], .js .lines .ln > span, .js .words .wd { opacity: 1 !important; transform: none !important; }
}


/* --------------------------------------------------------------------------
   PHOTOS v02 (10 sept. 2026) — bandeaux des pages internes et portrait
   -------------------------------------------------------------------------- */
.phead .shell { position: relative; z-index: 1; }
.phead__bg { position: absolute; inset: 0; z-index: 0; }
.phead__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: .55; filter: saturate(.85);
  transform: scale(1.04);
}
/* Voile marine : le texte reste blanc sur fond sombre quoi qu'il y ait derrière */
.phead__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,22,89,.88) 0%, rgba(0,22,89,.72) 45%, rgba(0,22,89,.45) 100%),
    linear-gradient(180deg, rgba(0,22,89,.35) 0%, rgba(0,22,89,.75) 100%);
}
.phead--photo::before { color: rgba(255,255,255,.06); }
.phead--photo p { color: rgba(255,255,255,.74); }
@media (max-width: 639px) {
  .phead__bg::after { background: linear-gradient(180deg, rgba(0,22,89,.78) 0%, rgba(0,22,89,.86) 100%); }
}

.split__side { display: grid; gap: 1.5rem; align-content: start; }
.portrait {
  margin: 0; overflow: hidden;
  border-radius: var(--radius-card-sm);
  background: var(--ink);
}
.portrait img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%;
}
.portrait figcaption {
  padding: 0.875rem 1.125rem 1rem; font-size: 0.8125rem; line-height: 1.5;
  color: rgba(255,255,255,.78); background: var(--ink);
}
.portrait figcaption strong { color: #fff; font-weight: 600; }
@media (min-width: 1024px) { .split__side .aside { position: static; } }

/* --------------------------------------------------------------------------
   VIDÉO DU HÉROS v2 (10 sept. 2026) — lisibilité
   Le montage alterne plans sombres et plans clairs (revêtement blanc, ciel) :
   une ombre douce derrière le texte le garde lisible sans assombrir la vidéo.
   Sur téléphone le texte occupe toute la largeur : le voile passe à la verticale.
   -------------------------------------------------------------------------- */
.hero.hero--video h1,
.hero.hero--video .lede,
.hero.hero--video .eyebrow,
.hero.hero--video .hero__rating span { text-shadow: 0 1px 18px rgba(0,13,51,.55), 0 1px 3px rgba(0,13,51,.35); }
/* Téléphone (16 sept. 2026) : le client ne voyait plus la vidéo sous le voile marine
   (deux dégradés empilés, 70 à 90 % d'opacité). On garde un voile léger, juste assez
   pour l'en-tête en haut et la barre en bas ; la lisibilité du texte repose sur son ombre. */
@media (max-width: 767px) {
  .hero.hero--video .hero__veil {
    background: linear-gradient(to top, rgba(0,13,51,.86) 0%, rgba(0,13,51,.38) 20%, transparent 40%);
  }
  .hero.hero--video::after {
    background: linear-gradient(180deg,
      rgba(0,13,51,.34) 0%, rgba(0,13,51,.14) 30%, rgba(0,13,51,.18) 70%, rgba(0,13,51,.48) 100%);
  }
  .hero.hero--video h1,
  .hero.hero--video .lede,
  .hero.hero--video .eyebrow,
  .hero.hero--video .hero__rating span { text-shadow: 0 2px 24px rgba(0,13,51,.8), 0 1px 4px rgba(0,13,51,.65); }
}


/* --------------------------------------------------------------------------
   LOGO OFFICIEL (10 sept. 2026) — version blanche : tous les emplacements
   du logo sont sur fond marine (en-tête sur la vidéo, menu, chargeur, pied).
   La version couleur (assets/img/logo-az.webp) sert sur fond clair.
   -------------------------------------------------------------------------- */
/* La loupe occupe les deux tiers du logo : il faut une hauteur généreuse pour que le mot reste lisible. */
.brand__logo { display: block; width: auto; height: 3.5rem; }
@media (min-width: 1024px) { .header .brand__logo { height: 4.25rem; } }
.loader__logo { display: block; width: auto; height: 5.5rem; }
@media (min-width: 640px) { .loader__logo { height: 7rem; } }
.footer__logo { display: block; width: auto; height: 4.5rem; }

/* --------------------------------------------------------------------------
   BILINGUE + PIED DE PAGE (13 sept. 2026)
   -------------------------------------------------------------------------- */
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.75rem; height: 2.75rem; padding: 0 .75rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  font-size: .8125rem; font-weight: 600; letter-spacing: .06em;
  transition: background .3s var(--e-snap), border-color .3s var(--e-snap);
}
.lang-switch:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer__credit { white-space: nowrap; }
.footer__credit::before { content: "·"; margin: 0 .5rem; opacity: .5; }
.footer__credit a { color: rgba(255,255,255,.8); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.3); }
.footer__credit a:hover { color: #fff; text-decoration-color: var(--accent-lift); }
.footer__watermark { display: none; }

/* Chargeur : une seule fois par navigateur (classe posée en tête de page). */
.az-vu .loader { display: none !important; }

/* --------------------------------------------------------------------------
   BANDEAU TÉMOINS (Loi 25, 16 sept. 2026)
   -------------------------------------------------------------------------- */
.consent { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 110; display: flex; justify-content: center; }
.consent[hidden] { display: none; }
.consent__in { width: min(100%, 64rem); background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 1.1rem 1.25rem; display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; box-shadow: 0 18px 50px rgba(0,13,51,.45); }
.consent__text { flex: 1 1 24rem; font-size: .93rem; line-height: 1.5; color: rgba(255,255,255,.82); }
.consent__text p { margin: 0; }
.consent__title { font-weight: 600; color: #fff; margin-bottom: .25rem; }
.consent__text a { color: var(--accent-lift); text-decoration: underline; }
.consent__btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.consent .pill--outline { border-color: rgba(255,255,255,.35); color: #fff; }
.footer__legal a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   WORDPRESS (ajouté par _outils/generer-theme.js)
   -------------------------------------------------------------------------- */
.az-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
