/* AltMode Studio — feuille de style partagée.
   Extraite de l'inline index.html (socle multi-pages, 18/09).
   Design system : Fraunces + IBM Plex · palette canard/céladon. */

/* Polices auto-hébergées (RGPD : aucun appel à Google Fonts).
   Fraunces + IBM Plex — licence SIL Open Font License. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/fraunces-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/fraunces-italic-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/fraunces-italic-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  --ink: #1c2024;
  --paper: #f5f7f9;
  --white: #ffffff;
  --slate: #4a4e51;
  --soft: #6a6d71;
  --canard: #1c7b84;
  --canard-dark: #145f67;
  --celadon: #bfd9cf;
  --wash: #eef4f2;
  --line: rgba(28, 32, 36, .18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1220px, calc(100vw - 72px));
  --read: 45rem;   /* mesure de lecture partagée : titres ET corps s'arrêtent ici, pas au bord de page */

  /* Système typographique par rôle.
     Chaque niveau a une fonction stable sur toute la page. */
  --text-meta: clamp(.75rem, .73rem + .08vw, .8rem);
  --text-small: clamp(.875rem, .84rem + .12vw, .95rem);
  --text-body: clamp(1rem, .96rem + .16vw, 1.1rem);
  --text-lead: clamp(1.2rem, 1.12rem + .3vw, 1.4rem);
  --text-h3: clamp(1.45rem, 1.31rem + .48vw, 1.8rem);
  --text-h2: clamp(2.15rem, 1.72rem + 1.45vw, 3.25rem);
  --text-display: clamp(3.15rem, 2.2rem + 3.2vw, 5.6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
::selection { background: var(--celadon); color: var(--ink); }
.container { width: var(--page); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { top: 12px; }

h1, h2, h3, blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}
h1 {
  max-width: 13ch;
  font-size: var(--text-display);
  line-height: .98;
  letter-spacing: -.062em;
}
h2 {
  max-width: var(--read);
  font-size: var(--text-h2);
  line-height: 1.06;
  letter-spacing: -.045em;
}
h3 { font-size: var(--text-h3); line-height: 1.18; letter-spacing: -.025em; }
p { margin: 0; }
.eyebrow {
  color: var(--canard);
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Navigation */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 249, .94);
  backdrop-filter: blur(18px);
}
.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}
/* Liens de page + langue : rôle mono, uniforme. */
.nav-link,
.nav-lang {
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-link {
  color: var(--slate);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.nav-link:hover { color: var(--canard); border-bottom-color: var(--canard); }
.nav-link[aria-current="page"] { color: var(--canard); border-bottom-color: var(--canard); }
/* État « à venir » : présent mais inactif (Contact, EN avant leur mise en ligne). */
.is-soon { color: var(--soft); opacity: .5; cursor: default; pointer-events: none; }
/* Séparateur + bascule de langue. */
.nav-sep { width: 1px; height: 15px; background: var(--line); }
.nav-lang { display: inline-flex; align-items: center; gap: 8px; color: var(--slate); padding-bottom: 4px; border-bottom: 1px solid transparent; }
.nav-lang a { color: var(--slate); text-decoration: none; }
.nav-lang a:hover { color: var(--canard); }
.nav-lang .is-current { color: var(--ink); font-weight: 600; }

/* Burger (mobile uniquement). */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: -8px -8px -8px 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-burger { position: relative; }
.nav-burger,
.nav-burger::before,
.nav-burger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.nav-burger::before { position: absolute; top: -7px; left: 0; }
.nav-burger::after { position: absolute; top: 7px; left: 0; }
.site-nav.is-open .nav-burger { background: transparent; }
.site-nav.is-open .nav-burger::before { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav-burger::after { transform: translateY(-7px) rotate(-45deg); }

/* Panneau mobile : la nav se replie en burger sous 760px. */
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6px 14px 22px;
    background: rgba(245, 247, 249, .98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open .nav-menu { display: flex; }
  .nav-menu > .nav-link { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav-sep { display: none; }
  .nav-lang { padding: 18px 0 0; }
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-lockup {
  display: grid;
  gap: 1px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: var(--text-lead);
  font-weight: 600;
}
.brand-tagline {
  color: var(--canard);
  font-family: var(--serif);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: lowercase;
}
.brand-glyph {
  display: grid;
  width: 64px;
  height: 45px;
  place-items: center;
}
.brand-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 68px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 18, 21, .86) 0%, rgba(12, 18, 21, .72) 47%, rgba(12, 18, 21, .16) 76%, rgba(12, 18, 21, .06) 100%),
    url("/hero-voice-smartphone-v1.png") 68% center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 15, .12), transparent 40%, rgba(6, 12, 15, .28));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  max-width: 11ch;
  margin-top: 0;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, .18);
}
.hero h1 span { color: var(--celadon); }
.hero-intro {
  max-width: 48ch;
  margin: clamp(50px, 8vh, 90px) 0 0 auto;
  padding-left: 27px;
  border-left: 2px solid var(--celadon);
  color: rgba(255, 255, 255, .82);
  font-size: var(--text-lead);
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .22);
}
.hero-intro strong { color: var(--white); font-weight: 500; }

/* Shared sections */
section { scroll-margin-top: 75px; }
.section {
  padding: clamp(105px, 13vw, 178px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(160px, .3fr) 1fr;
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
}
.section-head .eyebrow { margin-top: 13px; }

#changement { padding-bottom: clamp(32px, 4vw, 52px); }

/* Delegation */
.delegation-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 8vw, 118px);
  margin: 76px 0 0 30%;
}
.delegation-copy p { color: var(--slate); font-size: var(--text-body); line-height: 1.64; }
.delegation-copy strong { color: var(--ink); font-weight: 500; }
.request {
  margin: 68px 0 0;
  padding: clamp(40px, 6vw, 74px);
  border-radius: 12px;
  background: var(--canard);
  color: var(--white);
}
.request .eyebrow { color: var(--white); }
.request blockquote {
  max-width: 25ch;
  margin-top: 0;
  font-size: var(--text-h2);
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.12;
}
.request-followup {
  max-width: 54ch;
  margin: 30px 0 0 auto;
  color: var(--slate);
  font-size: var(--text-body);
  line-height: 1.64;
}

/* Capabilities */
.requirements {
  padding-top: clamp(52px, 6vw, 78px);
  background: var(--white);
}
/* Titre-séquence en 3 lignes-phrases : on plafonne SA taille pour que la ligne
   la plus longue (« L'entreprise rend le résultat possible. ») tienne sur une
   ligne, même sur très grand écran (la colonne plafonne à ~760px). */
.requirements h2 { max-width: var(--read); font-size: clamp(1.85rem, 1.4rem + 1.35vw, 2.15rem); }
.sequence-title span { display: block; }
.sequence-title span + span { margin-top: .24em; }
.requirements-copy {
  display: grid;
  gap: 24px;
  max-width: 62ch;
  margin: 66px 0 0 30%;
  color: var(--slate);
  font-size: var(--text-body);
  line-height: 1.63;
}
.automation-line {
  max-width: 48ch;
  margin: 88px 0 0 auto;
  padding-left: 27px;
  border-left: 2px solid var(--canard);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}
.automation-line span { color: var(--canard); font-weight: 500; }

/* Convictions */
.convictions { background: var(--wash); }
.convictions h2 { max-width: var(--read); }
.conviction-list {
  margin: clamp(62px, 8vw, 104px) 0 0 30%;
  border-top: 1px solid var(--line);
}
.conviction {
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}
.conviction h3 { max-width: 34ch; font-size: var(--text-h3); line-height: 1.18; }
.conviction h3 span { display: block; }
.conviction h3 span + span { margin-top: .12em; }

/* Definition */
.answer { background: var(--ink); color: var(--white); }
.answer-mode {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 72px 0 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: var(--celadon);
  font-family: var(--serif);
  font-size: var(--text-h3);
  font-weight: 600;
}
.answer-mode span {
  display: block;
  width: 56px;
  height: 39px;
  flex: 0 0 auto;
}
.answer-mode span svg { display: block; width: 100%; height: 100%; }
.definition {
  max-width: 28ch;
  margin: 0 0 0 auto;
  font-family: var(--serif);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.036em;
}
.definition strong { color: var(--celadon); font-weight: 600; }
.answer-close {
  max-width: 50ch;
  margin: 26px 0 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: var(--text-body);
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.founder-name {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.08;
}
.founder-role {
  margin-top: 12px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: var(--text-meta);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.founder-copy { display: grid; gap: 24px; color: var(--slate); font-size: var(--text-body); line-height: 1.64; }
.founder-copy p { max-width: 62ch; }
.founder-copy strong { color: var(--ink); font-weight: 500; }
.links { display: flex; flex-wrap: wrap; gap: 18px 32px; margin-top: 22px; }
.links a {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--canard);
  color: var(--canard);
  font-size: var(--text-small);
  font-weight: 500;
  text-decoration: none;
}

/* Footer */
.site-footer { padding: 70px 0 29px; background: var(--canard); color: var(--white); }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 64px;
}
.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-glyph { display: block; flex: 0 0 auto; width: 64px; height: 45px; }
.footer-glyph svg { display: block; width: 100%; height: 100%; }
.footer-lockup { display: grid; gap: 3px; line-height: 1; }
.footer-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: var(--text-lead);
  color: var(--white);
  white-space: nowrap;
}
.footer-tagline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--text-small);
  color: var(--celadon);
  text-transform: lowercase;
  line-height: 1.05;
}
.footer-copy { max-width: 48ch; justify-self: end; color: rgba(255, 255, 255, .75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  font-family: var(--mono);
  font-size: var(--text-meta);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { text-decoration: none; }

:focus-visible { outline: 3px solid var(--celadon); outline-offset: 4px; }

/* Le symbole ne pend dans la marge que sur les écrans vraiment larges (≥1400px),
   là où la gouttière est confortable (≥110px). En dessous, il reste inline —
   donc toujours entièrement visible, jamais rogné. */
@media (min-width: 1400px) {
  .wordmark { position: relative; }
  .wordmark .brand-glyph {
    position: absolute;
    right: calc(100% + 12px);
  }
  .footer-signature { position: relative; }
  .footer-signature .footer-glyph {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Desktop : un rail de repérage et un axe narratif unique. */
@media (min-width: 1100px) {
  :root { --page: min(1180px, calc(100vw - 136px)); }

  .hero {
    min-height: min(900px, 100svh);
    padding-block: 132px 88px;
  }
  .hero-content {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    column-gap: 48px;
  }
  .hero h1 { grid-column: 2; grid-row: 1; }
  .hero-intro {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin: 58px 0 0;
  }

  .section { padding: clamp(96px, 8vw, 132px) 0; }
  #changement .container,
  .requirements .container,
  .convictions .container {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    column-gap: 48px;
  }
  .section-head { display: contents; }
  .section-head .eyebrow { grid-column: 1; }
  .section-head h2 { grid-column: 2; }

  .delegation-copy {
    grid-column: 2;
    gap: 64px;
    margin: 68px 0 0;
  }
  .request { grid-column: 2; }
  .request-followup {
    grid-column: 2;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .requirements-copy {
    grid-column: 2;
    width: 100%;
    margin: 60px 0 0;
  }
  .automation-line {
    grid-column: 2;
    width: 100%;
    margin: 78px 0 0;
  }

  .conviction-list {
    grid-column: 2;
    width: 100%;
    margin: 72px 0 0;
  }

  .answer .container {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    column-gap: 48px;
  }
  .definition { grid-column: 2; width: 100%; margin-left: 0; }
  .answer-mode { grid-column: 2; width: 100%; margin-left: 0; }
  .answer-close { grid-column: 2; width: 100%; margin-left: 0; }

  .founder-grid {
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    column-gap: 48px;
  }
  .founder-grid > div:first-child { grid-column: 1; }
  .founder-copy { grid-column: 2; }

  .footer-main {
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    gap: 48px;
  }
  .footer-signature { grid-column: 1; }
  .footer-copy { grid-column: 2; justify-self: start; }
}

/* Laptop et tablette : le rail disparaît, l'axe narratif reste fixe. */
@media (max-width: 1099px) {
  :root { --page: min(100% - 48px, 760px); }
  .hero-intro,
  .request-followup,
  .automation-line,
  .definition,
  .answer-mode,
  .answer-close { margin-left: 0; margin-right: 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .eyebrow { margin-top: 0; }
  .delegation-copy { grid-template-columns: 1fr; margin-left: 0; }
  .requirements-copy,
  .conviction-list { margin-left: 0; }
  .founder-grid,
  .footer-main { grid-template-columns: 1fr; }
  .footer-copy { justify-self: start; }
}

/* Mobile : une colonne, rythme plus court et zones tactiles conservées. */
@media (max-width: 760px) {
  :root { --page: calc(100% - 28px); }
  .nav-inner { min-height: 70px; }
  .hero {
    min-height: max(760px, 100svh);
    padding-top: 116px;
    background:
      linear-gradient(180deg, rgba(10, 16, 19, .82) 0%, rgba(10, 16, 19, .56) 54%, rgba(10, 16, 19, .82) 100%),
      url("/hero-voice-smartphone-v1.png") 70% center / cover no-repeat;
  }
  .hero::after { background: linear-gradient(90deg, rgba(6, 12, 15, .3), transparent 75%); }
  .hero h1 { max-width: 10.5ch; }
  .hero-intro,
  .automation-line { padding-left: 20px; }
  .section { padding: 92px 0; }
  #changement { padding-bottom: 32px; }
  .requirements { padding-top: 52px; }
  .request { padding: 31px 25px; }
  .footer-bottom { flex-direction: column; }
}

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

/* ============================================================
   PAGE MANIFESTE (/manifeste) — design system typographique
   Échelle stricte : chapô < h3 < h2 < h1. Le corps ne dépasse jamais un titre.
   Alignement : tout commence au bord gauche du conteneur (sous le wordmark).
   Titres pleine largeur ; corps en colonne de lecture. Aucun encadré.
   ============================================================ */
.manifesto {
  padding-top: 76px;
  --m-h1:   clamp(2rem, 1.6rem + 1.45vw, 2.55rem);
  --m-h2:   clamp(1.6rem, 1.35rem + .9vw, 2.1rem);
  --m-h3:   clamp(1.3rem, 1.15rem + .5vw, 1.5rem);
  --m-lead: clamp(1.14rem, 1.05rem + .34vw, 1.3rem);
  --m-pull: clamp(1.4rem, 1.2rem + .7vw, 1.9rem);
  --read: 45rem;   /* mesure partagée : titres ET corps s'arrêtent à cette limite */
}

/* --- En-tête --- */
.manifesto-hero {
  padding: clamp(104px, 15vw, 176px) 0 clamp(44px, 6vw, 68px);
  border-bottom: 1px solid var(--line);
}
.manifesto-hero .eyebrow { margin-bottom: 24px; }
.manifesto-hero h1 {
  max-width: var(--read);
  font-size: var(--m-h1);
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.manifesto-lead {
  max-width: var(--read);
  margin-top: clamp(30px, 4vw, 46px);
  padding-left: 26px;
  border-left: 2px solid var(--celadon);
  color: var(--slate);
  font-size: var(--m-lead);
  line-height: 1.5;
}

/* --- Intro (avant sections numérotées) --- */
.manifesto-intro { padding: clamp(52px, 7vw, 86px) 0 0; }

/* --- Section numérotée --- */
.m-section { padding: clamp(58px, 7vw, 92px) 0; border-top: 1px solid var(--line); }
.m-section:first-of-type { border-top: 0; }
.m-index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--canard);
}
/* Titres de section : bornés à la mesure de lecture (même limite que le corps),
   jamais au bord de la page. Calibrés pour tenir sur une ligne quand ça rentre. */
.m-section h2 {
  max-width: var(--read);
  font-family: var(--serif);
  font-size: var(--m-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  text-wrap: balance;
}

/* --- Corps de lecture (rôle « corps », taille unique, mesure lisible) --- */
.m-block > p {
  max-width: var(--read);
  margin-top: 1.3em;
  color: var(--slate);
  font-size: var(--text-body);
  line-height: 1.72;
}
.m-block h2 + p { margin-top: 1.05em; }
.m-block strong { color: var(--ink); font-weight: 500; }
.m-block em { font-style: italic; }
.term { color: var(--canard); font-weight: 500; }
.ask { color: var(--canard); font-style: italic; font-weight: 500; }

/* --- Exergue (intro) : ligne forte serif, bornée à la mesure de lecture --- */
.pull {
  max-width: var(--read);
  margin: clamp(30px, 4vw, 46px) 0;
  font-family: var(--serif);
  font-size: var(--m-pull);
  font-weight: 500;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -.028em;
  color: var(--ink);
  text-wrap: balance;
}

/* --- Sous-blocs « frontières » (h3 + question) --- */
.frontiers { margin-top: 1.6em; max-width: var(--read); }
.frontier { padding: clamp(24px, 3vw, 34px) 0; border-bottom: 1px solid var(--line); }
.frontier:first-child { border-top: 1px solid var(--line); }
.frontier h3 {
  font-family: var(--serif);
  font-size: var(--m-h3);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.02em;
}
.frontier p { margin-top: .55em; color: var(--slate); font-size: var(--text-body); line-height: 1.62; }

/* --- Triade (API / processus / promesse) : device de rythme --- */
.triad { margin: 1.9em 0; max-width: var(--read); }
.triad > div {
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.triad > div:last-child { border-bottom: 1px solid var(--line); }
.triad dt {
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--canard);
}
.triad dd {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--m-h3);
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}

/* --- Credo « Ce que nous croyons » : PAS d'encadré (filet + typo) --- */
.manifesto-credo {
  padding: clamp(58px, 7vw, 92px) 0 clamp(84px, 10vw, 132px);
  border-top: 1px solid var(--line);
}
.creed { max-width: var(--read); }
.creed .eyebrow { color: var(--canard); margin-bottom: 26px; }
.creed-list { margin: 0; padding: 0; list-style: none; }
.creed-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: clamp(10px, 2vw, 22px);
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.creed-list li:first-child { border-top: 0; padding-top: 0; }
.creed-num {
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--canard);
}
.creed-list p {
  font-family: var(--serif);
  font-size: var(--m-h3);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -.018em;
  color: var(--ink);
}

/* --- Desktop : même grille que la home. Colonne de gauche VIDE,
   tout le contenu dans la colonne du milieu (le texte commence là où
   le wordmark du header se termine). --- */
@media (min-width: 1100px) {
  .manifesto-hero .container,
  .manifesto-intro .container,
  .m-section .container,
  .manifesto-credo .container {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 760px) 1fr;
    column-gap: 48px;
  }
  .manifesto-hero .container > *,
  .manifesto-intro .container > *,
  .m-section .container > *,
  .manifesto-credo .container > * { grid-column: 2; }
}

/* --- Mobile --- */
@media (max-width: 760px) {
  .manifesto-lead { padding-left: 18px; }
  .triad > div { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   PAGE CONTACT (/contact) — réutilise la grille + les tokens du Manifeste.
   ============================================================ */
/* En-tête Contact : moins d'air que le Manifeste (page plus courte). */
.contact .manifesto-hero { padding-top: clamp(48px, 7vw, 92px); }

/* Bloc « direct » : sous le formulaire, séparé par un filet au-dessus. */
.contact-direct {
  max-width: var(--read);
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: clamp(38px, 5vw, 56px);
  border-top: 1px solid var(--line);
}
.contact-direct-label {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--canard);
}
.contact-direct-row { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
/* Liens simples (pas de boutons). */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: var(--text-small);
  font-weight: 500;
  text-decoration: none;
  transition: color .18s ease;
}
.linkedin-link:hover { color: #0a66c2; }
.linkedin-mark { display: inline-flex; width: 22px; height: 22px; }
.linkedin-mark svg { width: 100%; height: 100%; display: block; }
.contact-email-link {
  color: var(--canard);
  font-size: var(--text-small);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--canard);
  transition: color .18s ease, border-color .18s ease;
}
.contact-email-link:hover { color: var(--canard-dark); border-color: var(--canard-dark); }

/* Formulaire. */
.contact-form { max-width: var(--read); display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: var(--text-meta);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.5;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--canard);
  box-shadow: 0 0 0 3px rgba(28, 123, 132, .14);
}

/* Honeypot : masqué sans étendre la page (technique visually-hidden). */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--slate);
  font-size: var(--text-small);
  line-height: 1.5;
}
.consent-field input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--canard); }

.btn-submit {
  justify-self: start;
  padding: 14px 30px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--text-small);
  font-weight: 500;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.btn-submit:hover { background: var(--canard); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .55; cursor: default; transform: none; }

.form-status { min-height: 1.4em; font-size: var(--text-small); color: var(--slate); }
.form-status.is-success { color: var(--canard-dark); font-weight: 500; }
.form-status.is-error { color: #b23a3a; font-weight: 500; }
