/* =============================================================
   Affûtage Express, feuille de styles
   Brand palette LOCKED. Aucune autre couleur autorisée.
   ============================================================= */

:root {
  /* Brand */
  --navy:  #1B3A47;
  --warm:  #D3D1C9;
  --black: #131717;
  --white: #FFFFFF;
  --steel: #9BA8B0;
  --paper: #F5F4F0;

  /* Derived */
  --line:    rgba(155, 168, 176, .22);
  --line-2:  rgba(155, 168, 176, .35);
  --ink:     rgba(255, 255, 255, .92);
  --ink-2:  rgba(255, 255, 255, .68);
  --on-warm:    #1B3A47;            /* texte sur fond warm : c'est --navy */
  --on-warm-2:  rgba(27, 58, 71, .82);

  --maxw: 1240px;
  --header-h: 72px;

  --ease-cut: cubic-bezier(.2, .9, .2, 1);
  --speed-fast: .25s;
  --speed:      .55s;

  /* Diagonale de coupe, source unique de verite.
     Hero photo right-side clip goes from (50%, 0) at top to (45%, 100%) at bottom.
     Referentiel unique pour le cadrage de la photo. */
  --cut-top: 50%;
  --cut-bot: 45%;
}

/* ===================== Reset ===================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(19, 23, 23, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background var(--speed-fast), border-color var(--speed-fast);
}
.site-header.is-scrolled {
  background: rgba(19, 23, 23, .82);
  border-bottom-color: var(--line-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: invert(1) brightness(1.15) contrast(1.04);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-tag {
  font-size: 10.5px;
  color: var(--steel);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: color var(--speed-fast), background var(--speed-fast);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.nav-cta { padding: 11px 18px; font-size: 13px; }

/* Selecteur de langue. Regroupe avec le burger pour rester colle a droite,
   et il ne disparait pas sous 880 px : c'est le seul chemin vers l'autre
   version du site quand le menu est ferme. */
.nav-end { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.lang-switch a {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ink-2);
  transition: color var(--speed-fast), background var(--speed-fast);
}
.lang-switch a:hover { color: var(--white); }
.lang-switch a[aria-current="true"] {
  background: var(--white);
  color: var(--black);
}

/* Les pages de confirmation n'ont pas de header : le selecteur y flotte. */
.lang-switch-solo {
  position: absolute;
  top: clamp(16px, 3vh, 28px);
  right: clamp(16px, 5vw, 40px);
  z-index: 5;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--white);
  transition: transform var(--speed-fast) var(--ease-cut),
              opacity   var(--speed-fast) var(--ease-cut),
              top       var(--speed-fast) var(--ease-cut);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  /* Le selecteur prend de la largeur dans un header deja etroit : on le
     resserre et on empeche le nom de marque de passer sur deux lignes. */
  .lang-switch a { padding: 5px 8px; font-size: 11px; }
  .nav-end { gap: 8px; }
  .brand { gap: 9px; }
  .brand-name { font-size: 14px; letter-spacing: .01em; white-space: nowrap; }
  /* Selecteur de langue. Regroupe avec le burger pour rester colle a droite,
   et il ne disparait pas sous 880 px : c'est le seul chemin vers l'autre
   version du site quand le menu est ferme. */
.nav-end { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.lang-switch a {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ink-2);
  transition: color var(--speed-fast), background var(--speed-fast);
}
.lang-switch a:hover { color: var(--white); }
.lang-switch a[aria-current="true"] {
  background: var(--white);
  color: var(--black);
}

.nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .brand-tag { display: none; }
}

/* ===================== Mobile menu ===================== */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 70;
  background: var(--navy);
  padding: 40px clamp(20px, 5vw, 48px) 30px;
  display: flex;
  flex-direction: column;
  transform: translateY(-2%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--speed) var(--ease-cut), opacity var(--speed) var(--ease-cut);
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* :not(.btn) : sans ca, cette regle imposait color: white au CTA Reserver, qui a
   un fond blanc, d'ou un rectangle vide. Elle lui collait aussi la taille et le
   filet des liens de navigation. Les boutons gardent leurs propres styles. */
.mobile-menu a:not(.btn) {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(22px, 5.2vw, 30px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: .035em;
  color: var(--white);
}
.mobile-menu a:not(.btn):hover { color: var(--steel); }
.mobile-menu .mobile-cta { margin-top: 28px; align-self: flex-start; }
.mobile-menu a.mobile-phone {
  margin-top: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel);
  border: none;
  padding: 0;
}

/* ===================== Buttons ===================== */
.btn {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  --btn-border: var(--white);
  --btn-glint: rgba(27, 58, 71, .35);

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px 15px 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-border);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--speed-fast) var(--ease-cut),
              background var(--speed-fast),
              color var(--speed-fast),
              border-color var(--speed-fast);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.btn .arrow { display: inline-block; transition: transform var(--speed-fast) var(--ease-cut); }
.btn:hover .arrow,
.btn:focus-visible .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }

.btn::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -120%;
  width: 70%;
  background: linear-gradient(110deg,
              transparent 0%,
              var(--btn-glint) 50%,
              transparent 100%);
  transform: skewX(-22deg);
  z-index: -1;
  transition: left .7s var(--ease-cut);
  pointer-events: none;
}
.btn:hover::before,
.btn:focus-visible::before { left: 140%; }

.btn-primary {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  --btn-border: var(--white);
  --btn-glint: rgba(27, 58, 71, .30);
}
.btn-primary:hover { background: var(--steel); border-color: var(--steel); color: var(--black); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-border: var(--steel);
  --btn-glint: rgba(255, 255, 255, .25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .07); border-color: var(--white); }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 45% 100%);
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  /* Le visage est a 27% / 16% de la source. A 55% de large, la boite reste plus
     etroite que l'image mise a l'echelle, donc le decalage horizontal agit
     vraiment et sort la tete de la diagonale a 1440, 1280 et 1024 (C1). */
  object-position: 25% 18%;
  filter: contrast(1.04) saturate(.95);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(27, 58, 71, .55) 0%,
      rgba(27, 58, 71, .18) 28%,
      rgba(19, 23, 23, .05) 60%,
      rgba(19, 23, 23, .35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--header-h) clamp(20px, 4vw, 48px) 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-inner {
  width: min(540px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 22px);
  padding: clamp(30px, 5vh, 70px) 0 clamp(30px, 5vh, 70px);
}

.hero-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--white);
}
.hero-line { display: block; }
/* Element signature. Les deux moities restent decalees en permanence : avant, GSAP
   les ramenait a zero et la coupe devenait invisible apres 0,8 s. La moitie basse
   passe en --warm, ce qui materialise le tranchant sans italique synthetique. */
/* Seul endroit du site ou Anton subsiste : le mot coupe garde son punch
   d'affiche, et il reste en capitales pour la meme raison. */
.hero-line-cut {
  position: relative;
  margin-left: clamp(16px, 4vw, 70px);
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  /* Anton remplit presque toute la boite em : sans interligne propre, ses
     capitales viennent toucher la ligne de Fraunces au-dessus. */
  font-size: 1.12em;
  line-height: 1.16;
  margin-top: .16em;
}
.cut-half { display: block; position: relative; }
.cut-bot  { position: absolute; top: 0; left: 0; right: 0; pointer-events: none; }

/* Pente ouverte a 38/62 : a 44/56 la diagonale ne se lisait pas d'un coup d'oeil. */
.cut-top  { clip-path: polygon(0 0, 100% 0, 100% 46%, 0 54%); }
.cut-bot  {
  clip-path: polygon(0 46%, 100% 54%, 100% 100%, 0 100%);
  color: var(--warm);
  transform: translateX(.17em);
  transition: transform var(--speed) var(--ease-cut);
}
.hero:hover .cut-bot,
.hero:focus-within .cut-bot { transform: translateX(.23em); }

@media (prefers-reduced-motion: no-preference) {
  .hero-line-cut { animation: cut-entree .7s var(--ease-cut) both; }
}
@keyframes cut-entree {
  from { opacity: 0; transform: translateY(.06em); }
  to   { opacity: 1; transform: none; }
}

.hero-sub {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--white);
  max-width: 24ch;
  line-height: 1.25;
  letter-spacing: -.005em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(10px, 2vh, 18px); }

.hero-zones {
  margin: clamp(8px, 2vh, 18px) 0 0;
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}

@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero-photo {
    inset: var(--header-h) 0 auto 0;
    height: 52vh;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
  .hero-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* 6% en vertical : a 768 px le cadrage par la largeur tranchait le haut du crane. */
    object-position: 30% 6%;
  }
  .hero-photo::after {
    background:
      linear-gradient(180deg,
        rgba(27, 58, 71, .12) 0%,
        rgba(27, 58, 71, .05) 35%,
        rgba(27, 58, 71, .82) 80%,
        rgba(27, 58, 71, 1) 100%);
  }
  .hero-content {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(52vh + var(--header-h) + 20px);
    padding-bottom: 40px;
  }
  .hero-inner { width: 100%; padding-top: 0; padding-bottom: 0; }
  .hero-line-cut { margin-left: 0; }
}

/* ===================== Bande methode (fusion de How) ===================== */
.methode {
  background: var(--warm);
  color: var(--on-warm);
  padding: clamp(20px, 3vh, 30px) 0;
}
.methode-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 28px;
}
.methode-steps {
  margin: 0;
  max-width: 62ch;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--navy);
}
.methode-note {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-warm-2);
}

/* =============================================================
   SECTIONS partagees
   ============================================================= */
.section {
  position: relative;
  padding: clamp(96px, 14vh, 200px) 0;
  isolation: isolate;
}
.section + .section {
  border-top: 1px solid var(--line);
}
.section-dark { background: var(--black); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-warm  { background: var(--warm);  color: var(--on-warm); }
.section-paper { background: var(--paper); color: var(--on-warm); }
.section-warm + .section,
.section + .section-warm,
.section-paper + .section,
.section + .section-paper { border-top-color: rgba(27, 58, 71, .14); }

.section-eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
}
.section-warm .section-eyebrow { color: var(--on-warm-2); }

.section-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(27px, 4.2vw, 60px);
  line-height: .96;
  letter-spacing: -.005em;
  margin: 0 0 18px;
  color: inherit;
}
.section-title em {
  font-style: normal;
  color: var(--warm);
}
.section-warm .section-title em { color: var(--navy); }

.section-lead {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--ink-2);
}
.section-warm .section-lead { color: var(--on-warm-2); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(52px, 8vh, 96px);
}
.section-head .head-text { min-width: 0; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

/* Reveal au defilement. Masque seulement si .js est present sur <html>, sinon un
   visiteur sans JavaScript resterait devant une page vide (B3). */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-cut), transform .7s var(--ease-cut); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   Declinaison claire. Les memes composants sur fond papier, pour
   alterner avec les blocs sombres au lieu de les empiler.
   ============================================================= */
.section-paper .section-eyebrow { color: rgba(27, 58, 71, .62); }
.section-paper .section-title   { color: var(--navy); }
.section-paper .section-title em { color: rgba(27, 58, 71, .58); }
.section-paper .section-lead    { color: var(--on-warm-2); }

.section-paper .service {
  background: #FFFFFF;
  border-color: rgba(27, 58, 71, .14);
}
.section-paper .service:hover {
  background: #FFFFFF;
  border-color: rgba(27, 58, 71, .3);
}
.section-paper .service h3 { color: var(--navy); }
.section-paper .service p  { color: var(--on-warm-2); }
.section-paper .service-icon { border-color: var(--navy); color: var(--navy); }

.section-paper .services-exclude {
  background: #FFFFFF;
  border-color: rgba(27, 58, 71, .22);
  border-left-color: var(--navy);
  color: var(--on-warm);
}
.section-paper .services-exclude-label { color: var(--navy); }

.section-paper .pricing-col h3 { color: var(--navy); }
.section-paper .pricing-col p.sub { color: var(--on-warm-2); }
.section-paper .b2c-table th { color: rgba(27, 58, 71, .62); }
.section-paper .b2c-table th,
.section-paper .b2c-table td { border-bottom-color: rgba(27, 58, 71, .14); }
.section-paper .b2c-table td:last-child { color: var(--navy); }
.section-paper .b2c-table tr.is-featured td { background: rgba(27, 58, 71, .05); color: var(--navy); }
.section-paper .b2c-table tr.is-featured td:first-child::before { color: var(--navy); }
.section-paper .b2c-extras {
  background: #FFFFFF;
  border-left-color: var(--navy);
}
.section-paper .b2c-extras h4 { color: rgba(27, 58, 71, .62); }
.section-paper .b2c-extras ul { color: var(--on-warm); }
.section-paper .b2c-extras li span:last-child { color: var(--navy); }
.section-paper .b2b-line {
  background: #FFFFFF;
  border-left-color: var(--navy);
  color: var(--on-warm-2);
}
.section-paper .b2b-line strong { color: var(--navy); }
.section-paper .b2b-line a { color: var(--navy); }
.section-paper .b2b-line a:hover { color: var(--navy); }

/* =============================================================
   PROOF, preuve sociale (avis Google)
   ============================================================= */
.proof-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(28px, 4vh, 48px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(52px, 8vh, 96px);
}
.proof-score {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(68px, 11vw, 140px);
  line-height: .82;
  letter-spacing: -.02em;
  color: var(--white);
}
.proof-score sup {
  font-size: .28em;
  vertical-align: super;
  color: var(--steel);
  margin-left: 4px;
  letter-spacing: 0;
}
.proof-meta { display: flex; flex-direction: column; gap: 8px; padding-bottom: 8px; }
.proof-meta-stars { color: var(--white); letter-spacing: 4px; font-size: clamp(18px, 1.6vw, 22px); }
.proof-meta-label { color: var(--steel); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.proof-meta-sub { color: var(--ink-2); font-size: 14px; }

/* Carrousel : defilement horizontal natif, donc le geste tactile marche sans
   une ligne de JS. Les fleches ne font qu'appeler scrollBy par-dessus. */
.proof-carousel { position: relative; }
.proof-cards {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.proof-cards::-webkit-scrollbar { display: none; }
.proof-cards:focus-visible { outline: 2px solid var(--steel); outline-offset: 6px; }
.proof-card { flex: 0 0 clamp(258px, 74vw, 400px); scroll-snap-align: start; }

.proof-nav { display: flex; gap: 10px; margin-top: clamp(20px, 3vh, 30px); }
.proof-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  transition: background var(--speed-fast), border-color var(--speed-fast), opacity var(--speed-fast);
}
.proof-arrow:hover:not(:disabled) { background: rgba(255, 255, 255, .08); border-color: var(--white); }
.proof-arrow:disabled { opacity: .28; cursor: default; }

/* Le compteur est un lien vers la fiche Google */
a.proof-meta-label { text-decoration: underline; text-underline-offset: 4px; }
a.proof-meta-label:hover { color: var(--white); }
.proof-card {
  position: relative;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  padding: clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  transition: background var(--speed-fast), border-color var(--speed-fast);
}
.proof-card:hover { background: rgba(255, 255, 255, .06); border-color: var(--line-2); }
/* Bandeau de carte : pastille de source, note, mention verifie. Aux couleurs
   de marque, pas au bleu et blanc de Google. */
.proof-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--steel);
  border-radius: 50%;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--warm);
}
.proof-card-stars {
  color: var(--warm);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1;
}
.proof-card-verified {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.proof-card-verified::before {
  content: '✓';
  margin-right: 5px;
  color: var(--warm);
}
.proof-card-quote {
  margin: 0;
  flex: 1 1 auto;
  font-size: clamp(15px, 1.15vw, 16.5px);
  line-height: 1.6;
  color: var(--white);
}
.proof-card-author {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--steel);
}
.proof-card-author span { color: var(--ink-2); font-weight: 400; letter-spacing: .01em; text-transform: none; }
.proof-card-author span::before { content: ', '; }
.proof-card-author { padding-top: 14px; border-top: 1px solid var(--line); }

/* =============================================================
   SERVICES, ce qu'on affute
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  position: relative;
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  transition: background var(--speed-fast), border-color var(--speed-fast);
}
.service:hover { background: rgba(255, 255, 255, .06); border-color: var(--line-2); }
.service-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--steel);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--steel);
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; }
.service h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(18px, 1.9vw, 24px);
  letter-spacing: .01em;
  color: var(--white);
}
.service p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
/* Ligne de refus. Assez grande pour etre lue, elle evite des demandes qu'on
   refusera de toute facon : c'est du temps gagne des deux cotes. */
.services-exclude {
  margin: clamp(28px, 4vh, 48px) 0 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--warm);
  border-left-width: 3px;
  background: rgba(211, 209, 201, .07);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--white);
}
.services-exclude-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -.01em;
  color: var(--warm);
}

/* =============================================================
   PRICING, tarifs
   ============================================================= */
.pricing { display: grid; gap: clamp(24px, 3vw, 36px); }

/* Le commerce tient en une ligne, plus en colonne a parite visuelle (D) */
.b2b-line {
  margin: 0;
  padding: 18px 20px;
  border-left: 2px solid var(--steel);
  background: rgba(155, 168, 176, .06);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.b2b-line strong { color: var(--white); }
.b2b-line a { color: var(--warm); text-decoration: underline; text-underline-offset: 3px; }
.b2b-line a:hover { color: var(--white); }
.pricing-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.5vw, 31px);
  letter-spacing: .005em;
  margin: 0 0 8px;
  color: var(--white);
}
.pricing-col p.sub {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--steel);
}

/* B2C table */
.b2c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.b2c-table th,
.b2c-table td {
  text-align: left;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.b2c-table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
/* Les prix etaient alignes a droite alors que leur en-tete restait a gauche :
   « Prix / lame » flottait donc loin de sa colonne. Les deux passent a gauche,
   comme « Quantite » au-dessus de la sienne. La largeur fixe evite que la
   colonne des prix ne s'etale sur toute la moitie du tableau. */
.b2c-table th:last-child,
.b2c-table td:last-child { width: 34%; }
.b2c-table td:last-child {
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -.01em;
}
.b2c-table tr.is-featured td {
  background: rgba(155, 168, 176, .07);
  color: var(--white);
}
.b2c-table tr.is-featured td:first-child::before {
  content: '★';
  color: var(--steel);
  margin-right: 8px;
}
.b2c-extras {
  margin: 24px 0 0;
  padding: 18px 20px;
  background: rgba(155, 168, 176, .06);
  border-left: 2px solid var(--steel);
  display: grid;
  gap: 8px;
}
.b2c-extras h4 {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
}
.b2c-extras ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; font-size: 14px; color: var(--ink); }
.b2c-extras li { display: flex; justify-content: space-between; gap: 12px; padding: 2px 0; }
.b2c-extras li span:last-child { color: var(--steel); font-weight: 700; }

/* B2B cards */
/* =============================================================
   FORM, reservation et devis
   ============================================================= */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.form-toggle {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 32px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
}
.form-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--speed-fast), color var(--speed-fast);
}
.form-toggle button:hover { color: var(--white); }
.form-toggle button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  border-radius: 0;
  transition: border-color var(--speed-fast), background var(--speed-fast);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(155, 168, 176, .55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--steel);
  background: rgba(255, 255, 255, .06);
}
.field textarea { min-height: 110px; resize: vertical; font-family: 'Manrope', sans-serif; }

/* Menus deroulants. Le champ herite de color: var(--white), mais la liste native
   s'ouvre sur le fond systeme, qui est blanc : les options etaient blanc sur blanc,
   lisibles seulement a la ligne survolee. On impose donc les deux couleurs.
   color-scheme demande en plus au navigateur de dessiner la liste en mode sombre. */
.field select {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% + 2px),
    calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option,
.field select optgroup {
  background-color: var(--navy);
  color: var(--white);
}
/* L'option « Choisir... » reste visible mais se distingue des vrais choix. */
.field select option[disabled] { color: var(--steel); }

.field-file label {
  border: 1px dashed var(--line-2);
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: .02em;
  font-size: 13.5px;
  font-weight: 600;
  transition: border-color var(--speed-fast), background var(--speed-fast);
}
.field-file label:hover { border-color: var(--steel); background: rgba(255, 255, 255, .04); }
.field-file label.has-file { border-color: var(--steel); color: var(--white); }
.field-file label .ico { color: var(--steel); }
.field-file input[type="file"] { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }

.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; width: 1px; height: 1px; }

.form-submit-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.form-legal {
  font-size: 12px;
  color: var(--ink-2);
  max-width: 36ch;
  margin: 0;
}

/* B2B specific fields hidden when B2C is active and vice versa */
.form-fields[data-mode="b2c"] [data-when="b2b"] { display: none; }
.form-fields[data-mode="b2b"] [data-when="b2c"] { display: none; }

/* Erreur de champ, injectée par script.js sous le champ fautif (A2) */
.field-error {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--warm);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--warm);
  background: rgba(211, 209, 201, .07);
}

/* Focus visible sur le champ fichier : l'input est masqué, c'est le label qui
   porte l'état, sinon un utilisateur clavier ne voit jamais où il est (A11) */
.field-file:focus-within label {
  border-color: var(--steel);
  outline: 2px solid var(--steel);
  outline-offset: 3px;
}

/* Retour d'envoi affiché en place, la page ne bouge plus (A8) */
.form-status {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--steel);
  background: rgba(155, 168, 176, .08);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.form-status:empty { display: none; }
.form-status.is-error {
  border-left-color: var(--warm);
  background: rgba(211, 209, 201, .09);
  color: var(--white);
}
.form-status.is-ok {
  border-left-color: var(--white);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}
.form-status a { text-decoration: underline; text-underline-offset: 3px; color: var(--white); }
.btn[aria-busy="true"] { opacity: .6; pointer-events: none; }

/* =============================================================
   9. PAGE D'ERREUR SERVEUR (send.php, repli sans JavaScript)
   ============================================================= */
.err-shell {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: clamp(40px, 8vh, 100px) clamp(20px, 5vw, 60px);
}
.err-card {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.err-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
}
.err-title {
  margin: 0;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(31px, 5vw, 60px);
  line-height: .94;
  letter-spacing: -.005em;
}
.err-title em { font-style: normal; color: var(--warm); }
.err-text {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  max-width: 52ch;
}
.err-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }

/* =============================================================
   10. FAQ
   ============================================================= */
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid rgba(27, 42, 48, .18);
  background: rgba(255, 255, 255, .35);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--navy);
  letter-spacing: .005em;
  position: relative;
  padding-right: 56px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  transition: transform var(--speed-fast);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > div {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-warm-2);
}
.faq-list details > div strong { color: var(--on-warm); }

/* =============================================================
   10. FOOTER
   ============================================================= */
.site-footer {
  background: var(--black);
  color: var(--ink-2);
  padding: clamp(60px, 9vh, 100px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(40px, 6vh, 64px);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 48px; height: 48px; filter: invert(1) brightness(1.15); flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-text .name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: .04em;
}
.footer-brand-text p { margin: 0; font-size: 14px; line-height: 1.55; max-width: 32ch; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--ink);
  transition: color var(--speed-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-tel {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--white);
  letter-spacing: .03em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--steel);
}

/* ===================== Reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
