/* ==========================================================================
   greggeny.com

   Systeme clair / fonce : chaque section porte ses propres tokens de couleur.
   Une section "claire" redefinit --bg, --texte, --ligne, --accent, et tous
   les composants a l'interieur s'adaptent sans regle supplementaire.

   Rythme de la page : fonce (hero + preuve) -> clair (clients + lancements)
   -> fonce (these) -> clair (histoire + services) -> fonce (capture + CTA).

   Mobile first : le trafic vient d'Instagram.
   ========================================================================== */

:root {
  /* Palette brute */
  --noir:       #0B0B0B;
  --noir-2:     #131313;
  --noir-3:     #1B1B1B;
  --creme:      #F5F2EB;
  --creme-2:    #EBE6DA;
  --encre:      #16140F;
  --or:         #A8811A;   /* version foncee, lisible sur fond clair */
  --or-clair:   #D4AC2E;   /* version claire, lisible sur fond fonce */

  /* Tokens contextuels. Valeurs par defaut = section foncee. */
  --bg:         var(--noir);
  --bg-2:       var(--noir-2);
  --bg-3:       var(--noir-3);
  --texte:      #F6F4EF;
  --texte-doux: #B4AFA4;
  --ligne:      #2C2C2C;
  --accent:     var(--or-clair);
  --sur-accent: #0B0B0B;
  --ombre:      rgba(0, 0, 0, 0.5);

  --max:       1180px;
  --max-texte: 720px;

  --pad-x:  clamp(1.25rem, 5vw, 3rem);
  --sect-y: clamp(4.5rem, 10vw, 8rem);

  --t-h1:    clamp(2.4rem, 7.5vw, 4.9rem);
  --t-h2:    clamp(1.85rem, 4.6vw, 3rem);
  --t-h3:    clamp(1.15rem, 2.4vw, 1.5rem);
  --t-body:  clamp(1.02rem, 1.5vw, 1.12rem);
  --t-lead:  clamp(1.1rem, 2vw, 1.3rem);
  --t-small: clamp(0.82rem, 1.4vw, 0.9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bascule en section claire : un seul point de verite. */
.clair {
  --bg:         var(--creme);
  --bg-2:       #FFFFFF;
  --bg-3:       var(--creme-2);
  --texte:      var(--encre);
  --texte-doux: #55503F;
  --ligne:      #D9D3C4;
  --accent:     var(--or);
  --sur-accent: #FFFFFF;
  --ombre:      rgba(22, 20, 15, 0.10);
}

.clair--2 { --bg: var(--creme-2); --bg-2: var(--creme); }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--texte);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--t-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
  color: var(--texte);
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Structure
   -------------------------------------------------------------------------- */

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

.wrap--texte { max-width: var(--max-texte); }

.section {
  padding-block: var(--sect-y);
  background: var(--bg);
  color: var(--texte);
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.3rem;
}

.lead {
  font-size: var(--t-lead);
  color: var(--texte-doux);
  line-height: 1.6;
}

.mono-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1.05rem 1.9rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  text-align: center;
  line-height: 1.2;
}

/* CTA primaire unique : Arko. Reserve, ne pas reutiliser ailleurs. */
.btn--primaire {
  background: var(--accent);
  color: var(--sur-accent);
  border-color: var(--accent);
}
.clair .btn--primaire { color: #FFFFFF; }
.btn--primaire:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px var(--accent);
  filter: brightness(1.08);
}

.btn--fantome {
  background: transparent;
  color: var(--texte);
  border-color: color-mix(in srgb, var(--texte) 32%, transparent);
}
.btn--fantome:hover {
  border-color: var(--texte);
  background: color-mix(in srgb, var(--texte) 6%, transparent);
}

.btn--lien {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-bottom: 3px;
  font-weight: 700;
}
.btn--lien:hover { border-bottom-color: var(--accent); }

.btn-groupe { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* --------------------------------------------------------------------------
   Navigation : toujours sombre, elle sert d'ancrage sur les sections claires
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  color: #F6F4EF;
}

.nav.is-collee {
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: #2C2C2C;
  padding-block: 0.8rem;
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav__marque {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.nav__liens { display: none; gap: 2rem; font-size: 0.92rem; color: #B4AFA4; }
.nav__liens a:hover { color: #F6F4EF; }
.nav__cta { display: none; }

@media (min-width: 900px) {
  .nav__liens { display: flex; }
  .nav__cta {
    display: inline-flex;
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
    background: var(--or-clair);
    color: #0B0B0B;
    border-color: var(--or-clair);
  }
}

/* --------------------------------------------------------------------------
   1. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding-block: 8.5rem 4.5rem;
  overflow: hidden;
  background: var(--noir);
  color: #F6F4EF;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Le sujet est bas dans le cadre : on montre la partie basse de la source */
  object-position: center 12%;
}

.hero__masque {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.86) 40%, rgba(11,11,11,0.28) 78%, rgba(11,11,11,0.16) 100%),
    linear-gradient(to top, rgba(11,11,11,0.94) 0%, rgba(11,11,11,0.10) 45%, rgba(11,11,11,0.60) 100%);
}

/* Le contenu utilise la meme largeur que la nav : le "J" du titre tombe
   exactement sous le "G" de GREG GENY. La longueur de ligne est bridee
   sur les elements eux-memes, pas sur le conteneur. */
.hero__contenu { position: relative; z-index: 2; }

.hero__marque {
  font-family: 'Archivo', sans-serif;
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--or-clair);
  margin: 0 0 1.6rem;
}

.hero h1 {
  font-size: var(--t-h1);
  font-weight: 900;
  margin-bottom: 1.8rem;
  max-width: 14ch;
  color: #F6F4EF;
}

.hero__sous {
  font-size: var(--t-lead);
  color: rgba(246, 244, 239, 0.88);
  max-width: 46ch;
  margin-bottom: 2.5rem;
  line-height: 1.58;
}

.hero__legende {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.45);
}

@media (max-width: 780px) {
  .hero {
    display: block;
    min-height: auto;
    padding-block: 6.5rem 3rem;
  }
  .hero h1 { font-size: clamp(1.95rem, 8vw, 2.7rem); margin-bottom: 1.4rem; max-width: none; }
  .hero__marque { margin-bottom: 1.2rem; }
  .hero__sous { font-size: 1.02rem; margin-bottom: 2rem; max-width: none; }
  .hero__legende { position: static; margin-top: 2.25rem; }
  .hero__media video,
  .hero__media img { object-position: 62% 10%; }
  .hero__masque {
    background: linear-gradient(to top, rgba(11,11,11,0.96) 0%, rgba(11,11,11,0.60) 55%, rgba(11,11,11,0.78) 100%);
  }
  .btn-groupe { flex-direction: column; align-items: stretch; }
  .btn-groupe .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   2. BARRE DE PREUVE (avec photos)
   -------------------------------------------------------------------------- */

.preuve {
  background: var(--bg-2);
  border-block: 1px solid var(--ligne);
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.preuve__titre { text-align: center; margin-bottom: 2.8rem; }

.preuve__grille { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.25rem; }
@media (min-width: 860px) { .preuve__grille { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.preuve__item { text-align: center; }

.preuve__photo {
  aspect-ratio: 76 / 50;
  overflow: hidden;
  border: 1px solid var(--ligne);
  margin-bottom: 1.1rem;
  background: var(--bg-3);
}
.preuve__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.preuve__item:hover .preuve__photo img { transform: scale(1.05); }

.preuve__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  margin-bottom: 0.45rem;
}

.preuve__detail { font-size: 0.82rem; line-height: 1.5; color: var(--texte-doux); }

/* --------------------------------------------------------------------------
   3. CLIENTS (cartes avec visuel 16:9)
   -------------------------------------------------------------------------- */

.clients__grille { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 640px)  { .clients__grille { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .clients__grille { grid-template-columns: repeat(3, 1fr); } }

.client {
  background: var(--bg-2);
  border: 1px solid var(--ligne);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.client:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 18px 40px -22px var(--ombre);
}

.client__visuel {
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.client__visuel img { width: 100%; height: 100%; object-fit: cover; }

/* Fallback quand la photo manque : initiales, rien ne casse */
.client__initiales {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--accent) 70%, transparent);
}

.client__corps { padding: 1.5rem 1.6rem 1.75rem; }

.client__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.client__ligne { font-size: 0.92rem; color: var(--texte-doux); line-height: 1.55; }

/* --------------------------------------------------------------------------
   4. CASE STUDIES
   -------------------------------------------------------------------------- */

.cases { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 900px) {
  .cases { grid-template-columns: repeat(2, 1fr); }
  .case--large { grid-column: 1 / -1; }
}

.case {
  border: 1px solid var(--ligne);
  background: var(--bg-2);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px var(--ombre);
}

.case__client {
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.case__produit { font-size: var(--t-h3); font-weight: 800; margin-bottom: 0.55rem; }

.case__meta {
  font-size: 0.84rem;
  color: var(--texte-doux);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--ligne);
}

.case__chiffres { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.case__chiffres li {
  padding-left: 1.15rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.case__chiffres li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.case__note { font-size: 0.94rem; color: var(--texte-doux); line-height: 1.65; }

.case--large .case__chiffres { display: grid; gap: 0.6rem 2rem; }
@media (min-width: 700px) { .case--large .case__chiffres { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   5. THESE + MONEY LEAK AUDIT
   -------------------------------------------------------------------------- */

.these__accroche {
  font-size: var(--t-h2);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 2.4rem;
  max-width: 22ch;
}

.these__corps { max-width: var(--max-texte); font-size: var(--t-lead); line-height: 1.72; }
.these__corps p { color: var(--texte-doux); }
.these__corps p.fort { color: var(--texte); font-weight: 500; }

.these__punch {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.25rem, 3.2vw, 1.9rem);
  font-weight: 800;
  color: var(--accent);
  margin-top: 2.4rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent);
  line-height: 1.28;
}

.mla { margin-top: 4.5rem; }

.mla__titre {
  font-family: 'Archivo', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--ligne);
  margin: 0;
}

.jointure {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.4rem 1.1rem;
  padding-block: 1.55rem;
  border-bottom: 1px solid var(--ligne);
  align-items: start;
}
@media (min-width: 820px) {
  .jointure { grid-template-columns: 2.5rem minmax(190px, 230px) 1fr; align-items: baseline; }
}

.jointure__num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--accent); }

.jointure__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jointure__flux {
  display: block;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--texte-doux);
  margin-top: 0.25rem;
}

.jointure__texte { grid-column: 2 / -1; font-size: 0.95rem; color: var(--texte-doux); line-height: 1.62; }
@media (min-width: 820px) { .jointure__texte { grid-column: 3; } }

/* --------------------------------------------------------------------------
   Capture email
   -------------------------------------------------------------------------- */

.capture {
  margin-top: 3.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, var(--bg));
}

.capture--section { margin-top: 0; max-width: 720px; }

.capture__titre {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
  line-height: 1.22;
}

.capture__texte { font-size: 0.98rem; color: var(--texte-doux); margin-bottom: 1.3rem; line-height: 1.62; }

.capture__form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
@media (min-width: 620px) {
  .capture__form { flex-direction: row; }
  .capture__form .champ { flex: 1; }
}

.capture__legal { font-size: 0.79rem; color: var(--texte-doux); margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Formulaires
   -------------------------------------------------------------------------- */

.champ {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--ligne);
  color: var(--texte);
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 3px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.champ::placeholder { color: var(--texte-doux); opacity: 0.85; }
.champ:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
textarea.champ { resize: vertical; min-height: 120px; line-height: 1.6; }

select.champ { appearance: none; cursor: pointer; padding-right: 2.75rem; }

.form-bloc { margin-bottom: 1.65rem; }

.form-bloc > label,
.form-bloc > legend {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  padding: 0;
  color: var(--texte);
}

.form-bloc .obligatoire { color: var(--accent); }

.form-aide { font-size: 0.84rem; color: var(--texte-doux); margin-top: 0.5rem; }

fieldset.form-bloc { border: none; margin-inline: 0; padding: 0; }

.radios { display: grid; gap: 0.6rem; }
@media (min-width: 700px) { .radios--2col { grid-template-columns: repeat(2, 1fr); } }

.radio {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--ligne);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.95rem;
  background: var(--bg-2);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.radio:hover { border-color: var(--texte-doux); }
.radio input { accent-color: var(--accent); width: 17px; height: 17px; flex-shrink: 0; }
.radio:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, var(--bg-2));
}

.form-grille { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-grille--2 { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   6. HISTOIRE
   -------------------------------------------------------------------------- */

.histoire__haut { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .histoire__haut { grid-template-columns: 1.35fr 0.65fr; gap: 4rem; } }

.histoire__portrait { position: relative; justify-self: center; max-width: 340px; }
.histoire__portrait img { width: 100%; height: auto; }
.histoire__portrait::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.histoire__ouverture {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.2rem, 3.1vw, 1.9rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.014em;
  margin-bottom: 2.5rem;
}
.histoire__ouverture p { margin-bottom: 1.05em; }
.histoire__ouverture .punch { color: var(--accent); }

.histoire__contexte { max-width: var(--max-texte); color: var(--texte-doux); font-size: var(--t-lead); line-height: 1.72; }

.frise { margin-top: 4rem; border-top: 1px solid var(--ligne); }

.frise__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--ligne);
}
@media (min-width: 820px) { .frise__item { grid-template-columns: 7rem 1fr; gap: 2.5rem; } }

.frise__annee { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--accent); }

.frise__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.frise__texte { color: var(--texte-doux); font-size: 0.98rem; line-height: 1.68; }
.frise__texte .lecon { display: block; margin-top: 0.85rem; color: var(--texte); font-style: italic; }

.histoire__cloture { margin-top: 3.5rem; max-width: var(--max-texte); }
.histoire__cloture p {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.38;
}

/* --------------------------------------------------------------------------
   7. SERVICES
   -------------------------------------------------------------------------- */

.services { display: grid; gap: 1.5rem; margin-top: 3.5rem; }

.service { border: 1px solid var(--ligne); padding: clamp(1.85rem, 4vw, 3rem); background: var(--bg-2); }

/* Arko : bloc dominant. C'est le CTA primaire du site. */
.service--dominant {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-2));
}

/* Consulting : rare et ferme, donc volontairement discret. */
.service--tertiaire { background: transparent; border-style: dashed; }

.service__nom { font-weight: 900; font-size: clamp(1.5rem, 3.6vw, 2.2rem); margin-bottom: 0.35rem; }
.service--tertiaire .service__nom { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }

.service__role { font-size: 0.9rem; letter-spacing: 0.04em; color: var(--texte-doux); margin-bottom: 1.4rem; }

.service__chiffre {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.service__accroche { font-size: var(--t-lead); font-weight: 600; margin-bottom: 1.2rem; line-height: 1.42; }
.service__corps { color: var(--texte-doux); font-size: 0.98rem; margin-bottom: 2rem; }

@media (min-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service--dominant { grid-column: 1 / -1; }
  .service--dominant .service__corps { max-width: 640px; }
}

/* --------------------------------------------------------------------------
   9. CTA FINAL
   -------------------------------------------------------------------------- */

.cta-final { text-align: center; border-top: 1px solid var(--ligne); }
.cta-final h2 { font-size: var(--t-h2); margin-bottom: 1.4rem; }
.cta-final .lead { max-width: 620px; margin: 0 auto 2.6rem; }
.cta-final .btn-groupe { justify-content: center; }

.cta-final__secondaires {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--texte-doux);
}
.cta-final__secondaires a { color: var(--texte); border-bottom: 1px solid var(--ligne); padding-bottom: 2px; }
.cta-final__secondaires a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--noir);
  color: #F6F4EF;
  --texte: #F6F4EF;
  --texte-doux: #B4AFA4;
  --ligne: #2C2C2C;
  --accent: var(--or-clair);
  --bg-2: #131313;
  border-top: 1px solid #2C2C2C;
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
}

.footer__haut { display: grid; gap: 2.75rem; padding-bottom: 3rem; border-bottom: 1px solid var(--ligne); }
@media (min-width: 780px) { .footer__haut { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }

.footer__marque { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.05rem; letter-spacing: 0.2em; margin-bottom: 0.9rem; }
.footer__baseline { font-size: 0.9rem; color: var(--texte-doux); max-width: 260px; }

.footer__col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 0.65rem; }
.footer__col a { font-size: 0.94rem; color: var(--texte-doux); }
.footer__col a:hover { color: var(--accent); }

.footer__news { padding-block: 2.75rem; border-bottom: 1px solid var(--ligne); }
.footer__news p { font-size: 0.94rem; color: var(--texte-doux); margin-bottom: 0; }
.footer__news .capture__form { max-width: 520px; }

.footer__bas {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--texte-doux);
}
.footer__bas a:hover { color: var(--texte); }

/* --------------------------------------------------------------------------
   CTA collant mobile
   -------------------------------------------------------------------------- */

.cta-collant {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0.75rem var(--pad-x) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #2C2C2C;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.cta-collant.est-visible { transform: translateY(0); }
.cta-collant .btn { width: 100%; background: var(--or-clair); color: #0B0B0B; border-color: var(--or-clair); }
@media (min-width: 900px) { .cta-collant { display: none; } }

/* --------------------------------------------------------------------------
   Pages internes
   -------------------------------------------------------------------------- */

.page-hero {
  padding-block: clamp(8rem, 15vw, 10.5rem) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--ligne);
  background: var(--bg);
  color: var(--texte);
}
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.7rem); margin-bottom: 1.4rem; }
.page-hero .lead { max-width: 680px; }

.prose { max-width: var(--max-texte); }
.prose h2 { font-size: clamp(1.4rem, 3.2vw, 1.95rem); margin: 3rem 0 1.25rem; }
.prose h3 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.25rem 0 0.9rem;
}
.prose p { color: var(--texte-doux); }
.prose ul { padding-left: 1.15rem; color: var(--texte-doux); }
.prose li { margin-bottom: 0.6rem; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--texte); }

.merci {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 8rem 4rem;
  background: var(--bg);
  color: var(--texte);
}
.merci__coche {
  width: 62px;
  height: 62px;
  margin: 0 auto 2rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.6rem;
}
.merci__suites { display: grid; gap: 1.25rem; margin-top: 3.5rem; text-align: left; }
@media (min-width: 780px) { .merci__suites { grid-template-columns: repeat(2, 1fr); } }

.merci__carte { border: 1px solid var(--ligne); padding: 1.85rem; background: var(--bg-2); transition: border-color 0.3s var(--ease); }
.merci__carte:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.merci__carte h3 { font-family: 'Archivo', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.7rem; }
.merci__carte p { font-size: 0.94rem; color: var(--texte-doux); margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------------
   Apparition au scroll + accessibilite
   -------------------------------------------------------------------------- */

/* Par defaut le contenu est VISIBLE. L'animation n'est activee que si le JS
   a tourne (classe .js posee par main.js). Sans ce garde-fou, un echec de
   chargement du script rendrait la moitie de la page invisible. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.est-vu { opacity: 1; transform: none; }

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

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.saut-contenu {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--or-clair);
  color: #0B0B0B;
  padding: 0.9rem 1.4rem;
  z-index: 200;
  font-weight: 700;
}
.saut-contenu:focus { left: 0; }

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

/* ==========================================================================
   COMPOSANTS v2 : logos de preuve, carrousels, duos texte + image
   ========================================================================== */

/* Titre de section standard, meme echelle partout */
.titre-section { font-size: var(--t-h2); margin-bottom: 1.5rem; }
.intro-section { font-size: var(--t-lead); color: var(--texte-doux); max-width: 62ch; line-height: 1.62; }

/* --------------------------------------------------------------------------
   Barre de logos : silhouettes blanches normalisees a surface egale
   -------------------------------------------------------------------------- */

.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  margin: 3.25rem 0 0;
  align-items: center;
}
@media (min-width: 820px) { .logos { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }

.logos__item { text-align: center; }

.logos__img {
  height: 74px;
  margin: 0 auto 1.35rem;
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease);
}
.logos__item:hover .logos__img { opacity: 1; }
/* Les PNG sont blancs : sur fond clair il faut les inverser */
.clair .logos__img { filter: invert(1); opacity: 0.78; }

.logos__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.logos__detail { font-size: 0.82rem; line-height: 1.5; color: var(--texte-doux); }

/* --------------------------------------------------------------------------
   Carrousel generique (clients, parcours)
   Defilement natif avec accroche : fonctionne meme sans JS.
   -------------------------------------------------------------------------- */

.carrousel { position: relative; margin-top: 3.25rem; }

.carrousel__piste {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  scrollbar-width: none;
}
.carrousel__piste::-webkit-scrollbar { display: none; }

.carrousel__item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 900px) { .carrousel__item { flex-basis: calc(50% - 0.625rem); } }

.carrousel__barre {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carrousel__nav {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.carrousel__bouton {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--ligne);
  background: transparent;
  color: var(--texte);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all 0.25s var(--ease);
}
.carrousel__bouton:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.carrousel__bouton:disabled { opacity: 0.3; cursor: default; }

.carrousel__progression {
  flex: 1;
  max-width: 240px;
  height: 2px;
  background: var(--ligne);
  position: relative;
  overflow: hidden;
}
.carrousel__progression span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  transition: transform 0.3s var(--ease), width 0.3s var(--ease);
}

/* --------------------------------------------------------------------------
   Fiche client : photo a gauche, contenu a droite
   -------------------------------------------------------------------------- */

.fiche {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-2);
  border: 1px solid var(--ligne);
  height: 100%;
  overflow: hidden;
}
@media (min-width: 560px) { .fiche { grid-template-columns: 40% 1fr; } }

.fiche__photo { background: var(--bg-3); aspect-ratio: 4 / 5; }
.fiche__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 560px) { .fiche__photo { aspect-ratio: auto; height: 100%; } }

.fiche__corps { padding: clamp(1.5rem, 3vw, 2.15rem); }

.fiche__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.fiche__ligne { margin-bottom: 0.9rem; font-size: 0.92rem; line-height: 1.55; }
.fiche__ligne:last-child { margin-bottom: 0; }

.fiche__cle {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.fiche__valeur { color: var(--texte-doux); }

/* --------------------------------------------------------------------------
   Duo texte + image (these, histoire)
   -------------------------------------------------------------------------- */

.duo { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 900px) {
  .duo { grid-template-columns: 1.1fr 0.9fr; gap: 4.5rem; }
  .duo--inverse > *:first-child { order: 2; }
}

.duo__image { position: relative; }
.duo__image img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.duo__image::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

/* --------------------------------------------------------------------------
   Parcours : carrousel annee + logo + description
   -------------------------------------------------------------------------- */

.parcours__item { flex-basis: 84%; }
@media (min-width: 760px)  { .parcours__item { flex-basis: calc(50% - 0.625rem); } }
@media (min-width: 1080px) { .parcours__item { flex-basis: calc(33.333% - 0.834rem); } }

.etape {
  background: var(--bg-2);
  border: 1px solid var(--ligne);
  padding: 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.etape__annee {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.etape__marque { height: 34px; margin-bottom: 1rem; display: flex; align-items: center; }
.etape__marque img { height: 100%; width: auto; object-fit: contain; }
.clair .etape__marque img { filter: invert(1); opacity: 0.85; }

.etape__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.etape__texte { font-size: 0.9rem; color: var(--texte-doux); line-height: 1.6; }
.etape__lecon { display: block; margin-top: 0.8rem; color: var(--texte); font-style: italic; }

/* --------------------------------------------------------------------------
   Services : 3 colonnes, Arko dominant
   -------------------------------------------------------------------------- */

.services--trio { display: grid; gap: 1.25rem; margin-top: 3.25rem; align-items: stretch; }
@media (min-width: 1000px) { .services--trio { grid-template-columns: 1.25fr 1fr 1fr; gap: 1.5rem; } }

.offre {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ligne);
  background: var(--bg-2);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.offre--phare {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  background: color-mix(in srgb, var(--accent) 9%, var(--bg-2));
}
.offre--sobre { background: transparent; border-style: dashed; }

.offre__marque { height: 46px; margin-bottom: 1.5rem; display: flex; align-items: center; }
.offre--phare .offre__marque { height: 62px; }
.offre__marque img { height: 100%; width: auto; object-fit: contain; }
.clair .offre__marque img { filter: invert(1); }

.offre__nom {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.offre--phare .offre__nom { font-size: clamp(1.6rem, 3vw, 2.15rem); }

.offre__role { font-size: 0.88rem; color: var(--texte-doux); margin-bottom: 1.15rem; }

.offre__chiffre {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  color: var(--accent);
  margin-bottom: 1.15rem;
}
.offre--phare .offre__chiffre { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }

.offre__texte { font-size: 0.92rem; color: var(--texte-doux); line-height: 1.6; margin-bottom: 2rem; }
.offre__pied { margin-top: auto; }
.offre__pied .btn { width: 100%; }

/* ==========================================================================
   AJUSTEMENTS v3
   ========================================================================== */

/* Titres centres pour les sections d'ouverture */
.centre { text-align: center; }
.centre .titre-section { margin-inline: auto; max-width: 22ch; }
.centre .intro-section { margin-inline: auto; }

/* --- Social proof : plus compacte, sans les noms (les logos suffisent) --- */
.preuve { padding-block: clamp(2.25rem, 4.5vw, 3.25rem); }
.preuve .titre-section { margin-bottom: 2.25rem; }
.logos { margin-top: 0; gap: 1.75rem 1.25rem; }
@media (min-width: 820px) { .logos { gap: 1.75rem 2rem; } }
.logos__img { height: 58px; margin-bottom: 0.9rem; }
.logos__detail { font-size: 0.78rem; }

/* --- Carrousel : une seule fiche a la fois --- */
.carrousel__item { flex-basis: 100%; }
@media (min-width: 900px) { .carrousel__item { flex-basis: 100%; } }

/* --- Fiche client : photo en carte a gauche, texte detache a droite --- */
.fiche {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: none;
  border: none;
  align-items: center;
}
@media (min-width: 860px) { .fiche { grid-template-columns: 0.85fr 1fr; gap: 3.5rem; } }

.fiche__media {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  box-shadow: 0 24px 60px -30px var(--ombre);
}
.fiche__media img { width: 100%; height: 100%; object-fit: cover; }

.fiche__legende {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.75rem 1.75rem 1.6rem;
  background: linear-gradient(to top, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0) 100%);
  color: #F6F4EF;
}
.fiche__legende::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--or-clair);
  margin-bottom: 0.75rem;
}
.fiche__legende-titre { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1rem; }
.fiche__legende-sous { display: block; font-size: 0.82rem; color: rgba(246,244,239,0.72); margin-top: 0.2rem; }

.fiche__texte { min-width: 0; }

.fiche__eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}

.fiche__titre {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.fiche__filet { width: 46px; height: 2px; background: var(--accent); border: none; margin: 0 0 1.75rem; }

.fiche__points { list-style: none; margin: 0; padding: 0; }
.fiche__points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 1.05rem;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--texte-doux);
}
.fiche__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.fiche__points strong { color: var(--texte); font-weight: 600; }

.fiche__cta { margin-top: 2rem; }

/* --- Image libre : le collage garde ses proportions natives --- */
.duo__image--libre img { aspect-ratio: auto; }

/* --- Parcours : logos a la place des noms, tous au meme gabarit --- */
.etape__marque { height: 52px; margin-bottom: 1.25rem; }
.etape__marque img { height: 100%; width: auto; max-width: 190px; object-fit: contain; }
/* Les logos du parcours sont deja sombres : pas d'inversion sur fond clair */
.clair .etape__marque img { filter: none; opacity: 1; }

/* --- Services : Arko sur blanc, Genesys au meme niveau que Consulting --- */
.offre--phare { background: #FFFFFF; border-color: #FFFFFF; box-shadow: 0 24px 60px -34px var(--ombre); }
.offre--phare .offre__marque img { filter: invert(1); }
.offre--secondaire { background: transparent; border-style: dashed; }
.offre__marque { height: 40px; margin-bottom: 1.35rem; }
.offre--phare .offre__marque { height: 58px; }

/* Footer a 3 colonnes depuis le retrait de la rubrique "Moi" */
@media (min-width: 780px) {
  .footer__haut--trois { grid-template-columns: 1.7fr 1fr 1fr; }
}
.footer__haut { border-bottom: none; padding-bottom: 2.5rem; }

/* --- Correctifs v3.1 --- */

/* "Une fiche a la fois" ne concerne QUE le carrousel clients.
   Le parcours garde plusieurs etapes visibles. */
.carrousel__item.parcours__item { flex-basis: 84%; }
@media (min-width: 760px)  { .carrousel__item.parcours__item { flex-basis: calc(50% - 0.625rem); } }
@media (min-width: 1080px) { .carrousel__item.parcours__item { flex-basis: calc(33.333% - 0.834rem); } }

/* Photo client un peu plus grande */
@media (min-width: 860px) { .fiche { grid-template-columns: 1.02fr 1fr; gap: 3.25rem; } }

/* ==========================================================================
   AJUSTEMENTS v4
   ========================================================================== */

/* Titre de section centre : plus large, pour tenir sur 2 lignes */
.centre .titre-section { max-width: 46ch; }

/* Social proof : logos deux fois plus grands, legendes en blanc */
.logos__img { height: auto; width: auto; max-width: 100%; margin-bottom: 1.1rem; }
.logos__detail { color: var(--texte); font-size: 0.86rem; }

/* Fiches clients : photo reduite d'environ 40 % */
@media (min-width: 860px) { .fiche { grid-template-columns: 0.45fr 1fr; gap: 3rem; } }

/* Section these : sous-titre + texte en blanc + image verticale */
.sous-titre {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-stretch: 112%;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-top: 1.1rem;
  max-width: 26ch;
}
.these__corps p,
.these__corps p.fort { color: var(--texte); }

/* Parcours : logos alignes a gauche sur le chiffre de l'annee, plus grands */
.etape__marque {
  height: auto;
  min-height: 68px;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.etape__marque img { height: auto; width: auto; max-width: 190px; }

/* Les 4 logos ont des hauteurs differentes (surface egale, formes differentes).
   Une premiere rangee de hauteur fixe aligne les legendes entre elles. */
.logos__item {
  display: grid;
  grid-template-rows: 84px auto;
  align-items: center;
  justify-items: center;
  gap: 1.1rem;
}
.logos__img { margin: 0; max-height: 84px; }

/* ==========================================================================
   AJUSTEMENTS v5
   ========================================================================== */

/* Titre centre : moins large qu'en v4, il prenait toute la page */
.centre .titre-section { max-width: 40ch; }

/* Barre de logos : zone commune reduite, les fichiers portent leur taille */
.logos__item { grid-template-rows: 58px auto; gap: 0.95rem; }
.logos__img { max-height: 58px; }

/* Fiche client : bloc centre et colonne de texte resserree */
.fiche { max-width: 880px; margin-inline: auto; }
@media (min-width: 860px) { .fiche { grid-template-columns: 0.5fr 1fr; gap: 2.75rem; } }
.fiche__points li { font-size: 0.96rem; }

/* Section these : image verticale plafonnee en hauteur */
.duo__image--libre img { max-height: 480px; width: auto; margin-inline: auto; }
.duo__image--libre::after { display: none; }

/* Parcours : zone logo resserree */
.etape__marque { min-height: 46px; margin-bottom: 1rem; }
.etape__marque img { max-width: 155px; }

/* ==========================================================================
   AJUSTEMENTS v6
   ========================================================================== */

/* Titre de la section preuve : pas plus large que celui de la section suivante */
.centre .titre-section { max-width: 28ch; }

/* Zone logo resserree en consequence de leur reduction */
.logos__item { grid-template-rows: 44px auto; gap: 0.85rem; }
.logos__img { max-height: 44px; }

/* Fiches clients : colonne de texte encore reduite */
.fiche { max-width: 820px; }
@media (min-width: 860px) { .fiche { grid-template-columns: 0.58fr 1fr; gap: 2.5rem; } }
.fiche__texte { max-width: 44ch; }

/* Parcours : zone logo resserree */
.etape__marque { min-height: 36px; margin-bottom: 0.9rem; }
.etape__marque img { max-width: 125px; }

/* Le collage redevient horizontal : on le laisse remplir sa colonne */
.duo__image--libre img { max-height: none; width: 100%; }

/* Section these : colonnes rebalancees pour que le collage horizontal
   ne paraisse pas ecrase face a une colonne de texte haute */
@media (min-width: 900px) {
  #these .duo { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* ==========================================================================
   AJUSTEMENTS v7
   ========================================================================== */

/* Sous-titre centre sous un titre de section */
.sous-titre--centre { margin-inline: auto; max-width: 42ch; text-align: center; margin-top: 1rem; }

/* Carrousels : plus de jauge, fleches centrees */
.carrousel__barre { justify-content: center; margin-top: 2rem; }
.carrousel__nav { margin-left: 0; gap: 0.75rem; }

/* Parcours : hauteur de logo FIXE (et non minimale), sinon un logo haut
   pousse la description plus bas que celle des cartes voisines. */
.etape__marque { height: 44px; min-height: 0; margin-bottom: 1rem; }
.etape__marque img { max-height: 44px; max-width: 125px; }

/* Tableaux dans les pages legales */
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 2rem; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--ligne); vertical-align: top; }
.prose th { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--texte); }
.prose td { color: var(--texte-doux); }
.prose h3 { font-size: 0.95rem; margin: 1.75rem 0 0.6rem; }
